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 08874af + 55d8f0d commit 93b0e5bCopy full SHA for 93b0e5b
ports/raspberrypi/boards/hack_club_sprig/pins.c
@@ -1,5 +1,8 @@
1
#include "shared-bindings/board/__init__.h"
2
3
+#include "supervisor/board.h"
4
+#include "shared-module/displayio/__init__.h"
5
+
6
STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
7
CIRCUITPYTHON_BOARD_DICT_STANDARD_ITEMS
8
@@ -81,5 +84,7 @@ STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
81
84
82
85
{ MP_ROM_QSTR(MP_QSTR_WHITE_LED), MP_ROM_PTR(&pin_GPIO28) },
83
86
87
+ { MP_ROM_QSTR(MP_QSTR_DISPLAY), MP_ROM_PTR(&displays[0].display)},
88
89
};
90
MP_DEFINE_CONST_DICT(board_module_globals, board_module_globals_table);
0 commit comments