feat: Added 3d printer to guest room
All checks were successful
Build and deploy / build (push) Successful in 17m17s
Build and deploy / Deploy container (push) Successful in 3m19s

This commit is contained in:
2025-11-16 16:37:12 +01:00
parent f3de8e36ea
commit b547f66d86

View File

@@ -25,10 +25,18 @@ function module.setup(mqtt_client)
})
windows.add(window)
local printer = devices.OutletOnOff.new({
name = "3D Printer",
room = "Guest Room",
topic = helper.mqtt_z2m("guest/printer"),
client = mqtt_client,
})
--- @type Module
return {
light,
window,
printer,
}
end