From 8338fba8a2edaa78bd648e1a21a724f8693c912c Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Fri, 22 Jul 2022 12:33:42 -0400 Subject: [PATCH] change brightness --- elgato.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/elgato.py b/elgato.py index 567a5af..331e27a 100644 --- a/elgato.py +++ b/elgato.py @@ -9,7 +9,11 @@ right = leglight.LegLight('192.168.68.113',9123) if sys.argv[1] == 'bright': print('bright') + left.brightness(100) + right.brightness(100) else: print('dim') + left.brightness(5) + right.brightness(5) #print(myLight) #myLight.on()