Merge pull request #132 from helgibbons/main

Fixes colours in the MP cheerlights example
pull/139/head
Philip Howard 2021-04-30 09:43:33 +01:00 zatwierdzone przez GitHub
commit a4033a344d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -99,8 +99,8 @@ def handler(head, body):
if head["Status"] == "200 OK":
color = body[1:]
r = int(color[0:2], 16)
g = int(color[3:4], 16)
b = int(color[5:6], 16)
g = int(color[2:4], 16)
b = int(color[4:6], 16)
picowireless.set_led(r, g, b)
print("Set LED to {} {} {}".format(r, g, b))
else: