From a91f2dc77133ed59c49423158388c611162b9e15 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Tue, 9 Aug 2022 06:21:04 -0400 Subject: [PATCH] updating ip address and brighten command --- elgato.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/elgato.py b/elgato.py index 4075498..9cdf974 100644 --- a/elgato.py +++ b/elgato.py @@ -4,10 +4,10 @@ import leglight # print(allLights) # for light in allLights: # light.off() -left = leglight.LegLight('192.168.68.107',9123) -right = leglight.LegLight('192.168.68.108',9123) +left = leglight.LegLight('192.168.68.100',9123) +right = leglight.LegLight('192.168.68.101',9123) -if sys.argv[1] == 'bright': +if sys.argv[1] == 'brighten': print('bright') left.brightness(100) right.brightness(100)