pico lora
1.0.0
LoRa communication library for Raspberry Pi RP2040 Microcontroller.
This library is written for RP2040 C++ SDK.
| Raspberry Pi Pico | Semtech SX1278 |
|---|---|
| 3.3V | VCC |
| GND | GND |
| GPIO 18 | SCK |
| GPIO 19 | MOSI |
| GPIO 16 | MISO |
| GPIO 7 | DIO0 / G0 |
| GPIO 8 | NSS / CS |
| GPIO 9 | RESET |
| GPIO 10 | DIO1 / G1 |
Default Pinout can be overrided with setPins() function
git clone https://github.com/akshayabali/pico-lora.git
cd ./pico-loraPICO_SDK_PATHexport PICO_SDK_PATH="path to pico-sdk"build directory then run cmake and make:mkdir build
cd build
cmake ..
makeCurrently this is only tested on Raspberry Pi Pico and Semtech1278 board. Feel free to reach out for any bugs or support.
This project is based on LoRa Library for Arduino:sandeepmistry/arduino-LoRa