forked from mrozycki/rustmas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rustmas.example.toml
32 lines (26 loc) · 914 Bytes
/
Rustmas.example.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# path to an sqlite database, for parameter storage
database_path = "db.sqlite"
[controller]
# path to CSV file with light positions
points_path = "lights.csv"
# path to the [animation plugins directory](../plugins/README.md)
plugin_path = "plugins/"
# you can specify multiple light endpoints
[[controller.lights]]
# URL of the pico-w-neopixel-server endpoint over HTTP
remote = "http://192.168.0.2"
# In case your lights expect a different byte order for color triplets,
# you can overwrite the default RGB ordering.
byte_order = "GRB"
[[controller.lights]]
# URL of the pico-w-neopixel-server endpoint over TCP
remote = "tcp://192.168.0.3"
[[controller.lights]]
# URL of the pico-w-neopixel-server endpoint over UDP
remote = "udp://192.168.0.4"
[[controller.lights]]
# to autodetect lights connected via USB
tty = "detect"
[[controller.lights]]
# to specify lights connected via USB
tty = "/dev/usb.tty0"