ESTTelemetryInfoPressure

Deprecated

Deprecated since 4.31.0.


@interface ESTTelemetryInfoPressure : ESTTelemetryInfo

This class contains data read from telemetry packet from beacon device.

  • Atmospheric pressure in pascals.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSNumber *_Nonnull pressureInPascals;

    Swift

    var pressureInPascals: NSNumber { get }
  • Designated initializer of this class.

    Declaration

    Objective-C

    - (nonnull instancetype)
        initWithPressureInPascals:(nonnull NSNumber *)pressureInPascals
                  shortIdentifier:(nonnull NSString *)shortIdentifier;

    Swift

    init(pressureInPascals: NSNumber, shortIdentifier: String)

    Parameters

    pressureInPascals

    Atmospheric pressure, read from telemetry packet.

    shortIdentifier

    Short identifier of device that sent telemetry packet.

    Return Value

    Instance of this class.