1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
use crate::error::Error;
use crate::requests::{Color, ColorLightSetDeviceInfoParams};
use crate::responses::{DeviceInfoColorLightResult, DeviceUsageEnergyMonitoringResult};
tapo_handler! {
/// Handler for the [L530](https://www.tapo.com/en/search/?q=L530),
/// [L535](https://www.tapo.com/en/search/?q=L535) and
/// [L630](https://www.tapo.com/en/search/?q=L630) devices.
ColorLightHandler(DeviceInfoColorLightResult),
on_off,
device_usage = DeviceUsageEnergyMonitoringResult,
device_management,
}
impl ColorLightHandler {
/// Returns a [`ColorLightSetDeviceInfoParams`] builder that allows multiple properties to be set in a single request.
/// [`ColorLightSetDeviceInfoParams::send`] must be called at the end to apply the changes.
///
/// # Example
///
/// ```rust,no_run
/// # use tapo::ApiClient;
/// # use tapo::requests::Color;
/// # #[tokio::main]
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let device = ApiClient::new("tapo-username@example.com", "tapo-password")
/// # .l530("192.168.1.100")
/// # .await?;
/// device
/// .set()
/// .brightness(50)
/// .color(Color::HotPink)
/// .send(&device)
/// .await?;
/// # Ok(())
/// # }
/// ```
pub fn set(&self) -> ColorLightSetDeviceInfoParams {
ColorLightSetDeviceInfoParams::new()
}
/// Sets the *brightness* and turns *on* the device.
///
/// # Arguments
///
/// * `brightness` - between 1 and 100
pub async fn set_brightness(&self, brightness: u8) -> Result<(), Error> {
ColorLightSetDeviceInfoParams::new()
.brightness(brightness)
.send(self)
.await
}
/// Sets the *color* and turns *on* the device.
///
/// # Arguments
///
/// * `color` - one of [crate::requests::Color] as defined in the Google Home app
pub async fn set_color(&self, color: Color) -> Result<(), Error> {
ColorLightSetDeviceInfoParams::new()
.color(color)
.send(self)
.await
}
/// Sets the *hue*, *saturation* and turns *on* the device.
///
/// # Arguments
///
/// * `hue` - between 0 and 360
/// * `saturation` - between 1 and 100
pub async fn set_hue_saturation(&self, hue: u16, saturation: u8) -> Result<(), Error> {
ColorLightSetDeviceInfoParams::new()
.hue_saturation(hue, saturation)
.send(self)
.await
}
/// Sets the *color temperature* and turns *on* the device.
///
/// # Arguments
///
/// * `color_temperature` - between 2500 and 6500
pub async fn set_color_temperature(&self, color_temperature: u16) -> Result<(), Error> {
ColorLightSetDeviceInfoParams::new()
.color_temperature(color_temperature)
.send(self)
.await
}
}