38 lines
516 B
TOML
38 lines
516 B
TOML
[mqtt]
|
|
#address = "hostname"
|
|
#port = 1883
|
|
#username = "user"
|
|
#password = "password"
|
|
|
|
[collectors]
|
|
markdown_web_links = [
|
|
"https://example.org/lmao.md"
|
|
]
|
|
|
|
#weatherapi_key = ""
|
|
#weatherapi_locations = [
|
|
# "London",
|
|
#]
|
|
|
|
|
|
[[bulbs]]
|
|
id = "light/bedroom"
|
|
|
|
[[bulbs]]
|
|
id = "light/living_room"
|
|
|
|
[[groups]]
|
|
name = "Living Room"
|
|
bulbs = ["light/living_room"]
|
|
x = 0
|
|
y = 0
|
|
shape = { Rectangle = { w = 10, h = 10 } }
|
|
|
|
[[groups]]
|
|
name = "Bedroom"
|
|
bulbs = ["light/bedroom"]
|
|
x = 11
|
|
y = 0
|
|
shape = { Rectangle = { w = 10, h = 10 } }
|
|
|