-
Notifications
You must be signed in to change notification settings - Fork 0
/
protofirmware.ino
executable file
·221 lines (172 loc) · 5.4 KB
/
protofirmware.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#include "DHT.h"
#include "font.h"
#include <Wire.h>
#include "SSD1306.h"
#include <RCSwitch.h>
#include <SimpleTimer.h>
// This part is for Ethernet stuff.
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
#include <ESP8266mDNS.h>
#include <BlynkSimpleESP8266.h>
RCSwitch mySwitch = RCSwitch();
// what digital pin we're connected to
#define DHTPIN 14
// Enables Serial Monitor
#define BLYNK_PRINT Serial
#define DHTTYPE DHT22 // DHT 22 (AM2302), AM2321
SSD1306 display(0x3c, SCL, SDA);
DHT dht(DHTPIN, DHTTYPE);
int onSignal = 1381827;
int offSignal = 1381836;
int currentSignal = 0;
bool state = false;
long last = -180000;
float tempSetting = 90;
float previousTempSetting;
unsigned long timeSinceStart;
// the timer object
SimpleTimer timer;
char auth[] = "cc7e38a7f1024960aca086a910777bcb"; // Put your Auth Token here. (see Step 3 above)
const char* ssid = "freefly";
const char* password = "lrtsucks";
ESP8266WebServer server(80);
const int led = 2;
// There is a Widget that WRITEs data to V1
BLYNK_WRITE(V5) {
previousTempSetting = tempSetting;
tempSetting = param.asInt();
}
float h;
float t;
float f;
float previoush;
float previoust;
float previousf;
float hif;
// a function to be executed periodically
void repeatMe() {
//Option: System Hysterisis Range
float highTemp = tempSetting + 2;
float lowTemp = tempSetting - 2;
h = dht.readHumidity();
t = dht.readTemperature();
f = dht.readTemperature(true);
float hic = dht.computeHeatIndex(t, h, false); // Compute heat index in Celsius (isFahreheit = false)
display.clear();
if (!isnan(f) && !isnan(h)) {
Serial.print("[ ");
Serial.print(millis() / 1000);
Serial.print(" secs ]..... \n");
display.setTextAlignment(TEXT_ALIGN_LEFT);
display.drawString(0,0,String(h) + " %");
previoush = h;
Blynk.virtualWrite(V0, h);
display.drawString(0,24,String(f) + " °F");
previousf = f;
Blynk.virtualWrite(V1, f);
hif = dht.computeHeatIndex(f, h); // Compute heat index in Fahrenheit (the default)
display.drawString(0,48,String(hif) + " °F");
}
else if (!isnan(h) && isnan(f)) {
Serial.print("[ ");
Serial.print(millis() / 1000);
Serial.print(" secs ].....");
Serial.println("Failed to read temperature from DHT sensor.");
display.setTextAlignment(TEXT_ALIGN_LEFT);
display.drawString(0,0,String(h) + " %");
previoush = h;
Blynk.virtualWrite(V0, h);
display.drawString(0,24,String(previousf) + " °F");
Blynk.virtualWrite(V1, previousf);
hif = dht.computeHeatIndex(previousf, h); // Compute heat index in Fahrenheit (the default)
display.drawString(0,48,String(hif) + " °F");
}
else if (!isnan(f) && isnan(h)) {
Serial.print("[ ");
Serial.print(millis() / 1000);
Serial.print(" secs ].....");
display.setTextAlignment(TEXT_ALIGN_LEFT);
Serial.println("Failed to read humidity from DHT sensor.");
display.drawString(0,0,String(previoush) + " %");
Blynk.virtualWrite(V0, previoush);
display.drawString(0,24,String(f) + " °F");
previousf = f;
Blynk.virtualWrite(V1, f);
hif = dht.computeHeatIndex(f, previoush); // Compute heat index in Fahrenheit (the default)
display.drawString(0,48,String(hif) + " °F");
}
else if (isnan(h) && isnan(f)) {
Serial.print("[ ");
Serial.print(millis() / 1000);
Serial.print(" secs ].....");
display.setTextAlignment(TEXT_ALIGN_LEFT);
display.drawString(0,0,String(previoush) + " %");
Blynk.virtualWrite(V0, previoush);
Serial.println("Failed to read temperature and humidity from DHT sensor.");
display.drawString(0,24,String(previousf) + " °F");
Blynk.virtualWrite(V1, previousf);
hif = dht.computeHeatIndex(previousf, previoush); // Compute heat index in Fahrenheit (the default)
display.drawString(0,48,String(hif) + " °F");
}
Blynk.virtualWrite(V2, hif);
//Switch control.
//Option: Use Heat Index Instead of Temperature.
if ((state == false) && (millis() > last + 180000) && (f > highTemp)) {
currentSignal = onSignal;
mySwitch.send(currentSignal, 24);
delay(2000);
last = millis();
state = true;
Serial.println("ON");
else if ((state == true) && (f < lowTemp)) {
currentSignal = offSignal;
mySwitch.send(currentSignal, 24);
delay(2000);
state = false;
Serial.println("OFF");
}
if(tempSetting != previousTempSetting) {
Serial.print("Thermostat temperature set to: ");
Serial.println(tempSetting);
previousTempSetting = tempSetting;
}
display.display();
}
void setup() {
Serial.begin(115200);
Serial.println("");
WiFi.begin(ssid, password);
// digitalWrite(led, 0);
// Wait for connection
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
dht.begin();
Serial.println("");
Serial.print("Connected to ");
Serial.println(ssid);
Serial.print("IP address: ");
Serial.println(WiFi.localIP());
if (MDNS.begin("esp8266")) {
Serial.println("MDNS responder started");
};
pinMode(led, OUTPUT);
Blynk.begin(auth, ssid, password);
// Transmitter is connected to Arduino Pin #16
mySwitch.enableTransmit(16);
mySwitch.setPulseLength(184);
display.init();
display.flipScreenVertically();
display.setFont(Dialog_plain_16);
//Option: LED ON/OFF
digitalWrite(led, 1);
timer.setInterval(2000, repeatMe);
}
void loop() {
timer.run();
Blynk.run();
display.display();
}