Skip to content

Commit

Permalink
feat: low white light
Browse files Browse the repository at this point in the history
  • Loading branch information
sasilva1998 committed May 21, 2021
1 parent 7a37926 commit 821ede0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

import machine, neopixel

leds_number = 30
leds_number = 25
pin_led = 26

np = neopixel.NeoPixel(machine.Pin(pin_led), leds_number)

for i in range(
leds_number,
):
np[i] = (255, 255, 255)
np[i] = (150, 150, 150)
np.write()

0 comments on commit 821ede0

Please sign in to comment.