- Notifications
You must be signed in to change notification settings - Fork1.1k
LoRa
Frederic Pillon edited this pageMar 23, 2020 ·1 revision
Hereafter some application codes which can be used for RAK811 LoRa board provided by@RAKWireless in#859.
pinMode(RADIO_XTAL_EN, OUTPUT);//Power LoRa moduledigitalWrite(RADIO_XTAL_EN, HIGH);
pinMode(RADIO_RF_CRX_RX, OUTPUT);digitalWrite(RADIO_RF_CRX_RX, HIGH);//control LoRa work to receivepinMode(RADIO_RF_CTX_PA, OUTPUT);digitalWrite(RADIO_RF_CTX_PA, LOW);
pinMode(RADIO_RF_CRX_RX, OUTPUT); digitalWrite(RADIO_RF_CRX_RX, LOW); pinMode(RADIO_RF_CTX_PA,OUTPUT); digitalWrite(RADIO_RF_CTX_PA, HIGH); //control LoRa send by PA_BOOSTMore details can be found here:https://github.com/RAKWireless/RAK811_LoRaWAN_Arduino