diff --git a/config/rooms/guest_bedroom.lua b/config/rooms/guest_bedroom.lua index e2ae089..55f313c 100644 --- a/config/rooms/guest_bedroom.lua +++ b/config/rooms/guest_bedroom.lua @@ -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