Fix comments based on review notes
This commit is contained in:
parent
387abbbc4c
commit
079fe9e6c5
2 changed files with 3 additions and 6 deletions
|
|
@ -8,9 +8,9 @@ import board
|
|||
import microcontroller
|
||||
import adafruit_pioasm
|
||||
|
||||
# NeoPixels are 800khz bit streams. We are choosing zeros as <312ns hi, 936 lo> and ones
|
||||
# NeoPixels are 800khz bit streams. We are choosing zeros as <312ns hi, 936 lo>
|
||||
# and ones as <700 ns hi, 556 ns lo>.
|
||||
# cycle. The first two instructions always run while only one of the two final
|
||||
# The first two instructions always run while only one of the two final
|
||||
# instructions run per bit. We start with the low period because it can be
|
||||
# longer while waiting for more data.
|
||||
program = """
|
||||
|
|
|
|||
|
|
@ -33,11 +33,8 @@ RGBW = "RGBW"
|
|||
GRBW = "GRBW"
|
||||
"""Green Red Blue White"""
|
||||
|
||||
# NeoPixels are 800khz bit streams. We are choosing zeros as <312ns hi, 936 lo> and ones
|
||||
# NeoPixels are 800khz bit streams. We are choosing zeros as <312ns hi, 936 lo>
|
||||
# and ones as <700 ns hi, 556 ns lo>.
|
||||
# cycle. The first two instructions always run while only one of the two final
|
||||
# instructions run per bit. We start with the low period because it can be
|
||||
# longer while waiting for more data.
|
||||
_program = Program(
|
||||
"""
|
||||
.side_set 1 opt
|
||||
|
|
|
|||
Loading…
Reference in a new issue