-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlorasend.ino
65 lines (52 loc) · 1.5 KB
/
lorasend.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <SPI.h>
#include <LoRa.h>
#include <ArduinoJson.h>
int pot = A0;
int Gas_analog = A4; // used for ESP32
const int trigPin = 3;
const int echoPin = 2;
// defines variables
long duration;
int distance;
void setup() {
Serial.begin(9600);
pinMode(pot, INPUT);
pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output
pinMode(echoPin, INPUT); // Sets the echoPin as an Input
while (!Serial);
Serial.println("LoRa Sender");
if (!LoRa.begin(433E6)) { // or 915E6, the MHz speed of yout module
Serial.println("Starting LoRa failed!");
while (1);
}
}
void loop() {
Serial.println("LoRa sending");
int gassensorAnalog = analogRead(Gas_analog);
Serial.println(gassensorAnalog);
// Clears the trigPin
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro seconds
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration = pulseIn(echoPin, HIGH);
// Calculating the distance
distance = duration * 0.034 / 2;
// Prints the distance on the Serial Monitor
//char dis[1000];
//char gaz[1000];
//sprintf(dis, "%d", distance);
//sprintf(gaz, "%d", gassensorAnalog);
StaticJsonDocument<200> doc;
doc["gaz"] = gassensorAnalog;
doc["distance"] = distance;
char jsonBuffer[512];
serializeJson(doc, jsonBuffer); // print to client
LoRa.beginPacket();
LoRa.print(jsonBuffer);
LoRa.endPacket();
delay(1000);
}