Reworked air filter integration
All checks were successful
Build and deploy / Build application (push) Successful in 5m8s
Build and deploy / Build container (push) Successful in 2m19s
Build and deploy / Deploy container (push) Successful in 35s

This commit is contained in:
2025-01-22 03:12:13 +01:00
parent 5af713cf8f
commit 3905df690b
13 changed files with 250 additions and 160 deletions

View File

@@ -191,6 +191,7 @@ impl<T: LightState> OnPresence for Light<T> {
}
}
#[async_trait]
impl<T: LightState> google_home::Device for Light<T> {
fn get_device_type(&self) -> Type {
Type::Light
@@ -204,7 +205,7 @@ impl<T: LightState> google_home::Device for Light<T> {
Device::get_id(self)
}
fn is_online(&self) -> bool {
async fn is_online(&self) -> bool {
true
}