You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
342 B
9 lines
342 B
from machine import Pin, Signal
|
|
|
|
# 96Boards Carbon board
|
|
# USR1 - User controlled led, connected to PD2
|
|
# USR2 - User controlled led, connected to PA15
|
|
# BT - Bluetooth indicator, connected to PB5.
|
|
# Note - 96b_carbon uses (at the time of writing) non-standard
|
|
# for Zephyr port device naming convention.
|
|
LED = Signal(("GPIOA", 15), Pin.OUT)
|
|
|