vu1-py/example.py

15 lines
363 B
Python
Raw Normal View History

2024-03-01 16:33:15 +01:00
import vu1
API = vu1.DialServer("http://localhost:5340", "my_secret_api_key")
dials = API.dials
# set image and value of specific dial by uid
dial = dials[dials.index("my_dial_uid")]
dial.image = "image_pack/gpu-load.png"
dial.value = 50
# set backlight to white on all available dials
for dial in dials:
dial.color = vu1.Color(100, 100, 100) #full white