-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsms.h
50 lines (40 loc) · 1.31 KB
/
sms.h
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
#include <Arduino.h>
#include "gravity_soil_moisture_sensor.h"
GravitySoilMoistureSensor gravity_sensor;
// #define SMSPIN 33 // remember it's analog
void smsetup() {
pinMode(SMSPIN, INPUT); // Set pin mode
int attempts = 3;
while (!gravity_sensor.Setup(SMSPIN) && attempts > 0) {
Serial.println("⚠️ Sensor not detected, retrying...");
delay(1000); // Wait 1 second before retrying
attempts--;
}
if (attempts == 0) {
Serial.println("❌ Gravity Soil Moisture Sensor failed to initialize.");
} else {
Serial.println("✅ Gravity Soil Moisture Sensor initialized.");
}
}
// Get raw soil moisture value
int getSoilMoisture() {
int value = gravity_sensor.Read();
if (value == -1) {
Serial.println("❌ Failed to read soil moisture!");
return -1;
}
Serial.printf("💧 Soil Moisture: %d\n", value);
return value;
}
// Get soil moisture percentage (0-100%)
float getSoilMoisturePercentage() {
int rawValue = gravity_sensor.Read();
if (rawValue == -1) {
Serial.println("❌ Failed to read soil moisture!");
return -1;
}
float percentage = (rawValue / 4095.0) * 100; // Convert to percentage
Serial.printf("💧 Soil Moisture: %.2f%%\n", percentage);
return percentage;
// return 20;
}