An async, no_std Rust driver for the Semtech LR2021 dual-band transceiver, supporting many different radio protocols including LoRa, BLE, ZigBee, Z-Wave, and more.
Add this to your Cargo.toml:
[dependencies]
lr1120 = "0.1.0"
embassy-time = "0.5"Basic usage:
use lr1120_driver::Lr1120;
let mut radio = Lr1120::new(reset_pin, busy_pin, spi_device, nss_pin);
radio.reset().await?;
// Configure and use your preferred protocol- Semtech LR2021 transceiver module
- SPI-capable microcontroller
- 3 GPIO pins: Reset (output), Busy (input), NSS/CS (output) (not counting SPI SCK/MISO/MOSI)
- Embassy-compatible async runtime
- API Documentation - Complete API reference
- Example Applications - Real-world usage examples on Nucleo boards