Programmer une LED

Le montage

Une led est monté sur GP6.

Led sur GP6

Avec Picozero

"""
Blink : la Led clignote, branchée sur GP6
"""

from picozero import LED
import time

led_rouge = LED(6)

while True :
  led_rouge.on()
  time.sleep(0.5)
  led_rouge.off()
  time.sleep(0.5)

Sans Picozero

"""
Blink : la Led clignote, branchée sur GP6
"""

from machine import Pin
import time

led_rouge = Pin(6, mode=Pin.OUT)

while True :
  led_rouge.on()
  time.sleep(0.5)
  led_rouge.off()
  time.sleep(0.5)