8000
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.
1 parent c010cc2 commit e15bcebCopy full SHA for e15bceb
ports/atmel-samd/boards/seeeduino_wio_terminal/pins.c
@@ -1,4 +1,5 @@
1
#include "shared-bindings/board/__init__.h"
2
+#include "shared-module/displayio/__init__.h"
3
4
STATIC const mp_rom_map_elem_t board_global_dict_table[] = {
5
@@ -86,5 +87,7 @@ STATIC const mp_rom_map_elem_t board_global_dict_table[] = {
86
87
{ MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&board_i2c_obj) },
88
{ MP_ROM_QSTR(MP_QSTR_SPI), MP_ROM_PTR(&board_spi_obj) },
89
{ MP_ROM_QSTR(MP_QSTR_UART), MP_ROM_PTR(&board_uart_obj) },
90
+
91
+ { MP_ROM_QSTR(MP_QSTR_DISPLAY), MP_ROM_PTR(&displays[0].display) },
92
};
93
MP_DEFINE_CONST_DICT(board_module_globals, board_global_dict_table);
0 commit comments