LoRaWAN demo application using grove peripherals generating Cayenne LPP
radio chip selection
Radio chip driver is not included, because two options are available.
If you're using SX1272 or SX1276, then import sx127x driver into your program.
if you're using SX1261 or SX1262, then import sx126x driver into your program.
If you're using NAmote72 or Murata discovery, then you must import only sx127x driver.
Grove peripherals -> Cayenne demo
Read LoRaWAN-1.1 page for configuration instructions.
This project adds support for Murata discovery board, in addition to LoRa shields on NUCLEO boards.
Use with sx1272 shield with grove peripherals connected:
D8 D9: Button | RX TX | A3 A4: TempSense |
D6 D7: | SCL SDA : LED | A1 A2: Pot |
Button
Sends two different payload types: short press (under 1 sec)
long press: held down > 1 sec.
serial console keys
115200bps, 8N1
Enter key not used
Keys '0' to '3': cayenne channel number
'0': pot (rotary sensor)
'1': temperature
'2': digital out
'3': analog out
DevEUI configuration
For use on networks which force you to use DevEUI defined by network, comment out HardwareIDtoDevEUI()
.
HardwareIDtoDevEUI()
obtains DevEUI from the CPU unique hardware serial number. However, some networks may force you to use their DevEUI value.
Diff: sensorDemoVT100.cpp
- Revision:
- 1:3c1d13a0489e
- Parent:
- 0:62e456e60083
- Child:
- 2:da3c8d5b3f49
--- a/sensorDemoVT100.cpp Wed Feb 28 14:06:17 2018 -0800 +++ b/sensorDemoVT100.cpp Thu Mar 01 17:29:50 2018 +0000 @@ -896,9 +896,9 @@ MibRequestConfirm_t mibReq; vt.SetCursorPos(ROW_MLME_IND, 1); + Mlme_to_string(MlmeIndication->MlmeIndication, str); + vt.printf("MlmeIndication %s %08x ", str, RCC->CSR); LoRaMacEventInfoStatus_to_string(MlmeIndication->Status, str); - Mlme_to_string(MlmeIndication->MlmeIndication, str); - vt.printf("MlmeIndication %s ", str); if (MlmeIndication->Status != LORAMAC_EVENT_INFO_STATUS_OK) vt.printf("\e[31m%s \e[0m \e[K", str); else @@ -1085,13 +1085,19 @@ { case DEVICE_STATE_INIT: { + LoRaMacStatus_t status = LoRaMacInitialization( &LoRaMacPrimitives, &LoRaMacCallbacks ); + if (LORAMAC_STATUS_OK != status) { + char str[48]; + LoRaMacStatus_to_string(status, str); + vt.SetCursorPos(1, 1); + vt.printf("MacInit: %s\e[K", str); + for (;;) asm("nop"); + } + pwm.period(1.0 / 60); cayenne_ack_ch = -1; c_ch = 0xff; - d8.mode(PullDown); - if (LORAMAC_STATUS_OK != LoRaMacInitialization( &LoRaMacPrimitives, &LoRaMacCallbacks )) { - return -1; - } + d8.mode(PullDown); mibReq.Type = MIB_ADR; mibReq.Param.AdrEnable = LORAWAN_ADR_ON;