Old version cleaned
[weathermon.git] / Weather_Station.ino
1 /* SFE_BMP180 library example sketch
2
3 This sketch shows how to use the SFE_BMP180 library to read the
4 Bosch BMP180 barometric pressure sensor.
5 https://www.sparkfun.com/products/11824
6
7 Like most pressure sensors, the BMP180 measures absolute pressure.
8 This is the actual ambient pressure seen by the device, which will
9 vary with both altitude and weather.
10
11 Before taking a pressure reading you must take a temparture reading.
12 This is done with startTemperature() and getTemperature().
13 The result is in degrees C.
14
15 Once you have a temperature reading, you can take a pressure reading.
16 This is done with startPressure() and getPressure().
17 The result is in millibar (mb) aka hectopascals (hPa).
18
19 If you'll be monitoring weather patterns, you will probably want to
20 remove the effects of altitude. This will produce readings that can
21 be compared to the published pressure readings from other locations.
22 To do this, use the sealevel() function. You will need to provide
23 the known altitude at which the pressure was measured.
24
25 If you want to measure altitude, you will need to know the pressure
26 at a baseline altitude. This can be average sealevel pressure, or
27 a previous pressure reading at your altitude, in which case
28 subsequent altitude readings will be + or - the initial baseline.
29 This is done with the altitude() function.
30
31 Hardware connections:
32
33 - (GND) to GND
34 + (VDD) to 3.3V
35
36 (WARNING: do not connect + to 5V or the sensor will be damaged!)
37
38 You will also need to connect the I2C pins (SCL and SDA) to your
39 Arduino. The pins are different on different Arduinos:
40
41 Any Arduino pins labeled:  SDA  SCL
42 Uno, Redboard, Pro:        A4   A5
43 Mega2560, Due:             20   21
44 Leonardo:                   2    3
45
46 Leave the IO (VDDIO) pin unconnected. This pin is for connecting
47 the BMP180 to systems with lower logic levels such as 1.8V
48
49 Have fun! -Your friends at SparkFun.
50
51 The SFE_BMP180 library uses floating-point equations developed by the
52 Weather Station Data Logger project: http://wmrx00.sourceforge.net/
53
54 Our example code uses the "beerware" license. You can do anything
55 you like with this code. No really, anything. If you find it useful,
56 buy me a beer someday.
57
58 V10 Mike Grusin, SparkFun Electronics 10/24/2013
59 */
60
61 // Your sketch must #include this library, and the Wire library.
62 // (Wire is a standard library included with Arduino.):
63
64 #include <SFE_BMP180.h>
65 #include <Wire.h>
66 #include "DHT.h"
67
68 // You will need to create an SFE_BMP180 object, here called "pressure":
69
70 SFE_BMP180 pressure;
71
72 // DHT object for humidity sensor
73 DHT dht;
74 #define DHT_PIN 4
75 #define GAS_PIN A0
76 #define START_DELAY 20000
77 #define DELAY 50000
78
79 byte HasBaro;
80
81 void setup()
82 {
83   delay(START_DELAY);
84
85   Serial1.begin(57600);
86   Serial1.println("START");
87
88   // Initialize the sensor (it is important to get calibration values stored on the device).
89
90   if (pressure.begin()) {
91     Serial1.println("BMP180 init success");
92     HasBaro = 1;
93   } else {
94     Serial1.println("BMP180 init fail\n\n");
95     HasBaro = 0;
96   }
97   
98   dht.setup(DHT_PIN);
99   
100 }
101
102 void loop()
103 {
104   char status;
105   double T,P;
106   double DHT_T,DHT_H;
107   int DHTStatus;
108   int Gas;
109
110   double LastTemp;
111   byte GotTemperature,GotPressure;
112
113   // Loop here getting pressure readings every 60 seconds.
114
115   GotTemperature = 0;
116   GotPressure = 0;
117
118   if (HasBaro) {
119     
120     status = pressure.startTemperature();
121     if (status != 0) {
122       // Wait for the measurement to complete:
123       delay(status);
124
125       // Retrieve the completed temperature measurement:
126       // Note that the measurement is stored in the variable T.
127       // Function returns 1 if successful, 0 if failure.
128
129       status = pressure.getTemperature(T);
130       if (status = !0) {
131         LastTemp=T;
132         GotTemperature=1;
133       } else {  
134         Serial1.println("ERROR:TYPE=BMP180,MESSAGE=FAILED MEASURE TEMPERATURE\n");
135       }  
136     } else {
137       Serial1.println("ERROR:TYPE=BMP180,MESSAGE=FAILED START TEMPERATURE MEASUREMENT\n");
138     }
139     
140     // Start a pressure measurement:
141     // The parameter is the oversampling setting, from 0 to 3 (highest res, longest wait).
142     // If request is successful, the number of ms to wait is returned.
143     // If request is unsuccessful, 0 is returned.
144
145     status = pressure.startPressure(3);
146     if (status != 0) {
147       // Wait for the measurement to complete:
148       delay(status);
149
150       // Retrieve the completed pressure measurement:
151       // Note that the measurement is stored in the variable P.
152       // Note also that the function requires the previous temperature measurement (T).
153       // (If temperature is stable, you can do one temperature measurement for a number of pressure measurements.)
154       // Function returns 1 if successful, 0 if failure.
155
156       status = pressure.getPressure(P,LastTemp);
157       if (status != 0) {
158           // Print out the measurement:
159           GotPressure=1;
160
161       } else {
162         Serial1.println("ERROR:TYPE=BMP180,MESSAGE=FAILED MEASURE PRESSURE\n");
163       }  
164     } else {
165       Serial1.println("ERROR:TYPE=BMP180,MESSAGE=FAILED START PRESSURE MEASUREMENT\n");
166     }  
167     if (GotPressure || GotTemperature) {
168       Serial1.print("SENSOR:TYPE=BMP180");
169       if (GotPressure) { Serial1.print(",PRESSURE="); Serial1.print(P); }
170       if (GotTemperature) { Serial1.print(",TEMPERATURE="); Serial1.print(T); }
171       Serial1.println();
172     }
173   }
174
175   delay(dht.getMinimumSamplingPeriod());
176
177   DHT_H = dht.getHumidity();
178   DHT_T = dht.getTemperature();
179
180   DHTStatus=dht.getStatus();
181  
182   if (DHTStatus == 0) {
183     Serial1.print("SENSOR:TYPE=DHT22,TEMPERATURE=");
184     Serial1.print(DHT_T);
185     Serial1.print(",HUMIDITY=");
186     Serial1.println(DHT_H);
187   } else {
188     Serial1.println("ERROR:TYPE=DHT22,MESSAGE=MEASURING ERROR\n");
189   }
190   
191   Gas = analogRead(GAS_PIN);
192   
193   Serial1.print("SENSOR:TYPE=MQ4,VALUE=");
194   Serial1.println(Gas);
195   
196   delay(DELAY);  // Pause for 50 seconds.
197 }