fritzapi 0.4.1

Library for interfacing with the "AVM Home Automation" API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize, PartialEq)]
pub struct FritzDect2XX {
    pub identifier: String,
    pub name: String,
    pub productname: String,
    pub on: bool,
    pub millivolts: u32,
    pub milliwatts: u32,
    pub energy_in_watt_h: u32,
    pub celsius: f32,
}