Data Sheet
c) RHF76-052AM Settings
Now let's configure the Seeeduino LoRaWAN with 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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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->Seeeduino_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.