pub struct ZigbeeBthDra {
Show 18 fields pub battery: f64, pub boost: bool, pub child_lock: bool, pub display_brightness: f64, pub display_ontime: f64, pub display_orientation: ZigbeeBthDraDisplayorientation, pub displayed_temperature: ZigbeeBthDraDisplayedtemperature, pub linkquality: f64, pub local_temperature: f64, pub local_temperature_calibration: f64, pub occupied_heating_setpoint: f64, pub pi_heating_demand: f64, pub remote_temperature: f64, pub running_state: ZigbeeBthDraRunningstate, pub system_mode: ZigbeeBthDraSystemmode, pub window_open: bool, pub last_seen: Option<LastSeen>, pub elapsed: Option<u64>,
}
Expand description

bosch:BTH-RA zigbee2mqtt link

Fields§

§battery: f64

Remaining battery in %, can take up to 24 hours before reported.

§boost: bool

Zigbee herdsman description: “Activate Boost heating” The string values get converted into boolean with: ON = true and OFF = false

§child_lock: bool

Zigbee herdsman description: “Enables/disables physical input on the device” The string values get converted into boolean with: LOCK = true and UNLOCK = false

§display_brightness: f64

Specifies the brightness value of the display

§display_ontime: f64

Specifies the diplay On-time

§display_orientation: ZigbeeBthDraDisplayorientation

Display orientation

§displayed_temperature: ZigbeeBthDraDisplayedtemperature

Temperature displayed on the thermostat

§linkquality: f64

Link quality (signal strength)

§local_temperature: f64

Current temperature measured on the device

§local_temperature_calibration: f64

Offset to be used in the local_temperature

§occupied_heating_setpoint: f64

Temperature setpoint

§pi_heating_demand: f64

Position of the valve (= demanded heat) where 0% is fully closed and 100% is fully open

§remote_temperature: f64

Input for remote temperature sensor. Setting this will disable the internal temperature sensor until batteries are removed!

§running_state: ZigbeeBthDraRunningstate

The current running state

§system_mode: ZigbeeBthDraSystemmode

Mode of this device

§window_open: bool

Zigbee herdsman description: “Window open” The string values get converted into boolean with: ON = true and OFF = false

§last_seen: Option<LastSeen>

Optional last_seen type, set as a global zigbee2mqtt setting

§elapsed: Option<u64>

Optional elapsed type

Trait Implementations§

source§

impl<'de> Deserialize<'de> for ZigbeeBthDra

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,