Skip to content
Snippets Groups Projects
Commit a5bed537 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

examples/hwapi: Consistently use Signal class to define LEDs.

parent 297af603
No related branches found
No related tags found
No related merge requests found
......@@ -13,10 +13,10 @@ from machine import Pin
# echo -n "gpio_keys" >/sys/class/input/input1/device/driver/unbind
# User LED 1 on gpio21
LED = Pin(21, Pin.OUT)
LED = Signal(Pin(21, Pin.OUT))
# User LED 2 on gpio120
LED2 = Pin(120, Pin.OUT)
LED2 = Signal(Pin(120, Pin.OUT))
# Button S3 on gpio107
BUTTON = Pin(107, Pin.IN)
......@@ -2,4 +2,4 @@ from machine import Pin
# Freescale/NXP FRDM-K64F board
# Blue LED on port B, pin 21
LED = Pin(("GPIO_1", 21), Pin.OUT)
LED = Signal(Pin(("GPIO_1", 21), Pin.OUT))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment