Datasheet
CH2
902.7
DR0 ~ DR3
CH3
902.9
DR0 ~ DR3
CH4
903.1
DR0 ~ DR3
CH5
903.3
DR0 ~ DR3
CH6
903.5
DR0 ~ DR3
CH7
903.7
DR0 ~ DR3
CH64
903.0
DR4
c) RHF76-052AM Settings
Now let's configure the Seeeduino LoRaWAN w ith GPS (RHF76-052AM).
Firstly, you need to connect Seeeduino LoRaWAN GPS to your PC.
Secondly, open the Arduino IDE, and copy the code blew into a new skech.
void setup()
{
Serial1.begin(9600);
SerialUSB.begin(115200);
}
void loop()
{
while(Serial1.available())
{
SerialUSB.write(Serial1.read());
}
while(SerialUSB.available())
{
Serial1.write(SerialUSB.read());
}
}
Then choose the right serial port of Seeeduino Lora GPS, and choose the board Tool->Board->Se eeduino_LoRAWAN. After that you can click the upload
button.If you can not find Seeeduino_LoRAWAN in the board list or do not know how to update the code,please click here for more information.










