Crates.io | drogue-rak811 |
lib.rs | drogue-rak811 |
version | 0.4.0 |
source | src |
created_at | 2021-01-14 13:10:32.05354 |
updated_at | 2021-01-14 13:13:57.290502 |
description | Networking stack for RAK811 LoRa breakout board |
homepage | https://blog.drogue.io |
repository | https://github.com/drogue-iot/drogue-rak811 |
max_upload_size | |
id | 341903 |
size | 46,046 |
A network driver for a RAK811 attached via a UART.
Currently requires the RAK811 to be flashed with a 2.x version of the AT firmware.
At first, the UART must be configured and handed to the driver. The uart must implement the embedded_hal::serial
traits.
let (uarte_tx, uarte_rx) = uarte
.split(ctx.resources.tx_buf, ctx.resources.rx_buf)
.unwrap();
let driver = rak811::Rak811Driver::new(
uarte_tx,
uarte_rx,
port1.p1_02.into_push_pull_output(Level::High).degrade(),
)
.unwrap();
In order to connect to the gateway, the LoRa node needs to be configured with the following:
The driver can be used to configure the properties in this way:
driver.set_band(rak811::LoraRegion::EU868).unwrap();
driver.set_mode(rak811::LoraMode::WAN).unwrap();
In addition, the following settings from the TTN console must be set:
driver.set_device_eui(&[0x00, 0xBB, 0x7C, 0x95, 0xAD, 0xB5, 0x30, 0xB9]).unwrap();
driver.set_app_eui(&[0x70, 0xB3, 0xD5, 0x7E, 0xD0, 0x03, 0xB1, 0x84])
// Secret generated by network provider
driver .set_app_key(&[0x00]).unwrap();
To join the network and send packets:
driver.join(rak811::ConnectMode::OTAA).unwrap();
// Port number can be between 1 and 255
driver.send(rak811::QoS::Confirmed, 1, b"hello!").unwrap();