Skip to content

Commit 079fe9e

Browse files
committed
Fix comments based on review notes
1 parent 387abbb commit 079fe9e

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

examples/pioasm_neopixel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
import microcontroller
99
import adafruit_pioasm
1010

11-
# NeoPixels are 800khz bit streams. We are choosing zeros as <312ns hi, 936 lo> and ones
11+
# NeoPixels are 800khz bit streams. We are choosing zeros as <312ns hi, 936 lo>
1212
# and ones as <700 ns hi, 556 ns lo>.
13-
# cycle. The first two instructions always run while only one of the two final
13+
# The first two instructions always run while only one of the two final
1414
# instructions run per bit. We start with the low period because it can be
1515
# longer while waiting for more data.
1616
program = """

examples/pioasm_neopixel_bg.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,8 @@
3333
GRBW = "GRBW"
3434
"""Green Red Blue White"""
3535

36-
# NeoPixels are 800khz bit streams. We are choosing zeros as <312ns hi, 936 lo> and ones
36+
# NeoPixels are 800khz bit streams. We are choosing zeros as <312ns hi, 936 lo>
3737
# and ones as <700 ns hi, 556 ns lo>.
38-
# cycle. The first two instructions always run while only one of the two final
39-
# instructions run per bit. We start with the low period because it can be
40-
# longer while waiting for more data.
4138
_program = Program(
4239
"""
4340
.side_set 1 opt

0 commit comments

Comments
 (0)