File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 55 < meta charset ="UTF-8 " />
66 < link rel ="icon " type ="image/svg+xml " href ="./img/toggle.svg " />
77 < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
8- < title > LED Color Control </ title >
8+ < title > Color your LEDs </ title >
99 < link rel ="stylesheet " href ="style.css " />
1010</ head >
1111
1212< body >
1313 < div >
1414 < header class ="header ">
15- < h1 class ="arduino-text "> LED Color Control </ h1 >
15+ < h1 class ="arduino-text "> Color your LEDs </ h1 >
1616 < img class ="arduino-logo " src ="./img/logo.svg " alt ="Arduino Logo ">
1717 </ header >
1818 < div class ="main-content ">
1919 < div class ="container ">
2020 < div class ="color-picker-section ">
21- < h2 > LED Color Control </ h2 >
21+ < h2 > </ h2 >
2222 < div class ="color-picker-group ">
2323 < div class ="color-picker-item ">
2424 < label for ="led1-color "> LED 1 Color:</ label >
Original file line number Diff line number Diff line change @@ -10,9 +10,7 @@ def on_set_color(ledid: int, message: dict):
1010 print (f"Received set_color message: { message } " )
1111 try :
1212 color = message .get ("color" )
13-
1413 Leds .set_led_color (ledid , color )
15-
1614 except Exception as e :
1715 ui .send_message ("error" , f"LED color set error: { e } " )
1816
You can’t perform that action at this time.
0 commit comments