We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d9418fb + 390a473 commit e31d84dCopy full SHA for e31d84d
ports/espressif/boards/espressif_esp32s3_usb_otg_n8/pins.c
@@ -1,5 +1,7 @@
1
#include "shared-bindings/board/__init__.h"
2
3
+#include "shared-module/displayio/__init__.h"
4
+
5
// Pin names from:
6
// https://espressif-docs.readthedocs-hosted.com/projects/espressif-esp-dev-kits/en/latest/esp32s3/esp32-s3-usb-otg/user_guide.html#pin-layout
7
@@ -44,5 +46,6 @@ STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
44
46
{ MP_ROM_QSTR(MP_QSTR_RX), MP_ROM_PTR(&pin_GPIO44) },
45
47
48
{ MP_ROM_QSTR(MP_QSTR_UART), MP_ROM_PTR(&board_uart_obj) },
49
+ { MP_ROM_QSTR(MP_QSTR_DISPLAY), MP_ROM_PTR(&displays[0].display)},
50
};
51
MP_DEFINE_CONST_DICT(board_module_globals, board_module_globals_table);
0 commit comments