zigbee2mqtt_types_vendor_perenio 0.1.0

Struct definitions for zigbee2mqtt json messages.
Documentation
use serde::Deserialize;
use serde::de::Unexpected;
use serde::de;
use serde::Deserializer;
use zigbee2mqtt_types_base_types::LastSeen;
/// perenio:PECLS01 [zigbee2mqtt link](https://www.zigbee2mqtt.io/devices/PECLS01.html)
///
/// 
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize)]
pub struct ZigbeePecls01 {
    ///Remaining battery in %, can take up to 24 hours before reported.
    pub battery: f64,
    ///Zigbee herdsman description: "Indicates if the battery of this device is almost empty"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub battery_low: bool,
    ///Link quality (signal strength)
    pub linkquality: f64,
    ///Zigbee herdsman description: "Indicates whether the device is tampered"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub tamper: bool,
    ///Zigbee herdsman description: "Indicates whether the device detected a water leak"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub water_leak: bool,
    /// Optional last_seen type, set as a global zigbee2mqtt setting
    pub last_seen: Option<LastSeen>,
    /// Optional elapsed type
    pub elapsed: Option<u64>,
}/// perenio:PECMS01 [zigbee2mqtt link](https://www.zigbee2mqtt.io/devices/PECMS01.html)
///
/// 
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize)]
pub struct ZigbeePecms01 {
    ///Remaining battery in %, can take up to 24 hours before reported.
    pub battery: f64,
    ///Zigbee herdsman description: "Indicates if the battery of this device is almost empty"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub battery_low: bool,
    ///Link quality (signal strength)
    pub linkquality: f64,
    ///Zigbee herdsman description: "Indicates whether the device detected occupancy"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub occupancy: bool,
    ///Zigbee herdsman description: "Indicates whether the device is tampered"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub tamper: bool,
    /// Optional last_seen type, set as a global zigbee2mqtt setting
    pub last_seen: Option<LastSeen>,
    /// Optional elapsed type
    pub elapsed: Option<u64>,
}/// perenio:PECWS01 [zigbee2mqtt link](https://www.zigbee2mqtt.io/devices/PECWS01.html)
///
/// 
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize)]
pub struct ZigbeePecws01 {
    ///Remaining battery in %, can take up to 24 hours before reported.
    pub battery: f64,
    ///Zigbee herdsman description: "Indicates if the contact is closed (= true) or open (= false)"
    ///Boolean values can be an unintuitive way round: value_on = false and value_off = true, consider double checking Zigbee2MQTT to understand what they mean
    pub contact: bool,
    ///Link quality (signal strength)
    pub linkquality: f64,
    ///Voltage of the battery in millivolts
    pub voltage: f64,
    /// Optional last_seen type, set as a global zigbee2mqtt setting
    pub last_seen: Option<LastSeen>,
    /// Optional elapsed type
    pub elapsed: Option<u64>,
}/// perenio:PEHPL0X [zigbee2mqtt link](https://www.zigbee2mqtt.io/devices/PEHPL0X.html)
///
/// 
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize)]
pub struct ZigbeePehpl0x {
    ///Active power
    pub active_power: f64,
    ///Zigbee herdsman description: "Indicates if the alarm is triggered when the consumption energy limit is reached, allows to reset alarms"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub alarm_consumed_energy: bool,
    ///Zigbee herdsman description: "Indicates if the alarm is triggered on the active power rise above the limit, allows to reset alarms"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub alarm_power_max: bool,
    ///Zigbee herdsman description: "Indicates if the alarm is triggered on the voltage rise above the limit, allows to reset alarms"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub alarm_voltage_max: bool,
    ///Zigbee herdsman description: "Indicates if the alarm is triggered on the voltage drop below the limit, allows to reset alarms"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub alarm_voltage_min: bool,
    ///Consumed energy
    pub consumed_energy: f64,
    ///Limit of electric energy consumption in kW*h. 0 value represents no limit
    pub consumed_energy_limit: f64,
    pub default_on_off_state: ZigbeePehpl0xDefaultonoffstate,
    ///Link quality (signal strength)
    pub linkquality: f64,
    ///Maximum allowable power limit for alarms.
    pub power_max: f64,
    ///RMS voltage
    pub rms_voltage: f64,
    ///RSSI seen by the device
    pub rssi: f64,
    ///Zigbee herdsman description: "On/off state of the switch"
    ///The string values get converted into boolean with: ON = true and OFF = false
    #[serde(deserialize_with = "zigbeepehpl0x_state_deserializer")]
    pub state: bool,
    ///Maximum allowable voltage limit for alarms.
    pub voltage_max: f64,
    ///Minimum allowable voltage limit for alarms.
    pub voltage_min: f64,
    /// Optional last_seen type, set as a global zigbee2mqtt setting
    pub last_seen: Option<LastSeen>,
    /// Optional elapsed type
    pub elapsed: Option<u64>,
}
/// Deserialize bool from String with custom value mapping
fn zigbeepehpl0x_state_deserializer<'de, D>(deserializer: D) -> Result<bool, D::Error>
where
    D: Deserializer<'de>,
{
    match String::deserialize(deserializer)?.as_ref() {
        "ON" => Ok(true),
        "OFF" => Ok(false),
        other => Err(de::Error::invalid_value(
            Unexpected::Str(other),
            &"Value expected was either ON or OFF",
        )),
    }
}

/// perenio:PEHWE20 [zigbee2mqtt link](https://www.zigbee2mqtt.io/devices/PEHWE20.html)
///
/// 
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize)]
pub struct ZigbeePehwe20 {
    ///LQI seen by the device
    pub last_message_lqi: f64,
    ///RSSI seen by the device
    pub last_message_rssi: f64,
    ///Link quality (signal strength)
    pub linkquality: f64,
    ///Controls the behavior when the device is powered on after power loss
    pub power_on_behavior_l1: ZigbeePehwe20Poweronbehaviorl1,
    ///Controls the behavior when the device is powered on after power loss
    pub power_on_behavior_l2: ZigbeePehwe20Poweronbehaviorl2,
    ///Zigbee herdsman description: "On/off state of the switch"
    ///The string values get converted into boolean with: ON = true and OFF = false
    #[serde(deserialize_with = "zigbeepehwe20_state_l1_deserializer")]
    pub state_l1: bool,
    ///Zigbee herdsman description: "On/off state of the switch"
    ///The string values get converted into boolean with: ON = true and OFF = false
    #[serde(deserialize_with = "zigbeepehwe20_state_l2_deserializer")]
    pub state_l2: bool,
    pub switch_type_l1: ZigbeePehwe20Switchtypel1,
    pub switch_type_l2: ZigbeePehwe20Switchtypel2,
    /// Optional last_seen type, set as a global zigbee2mqtt setting
    pub last_seen: Option<LastSeen>,
    /// Optional elapsed type
    pub elapsed: Option<u64>,
}
/// Deserialize bool from String with custom value mapping
fn zigbeepehwe20_state_l1_deserializer<'de, D>(deserializer: D) -> Result<bool, D::Error>
where
    D: Deserializer<'de>,
{
    match String::deserialize(deserializer)?.as_ref() {
        "ON" => Ok(true),
        "OFF" => Ok(false),
        other => Err(de::Error::invalid_value(
            Unexpected::Str(other),
            &"Value expected was either ON or OFF",
        )),
    }
}


/// Deserialize bool from String with custom value mapping
fn zigbeepehwe20_state_l2_deserializer<'de, D>(deserializer: D) -> Result<bool, D::Error>
where
    D: Deserializer<'de>,
{
    match String::deserialize(deserializer)?.as_ref() {
        "ON" => Ok(true),
        "OFF" => Ok(false),
        other => Err(de::Error::invalid_value(
            Unexpected::Str(other),
            &"Value expected was either ON or OFF",
        )),
    }
}


#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize, PartialEq)]
pub enum ZigbeePehpl0xDefaultonoffstate {
    #[serde(rename = "off")]
    Off,
    #[serde(rename = "on")]
    On,
    #[serde(rename = "previous")]
    Previous,
}
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize, PartialEq)]
pub enum ZigbeePehwe20Poweronbehaviorl1 {
    #[serde(rename = "off")]
    Off,
    #[serde(rename = "on")]
    On,
    #[serde(rename = "previous")]
    Previous,
}
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize, PartialEq)]
pub enum ZigbeePehwe20Poweronbehaviorl2 {
    #[serde(rename = "off")]
    Off,
    #[serde(rename = "on")]
    On,
    #[serde(rename = "previous")]
    Previous,
}
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize, PartialEq)]
pub enum ZigbeePehwe20Switchtypel1 {
    #[serde(rename = "maintained_state")]
    MaintainedState,
    #[serde(rename = "maintained_toggle")]
    MaintainedToggle,
    #[serde(rename = "momentary_press")]
    MomentaryPress,
    #[serde(rename = "momentary_release")]
    MomentaryRelease,
    #[serde(rename = "momentary_state")]
    MomentaryState,
}
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize, PartialEq)]
pub enum ZigbeePehwe20Switchtypel2 {
    #[serde(rename = "maintained_state")]
    MaintainedState,
    #[serde(rename = "maintained_toggle")]
    MaintainedToggle,
    #[serde(rename = "momentary_press")]
    MomentaryPress,
    #[serde(rename = "momentary_release")]
    MomentaryRelease,
    #[serde(rename = "momentary_state")]
    MomentaryState,
}
#[cfg(all(feature = "last_seen_epoch", feature = "last_seen_iso_8601"))]
compile_error!{"Feature last_seen epoch and iso_8601 are mutually exclusive and cannot be enabled together.
This was done because it is a global setting in zigbee2mqtt and therefor can't see a reason both would be enabled.
If you have a any reason to have both ways enabled please submit an issue to https://gitlab.com/seam345/zigbee2mqtt-types/-/issues"}