Add device type speaker
This commit is contained in:
parent
d683aace8b
commit
3e03ceaacb
1 changed files with 6 additions and 1 deletions
|
@ -73,8 +73,13 @@ const DEV_TYPE_ON_OFF_LIGHT: DeviceType = DeviceType {
|
||||||
drev: 2,
|
drev: 2,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pub const DEV_TYPE_ON_SMART_SPEAKER: DeviceType = DeviceType {
|
||||||
|
dtype: 0x0022,
|
||||||
|
drev: 2,
|
||||||
|
};
|
||||||
|
|
||||||
pub fn device_type_add_on_off_light(node: &mut WriteNode) -> Result<u32, Error> {
|
pub fn device_type_add_on_off_light(node: &mut WriteNode) -> Result<u32, Error> {
|
||||||
let endpoint = node.add_endpoint(DEV_TYPE_ON_OFF_LIGHT)?;
|
let endpoint = node.add_endpoint(DEV_TYPE_ON_OFF_LIGHT)?;
|
||||||
node.add_cluster(endpoint, OnOffCluster::new()?)?;
|
node.add_cluster(endpoint, OnOffCluster::new()?)?;
|
||||||
Ok(endpoint)
|
Ok(endpoint)
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue