Update control scripts for Elgato keylights

- in my main office, I have two Elgato keylights placed on my desk
  and the Python scripts in this commit allow me to control the lights
  with Gnome keyboard shortcuts
- add an installation scripts that sets up a Python venv to run
  the above scripts
This commit is contained in:
Alexander Hess 2023-05-04 02:17:32 +02:00
commit f3f2417442
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
5 changed files with 32 additions and 16 deletions

View file

@ -2,8 +2,8 @@
import leglight
LEFT_KEYLIGHT_IP = "192.168.20.72"
RIGHT_KEYLIGHT_IP = "192.168.20.73"
LEFT_KEYLIGHT_IP = "192.168.190.62"
RIGHT_KEYLIGHT_IP = "192.168.190.63"
left = leglight.LegLight(LEFT_KEYLIGHT_IP, port=9123)
right = leglight.LegLight(RIGHT_KEYLIGHT_IP, port=9123)