You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
522 B
C++
34 lines
522 B
C++
#include <SPI.h>
|
|
#include <LoRa.h>
|
|
|
|
int counter = 0;
|
|
char mes[] = "message :";
|
|
|
|
void setup() {
|
|
SerialUSB.begin(9600);
|
|
while (!Serial);
|
|
|
|
SerialUSB.println("LoRa Sender");
|
|
|
|
if (!LoRa.begin(868E6)) {
|
|
SerialUSB.println("Starting LoRa failed!");
|
|
while (1);
|
|
}
|
|
}
|
|
|
|
void loop() {
|
|
SerialUSB.print("paquet envoyé : ");
|
|
SerialUSB.println(counter);
|
|
|
|
// send packet
|
|
LoRa.beginPacket();
|
|
LoRa.print("message : ");
|
|
LoRa.print(counter);
|
|
LoRa.print("\n");
|
|
LoRa.endPacket();
|
|
|
|
counter++;
|
|
|
|
delay(5000);
|
|
}
|