Skip to content

Commit 6577afe

Browse files
authored
Merge pull request #2249 from evaherrada/internal-led-update
Removed comments
2 parents d0abfaf + 448a133 commit 6577afe

File tree

2 files changed

+0
-4
lines changed
  • CircuitPython_Essentials
    • CircuitPython_Internal_RGB_LED_colors
    • CircuitPython_Internal_RGB_LED_rainbow

2 files changed

+0
-4
lines changed

CircuitPython_Essentials/CircuitPython_Internal_RGB_LED_colors/code.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
import time
77
import board
88

9-
# For Trinket M0, Gemma M0, ItsyBitsy M0 Express, and ItsyBitsy M4 Express
109
if hasattr(board, "APA102_SCK"):
1110
import adafruit_dotstar
1211

1312
led = adafruit_dotstar.DotStar(board.APA102_SCK, board.APA102_MOSI, 1)
14-
# For Feather M0 Express, Metro M0 Express, Metro M4 Express, Circuit Playground Express, QT Py M0
1513
else:
1614
import neopixel
1715

CircuitPython_Essentials/CircuitPython_Internal_RGB_LED_rainbow/code.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@
77
import board
88
from rainbowio import colorwheel
99

10-
# For Trinket M0, Gemma M0, ItsyBitsy M0 Express, and ItsyBitsy M4 Express
1110
if hasattr(board, "APA102_SCK"):
1211
import adafruit_dotstar
1312

1413
led = adafruit_dotstar.DotStar(board.APA102_SCK, board.APA102_MOSI, 1)
15-
# For Feather M0 Express, Metro M0 Express, Metro M4 Express, Circuit Playground Express, QT Py M0
1614
else:
1715
import neopixel
1816

0 commit comments

Comments
 (0)