pub struct Zigbee4523430 {
Show 19 fields pub child_lock: bool, pub display_text: f64, pub floor_temp: f64, pub frost_guard: bool, pub linkquality: f64, pub load: f64, pub local_temperature: f64, pub local_temperature_calibration: f64, pub max_floor_temp: f64, pub mean_power: f64, pub night_switching: bool, pub occupied_heating_setpoint: f64, pub regulator_mode: bool, pub regulator_time: f64, pub running_state: Zigbee4523430Runningstate, pub sensor: Zigbee4523430Sensor, pub system_mode: Zigbee4523430Systemmode, pub last_seen: Option<LastSeen>, pub elapsed: Option<u64>,
}
Expand description

elko:4523430 zigbee2mqtt link

Fields§

§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_text: f64

Displayed text on thermostat display (zone). Max 14 characters

§floor_temp: f64

Current temperature measured from the floor sensor

§frost_guard: bool

Zigbee herdsman description: “When frost guard is ON, it is activated when the thermostat is switched OFF with the ON/OFF button.At the same time, the display will fade and the text “Frostsikring x °C” appears in the display and remains until the thermostat is switched on again.“ The string values get converted into boolean with: on = true and off = false

§linkquality: f64

Link quality (signal strength)

§load: f64

Load in W when heating is on (between 0-2000 W). The thermostat uses the value as input to the mean_power calculation.

§local_temperature: f64

Current temperature measured on the device

§local_temperature_calibration: f64

Offset to be used in the local_temperature

§max_floor_temp: f64

Set max floor temperature (between 20-35 °C) when “supervisor_floor” is set

§mean_power: f64

Reports average power usage last 10 minutes

§night_switching: bool

Zigbee herdsman description: “Turn on or off night setting.” The string values get converted into boolean with: on = true and off = false

§occupied_heating_setpoint: f64

Temperature setpoint

§regulator_mode: bool

Zigbee herdsman description: “Device in regulator or thermostat mode.” The string values get converted into boolean with: regulator = true and thermostat = false

§regulator_time: f64

When device is in regulator mode this controls the time between each in/out connection. When device is in thermostat mode this controls the time between each in/out switch when measured temperature is within +-0.5 °C set temperature. Choose a long time for (slow) concrete floors and a short time for (quick) wooden floors.

§running_state: Zigbee4523430Runningstate

The current running state

§sensor: Zigbee4523430Sensor

Select temperature sensor to use

§system_mode: Zigbee4523430Systemmode

Mode of this device

§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 Zigbee4523430

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>,