ESTTelemetryInfoAmbientLight

Deprecated

Deprecated since 4.31.0.


@interface ESTTelemetryInfoAmbientLight : ESTTelemetryInfo

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

  • Level of ambient light in lux.

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

    - (nonnull instancetype)
        initWithAmbientLightLevelInLux:(nonnull NSNumber *)ambientLightLevelInLux
                       shortIdentifier:(nonnull NSString *)shortIdentifier;

    Swift

    init(ambientLightLevelInLux: NSNumber, shortIdentifier: String)

    Parameters

    ambientLightLevelInLux

    Ambient light level, read from telemetry packet.

    shortIdentifier

    Short identifier of device that sent telemetry packet.

    Return Value

    Instance of this class.