Switched speaker and mixer from KasaOutlet to IkeaOutlet
All checks were successful
Build and deploy / Build application (push) Successful in 4m47s
Build and deploy / Build container (push) Successful in 1m21s
Build and deploy / Deploy container (push) Successful in 33s

This commit is contained in:
Dreaded_X 2025-01-11 17:55:20 +01:00
parent ae61cf5dd2
commit 5af713cf8f
Signed by: Dreaded_X
GPG Key ID: 5A0CBFE3C3377FAA

View File

@ -78,9 +78,19 @@ automation.device_manager:add(WakeOnLAN.new({
})) }))
-- TODO: Update this to 10.0.0.101 when DHCP want to finally work -- TODO: Update this to 10.0.0.101 when DHCP want to finally work
local living_mixer = KasaOutlet.new({ identifier = "living_mixer", ip = "10.0.0.101" }) local living_mixer = IkeaOutlet.new({
name = "Mixer",
room = "Living Room",
topic = mqtt_z2m("living/mixer"),
client = mqtt_client,
})
automation.device_manager:add(living_mixer) automation.device_manager:add(living_mixer)
local living_speakers = KasaOutlet.new({ identifier = "living_speakers", ip = "10.0.0.100" }) local living_speakers = IkeaOutlet.new({
name = "Speakers",
room = "Living Room",
topic = mqtt_z2m("living/speakers"),
client = mqtt_client,
})
automation.device_manager:add(living_speakers) automation.device_manager:add(living_speakers)
automation.device_manager:add(IkeaRemote.new({ automation.device_manager:add(IkeaRemote.new({