HueLight is now HueGroup and uses a scene to turn the light on, the contact sensor will also not override the current light state if it is already on
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-08-18 04:08:15 +02:00
parent 044c38ba86
commit 9628b8a94b
7 changed files with 77 additions and 38 deletions

View File

@@ -13,7 +13,7 @@ use tracing::debug;
use crate::{
auth::OpenIDConfig,
device_manager::DeviceConfigs,
devices::{DebugBridgeConfig, PresenceConfig},
devices::PresenceConfig,
error::{ConfigParseError, MissingEnv},
};
@@ -26,7 +26,6 @@ pub struct Config {
pub fullfillment: FullfillmentConfig,
pub ntfy: Option<NtfyConfig>,
pub presence: PresenceConfig,
pub debug_bridge: Option<DebugBridgeConfig>,
#[serde(rename = "device")]
pub devices: IndexMap<String, DeviceConfigs>,
}