Skip to content

Commit c8b5805

Browse files
authored
Merge pull request #7574 from jpconstantineau/PyKey87-LED-Fix
minor update to boards.c to fix mismatched number of Neopixels
2 parents e3b924b + 676cbb3 commit c8b5805

File tree

3 files changed

+3
-3
lines changed
  • ports/raspberrypi/boards

3 files changed

+3
-3
lines changed

ports/raspberrypi/boards/jpconstantineau_pykey18/board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
void reset_board(void) {
3333
// turn off any left over LED
34-
board_reset_user_neopixels(&pin_GPIO29, 62);
34+
board_reset_user_neopixels(&pin_GPIO29, 19);
3535
}
3636

3737
// Use the MP_WEAK supervisor/shared/board.c versions of routines not defined here.

ports/raspberrypi/boards/jpconstantineau_pykey44/board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
void reset_board(void) {
3333
// turn off any left over LED
34-
board_reset_user_neopixels(&pin_GPIO29, 62);
34+
board_reset_user_neopixels(&pin_GPIO29, 45);
3535
}
3636

3737
// Use the MP_WEAK supervisor/shared/board.c versions of routines not defined here.

ports/raspberrypi/boards/jpconstantineau_pykey87/board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
void reset_board(void) {
3333
// turn off any left over LED
34-
board_reset_user_neopixels(&pin_GPIO29, 62);
34+
board_reset_user_neopixels(&pin_GPIO29, 88);
3535
}
3636

3737
// Use the MP_WEAK supervisor/shared/board.c versions of routines not defined here.

0 commit comments

Comments
 (0)