mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-03 14:37:46 +00:00
3b8a808a52
Signed-off-by: deadprogram <ron@hybridgroup.com>
15 lines
254 B
Go
15 lines
254 B
Go
//go:build featherwing
|
|
|
|
package common
|
|
|
|
import "machine"
|
|
|
|
var (
|
|
// We assume LoRa Featherwing module with sx127x is connected to PyBadge
|
|
rstPin = machine.D11
|
|
csPin = machine.D10
|
|
dio0Pin = machine.D6
|
|
dio1Pin = machine.D9
|
|
spi = machine.SPI0
|
|
)
|