You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: micropython/examples/pico_display/rainbow.py
+33-15Lines changed: 33 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
-
# This example borrows a CircuitPython hsv_to_rgb function to cycle through some rainbows on Pico Display's screen and RGB LED . If you're into rainbows, HSV (Hue, Saturation, Value) is very useful!
1
+
# This example cycles through some rainbows on Pico Display's screen and RGB LED, using the HSV colour model.
2
+
# (If you're into rainbows, HSV (Hue, Saturation, Value) is very useful)
2
3
# We're using a RAM intensive 64K colour palette here to get a nice smooth colour transition.
4
+
# If you have a Display Pack 2.0" or 2.8" use DISPLAY_PICO_DISPLAY_2 instead of DISPLAY_PICO_DISPLAY
Copy file name to clipboardExpand all lines: micropython/examples/pico_display/thermometer.py
+12-6Lines changed: 12 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,25 +1,31 @@
1
-
# This example takes the temperature from the Pico's onboard temperature sensor, and displays it on Pico Display Pack, along with a little pixelly graph.
2
-
# It's based on the thermometer example in the "Getting Started with MicroPython on the Raspberry Pi Pico" book, which is a great read if you're a beginner!
1
+
# This example takes the temperature from the Pico's onboard temperature sensor, and displays it on Pico Display Pack.
2
+
# It's based on the thermometer example in the "Getting Started with MicroPython on the Raspberry Pi Pico" book.
0 commit comments