Skip to content

Commit aa44ebe

Browse files
committed
Fix typo with LCD_DC pin assignment (thanks @RetiredWizard!)
1 parent e79e04c commit aa44ebe

File tree

1 file changed

+1
-1
lines changed
  • ports/espressif/boards/waveshare_esp32_s3_geek

1 file changed

+1
-1
lines changed

ports/espressif/boards/waveshare_esp32_s3_geek/pins.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
6969
{ MP_ROM_QSTR(MP_QSTR_LCD_CS), MP_ROM_PTR(&pin_GPIO10) },
7070
{ MP_ROM_QSTR(MP_QSTR_LCD_RST), MP_ROM_PTR(&pin_GPIO9) },
7171
{ MP_ROM_QSTR(MP_QSTR_LCD_BACKLIGHT), MP_ROM_PTR(&pin_GPIO7) },
72-
{ MP_ROM_QSTR(MP_QSTR_LCD_DC), MP_ROM_PTR(&pin_GPIO18) },
72+
{ MP_ROM_QSTR(MP_QSTR_LCD_DC), MP_ROM_PTR(&pin_GPIO8) },
7373
{ MP_ROM_QSTR(MP_QSTR_DISPLAY), MP_ROM_PTR(&displays[0].display) },
7474

7575
};

0 commit comments

Comments
 (0)