Merge pull request #132 from helgibbons/main
Fixes colours in the MP cheerlights example
This commit is contained in:
commit
a4033a344d
|
@ -99,8 +99,8 @@ def handler(head, body):
|
||||||
if head["Status"] == "200 OK":
|
if head["Status"] == "200 OK":
|
||||||
color = body[1:]
|
color = body[1:]
|
||||||
r = int(color[0:2], 16)
|
r = int(color[0:2], 16)
|
||||||
g = int(color[3:4], 16)
|
g = int(color[2:4], 16)
|
||||||
b = int(color[5:6], 16)
|
b = int(color[4:6], 16)
|
||||||
picowireless.set_led(r, g, b)
|
picowireless.set_led(r, g, b)
|
||||||
print("Set LED to {} {} {}".format(r, g, b))
|
print("Set LED to {} {} {}".format(r, g, b))
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue