-
Notifications
You must be signed in to change notification settings - Fork 113
/
SoilMoistSensorSHT1x.ino
78 lines (61 loc) · 2.22 KB
/
SoilMoistSensorSHT1x.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
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
Arduino Soil Moisture sensor with SHT1x
connect the sensor as follows :
VCC -- Red = VCC (3-5VDC)
GND -- Black or Green = Ground
Pin 8 -- Yellow = Clock
Pin 3 -- Blue = Data.
Contribution: epierre
SHT1x library V2.0 10Dec2010 : follow instructions http://playground.arduino.cc/code/Sensirion#SHT1x
License: Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)
*/
#include <SPI.h>
#include <MySensor.h>
#include "Sensirion.h"
#define DIGITAL_INPUT_SOIL_SENSOR 3 // Digital input did you attach your soil sensor.
#define CHILD_ID_TEMP 0 // Id of the sensor child
#define CHILD_ID_HUM 1 // Id of the sensor child
#define sckPin 8 //serial clock
// We are using the SHT10
// Humid accuracy +/- 5%
// Steady accuracy between 10-80
// example at 10/90 +/- 6%, 0/100 +/- 7.5%
// Temp accuracy +/- .5 degrees celcius
// Temp error increases more as we get farther from 25 celc.
// example: @ 0/50 degrees, +/- 1.2 degrees
Sensirion th_sensor=Sensirion(DIGITAL_INPUT_SOIL_SENSOR, sckPin);
MySensor gw;
MyMessage msgtemp(CHILD_ID_TEMP, V_TEMP);
MyMessage msghum(CHILD_ID_HUM, V_HUM);
int lastTempValue = -1;
int lastHumValue = -1;
unsigned long SLEEP_TIME = 30000; // Sleep time between reads (in milliseconds)
void setup()
{
gw.begin();
// Send the sketch version information to the gateway and Controller
gw.sendSketchInfo("Soil Moisture Sensor SHT1x", "1.0");
// Register all sensors to gw (they will be created as child devices)
gw.present(CHILD_ID_TEMP, S_TEMP);
gw.present(CHILD_ID_HUM, S_HUM);
}
void loop()
{
float temp_c;
float humid;
float dewpoint;
// Read values from the sensor
th_sensor.measure(&temp_c, &humid, &dewpoint);
if (temp_c != lastTempValue) {
Serial.println(temp_c);
gw.send(msgtemp.set(temp_c, 1)); // Send the inverse to gw as tripped should be when no water in soil
lastTempValue = temp_c;
}
if (humid != lastHumValue) {
Serial.println(humid);
gw.send(msghum.set(humid, 1)); // Send the inverse to gw as tripped should be when no water in soil
lastHumValue = humid;
}
// Power down the radio and arduino until digital input changes.
gw.sleep(SLEEP_TIME); //sleep a bit
}