@added in SmartDeviceLink 7.1.0
- (nonnull instancetype)
initWithExternalTemperature:(nullable SDLTemperature *)externalTemperature
cabinTemperature:(nullable SDLTemperature *)cabinTemperature
atmosphericPressure:
(nullable NSNumber<SDLFloat> *)atmosphericPressure;
init(externalTemperature: SDLTemperature?, cabinTemperature: SDLTemperature?, atmosphericPressure: (NSNumber & SDLFloat)?)
- externalTemperature
- cabinTemperature
- atmosphericPressure
A SDLClimateData object
The external temperature in degrees celsius
@property (nonatomic, strong, nullable) SDLTemperature *externalTemperature;
var externalTemperature: SDLTemperature? { get set }
Internal ambient cabin temperature in degrees celsius
@property (nonatomic, strong, nullable) SDLTemperature *cabinTemperature;
var cabinTemperature: SDLTemperature? { get set }
Current atmospheric pressure in mBar {“num_min_value”: 0.0, “num_max_value”: 2000.0}
@property (nonatomic, strong, nullable) NSNumber<SDLFloat> *atmosphericPressure;
var atmosphericPressure: (NSNumber & SDLFloat)? { get set }