diff options
| author | Damien George <damien@micropython.org> | 2023-02-07 15:03:14 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2023-02-07 15:03:14 +1100 |
| commit | 35524a6fda1e44692ad599a39c802c168c897de9 (patch) | |
| tree | 95bb59a8ba1348760cee9937673dfb52270f6b2c /examples | |
| parent | 0afe60b876e20684cc0313922a34ee65e7db898a (diff) | |
examples/rp2: Add comment that examples using IO25 don't work on Pico W.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/rp2/pio_1hz.py | 1 | ||||
| -rw-r--r-- | examples/rp2/pio_exec.py | 1 | ||||
| -rw-r--r-- | examples/rp2/pwm_fade.py | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/examples/rp2/pio_1hz.py b/examples/rp2/pio_1hz.py index 4b6fe95bb..84d761fa1 100644 --- a/examples/rp2/pio_1hz.py +++ b/examples/rp2/pio_1hz.py @@ -1,4 +1,5 @@ # Example using PIO to blink an LED and raise an IRQ at 1Hz. +# Note: this does not work on Pico W because it uses Pin(25) for LED output. import time from machine import Pin diff --git a/examples/rp2/pio_exec.py b/examples/rp2/pio_exec.py index 86018a93a..ce39f2df8 100644 --- a/examples/rp2/pio_exec.py +++ b/examples/rp2/pio_exec.py @@ -1,4 +1,5 @@ # Example using PIO to turn on an LED via an explicit exec. +# Note: this does not work on Pico W because it uses Pin(25) for LED output. # # Demonstrates: # - using set_init and set_base diff --git a/examples/rp2/pwm_fade.py b/examples/rp2/pwm_fade.py index 7264edaa2..5b7089c6b 100644 --- a/examples/rp2/pwm_fade.py +++ b/examples/rp2/pwm_fade.py @@ -1,4 +1,5 @@ # Example using PWM to fade an LED. +# Note: this does not work on Pico W because it uses Pin(25) for LED output. import time from machine import Pin, PWM |
