-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRustmas.example.yaml
More file actions
31 lines (24 loc) · 1.02 KB
/
Rustmas.example.yaml
File metadata and controls
31 lines (24 loc) · 1.02 KB
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
# 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](../animations/README.md)
plugin_path: target/animations/
# you can specify multiple light endpoints
# if you don't want to use actual lights and just want to use the visualizer, define empty lights
# lights: []
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. Supported values are RGB (default), GRB and BGR.
byte_order: GRB
# URL of the pico-w-neopixel-server endpoint over TCP
- remote: tcp://192.168.0.3
# URL of the pico-w-neopixel-server endpoint over UDP
- remote: udp://192.168.0.4
# to autodetect lights connected via USB
- tty: detect
# to specify lights connected via USB
- tty: /dev/usb.tty0