From f1c361bb82188e676e21c25a9a7d9654f35d5014 Mon Sep 17 00:00:00 2001 From: thirdr Date: Fri, 27 Sep 2024 09:52:01 +0100 Subject: [PATCH] Pico Display 2.x: compatibility note --- micropython/examples/pico_display/scroll_menu_h.py | 3 +++ micropython/examples/pico_display/scroll_menu_v.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/micropython/examples/pico_display/scroll_menu_h.py b/micropython/examples/pico_display/scroll_menu_h.py index 9371719b..a6979486 100644 --- a/micropython/examples/pico_display/scroll_menu_h.py +++ b/micropython/examples/pico_display/scroll_menu_h.py @@ -1,3 +1,6 @@ +# Note: This example is intended for use on the Pico Display 2.0 and Pico Display 2.8 +# and will not display correctly on the smaller Pico Display due to the difference in resolution. + # A scrolling menu example # Use B and Y buttons to navigate LEFT and RIGHT # Press A to select a character. Selected characters are shown at the top of the display. diff --git a/micropython/examples/pico_display/scroll_menu_v.py b/micropython/examples/pico_display/scroll_menu_v.py index 74ba17ee..e4db91b9 100644 --- a/micropython/examples/pico_display/scroll_menu_v.py +++ b/micropython/examples/pico_display/scroll_menu_v.py @@ -1,3 +1,6 @@ +# Note: This example is intended for use on the Pico Display 2.0 and Pico Display 2.8 +# and will not display correctly on the smaller Pico Display due to the difference in resolution. + # A scrolling menu example # Use X and Y buttons to navigate up and down the menu # Press A to select a character. Selected characters are shown at the bottom of the display.