We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4a4e4bc + 8a88b3b commit 5417edbCopy full SHA for 5417edb
Pico_DVI_Sock_Examples/CircuitPython/code.py
@@ -315,9 +315,16 @@ def sensor_values():
315
while True:
316
show_shapes()
317
sine_chart()
318
- widget0()
319
- widget1()
320
- text_align()
321
- custom_font()
322
- bitmap_example()
323
- sensor_values()
+ # the RP2040 Pico runs into MemoryErrors trying to
+ # run all of the examples
+ if board.board_id == "raspberry_pi_pico":
+ text_align()
+ bitmap_example()
+ sensor_values()
324
+ else:
325
+ widget0()
326
+ widget1()
327
328
+ custom_font()
329
330
0 commit comments