arduino-lorawan
arduino-lorawan copied to clipboard
User-friendly library for using arduino-lmic with The Things Network and other LoRaWAN® networks
I would like to know how to configure the MISO, MOSI, SCK and SS pins for SPI in the case when I'm using the custom board? From `hal.cpp` I can...
Hello, I am trying to work ttn_otaa library with atmega4808 bare chip with megacorex 16mhz internal I set pins and keys correctly. I can join and perform uplink only once....
Hello, I am trying to perform lorawan node with arduino promini 3.3v and rfm95w module. Codes are below #include #include #include // // For normal use, we require that you...
Helium US915, TTN US915, and AU915 use `Arduino_LoRaWAN::cLMIC::SelectSubBand()`, and ignore `ARDUINO_LMIC_CFG_SUBBAND`. Others use `LMIC_selectSubBand()` and ignore `ARDUINO_LMIC_CFG_SUBBAND`. This should be converged.
const sRFM_pins RFM_pins = { .CS = RADIO_NSS, .RST = RADIO_RESET, .DIO0 = RADIO_DIO_0, .DIO1 = RADIO_DIO_1, .DIO2 = RADIO_DIO_2, .DIO5 = RADIO_DIO_5, }; Hello! How r you ? This...
In the radio.c file, there is code filling up a buffer called `randbuf` with random bytes using the `RegRssiWideband` register. https://github.com/mcci-catena/arduino-lmic/blob/master/src/lmic/radio.c#L1124-L1134 The problem is this code has a line that...
I need to implement a LoRaWAN device that sends a message every 10 minutes. To limit the power consumption I need to put the device to sleep between sending the...
If I send data to the device from TTN and I ask for a confirmation that the data was received using the LiMC stack, how do I send the ACK...
The package now only supports USB serial (Serial) on Feather M0 devices... Would like to reassign to another serial port as needed at compile or run time...
If provisioning style is kNone, this->NetBegin() will fail. But this leaves the LMIC enabled, so if the user tries to send, the LMIC will start trying to join (with invalid...