-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLamp_One.ino
251 lines (206 loc) · 7.38 KB
/
Lamp_One.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/** The MIT License (MIT)
*
Copyright (c) 2019 by Brian Kinney - Revolution Development, LLC www.wearerev.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER{
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Check us out: www.wearerev.com
*/
#include <ESP8266WiFi.h>
#include <PubSubClient.h>
#include <Ticker.h>
#include <DNSServer.h>
#include <ESP8266WebServer.h>
#include <WiFiManager.h> //https://github.com/tzapu/WiFiManager
Ticker ticker;
WiFiClient espClient;
PubSubClient client(espClient);
// MQTT Server setup
const char* mqtt_server = "xxx"; // Enter your MQTT Server
const int port = 12345; // Enter your MQTT Server port here
// RGB pin setup
const int red = 5; // GPIO pin for the RED LED
const int green = 4; // GPIO pin for the GREEN LED
const int blue = 12; // GPIO pin for the BLUE LED
// Main LED for status, touch input pin and lamp definitons
const int led = 4; // The GPIO pin for the status LED (i.e. when connecting to wifi this blinks). This can be set to one of the RGB pins defined above, or an onboard LED GPIO number.
const int touch = 14; // The GPIO pin for the touch switch.
const char* lampColor = "010"; // R G B "010" means RED and BLUE are ON, Green is OFF
const char* lampName = "LAMPNAMEHERE"; // MQTT Server user (a.k.a lamp name) here
const char* lampPassword = "LAMPPASSWORDHERE" // MQTT Server user password (a.k.a lamp password) here. Leave as empty string if there isn't any password.
int currentColor[3] = {0, 1, 0}; // Set current lamp color R G B - RED and BLUE are ON
int newColor[3] = {0, 1, 0}; // Set new lamp color - RED and BLUE are ON
long sampleTime = 0; // the last time the output pin was sampled
int debounce_count = 100; // number of millis/samples to consider before declaring a debounced input
int counter = 0;
int reading; // the current value read from the input pin
int current_state = LOW; // the debounced input value
unsigned long turnOffMillis = 0;
int flag = 0;
int duty = 0;
// LED Fade settings
const int steps = 64;
const int fadeSpeed = 50;
const int lookup[64] = {
0, 0, 0, 1, 1, 1, 1, 2, 2, 3, 3,
4, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
14, 15, 16, 18, 19, 21, 22, 24, 25, 27, 28,
30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50,
52, 55, 57, 60, 62, 65, 67, 70, 72, 75, 78,
81, 84, 87, 90, 93, 96, 99, 99, 99
};
void setColor(int[3]);
void tick() {
//toggle state
int state = digitalRead(led); // get the current state of GPIO1 pin
digitalWrite(led, !state); // set pin to the opposite state
}
// Callback status output to Serial frm MQTT server pub/sub messages
void callback(char* topic, byte* payload, unsigned int length) {
Serial.print("Message arrived [");
Serial.print(topic);
Serial.print("] -");
Serial.print(length);
Serial.print("- ");
for (int i = 0; i < length; i++) {
Serial.print((char)payload[i]);
newColor[i] = ((int)payload[i] - 48);
}
Serial.println();
Serial.println(newColor[1]);
setColor(newColor);
turnOffMillis = millis();
flag = 1;
}
// MQTT Server reconnect when not connected
void reconnect() {
while(!client.connected()) {
Serial.print("Attempting MQTT connection...");
// Attempt to connect
if(client.connect(lampName, lampName, lampPassword)) {
Serial.println("Connected to the MQTT Server");
client.publish("online", lampName);
client.subscribe("colorChange");
digitalWrite(led, LOW);
} else {
digitalWrite(led, HIGH);
Serial.print("failed, rc=");
Serial.print(client.state());
Serial.println("Trying again in 5 seconds...");
// Wait 5 seconds before retrying
delay(5000);
}
}
}
void configModeCallback (WiFiManager *myWiFiManager) {
Serial.println("Entering Wifi configuration mode...");
Serial.println(WiFi.softAPIP());
ticker.detach();
ticker.attach(0.3, tick);
Serial.println(myWiFiManager->getConfigPortalSSID());
}
void setup() {
pinMode(red, OUTPUT);
pinMode(green, OUTPUT);
pinMode(blue, OUTPUT);
pinMode(led, OUTPUT);
pinMode(touch, INPUT);
digitalWrite(led, 1);
// Start ticker to check ever .7 of a second to check for wifi
ticker.attach(0.7, tick);
Serial.begin(9600);
//WiFiManager
WiFiManager wifiManager;
wifiManager.setAPCallback(configModeCallback);
wifiManager.setConnectTimeout(20);
// ONLY Uncomment to reset any existing saved wifi settings
// remember to comment it back out and reupload to fully reset the nodeMCU
// wifiManager.resetSettings();
wifiManager.autoConnect("Long Distance Lamp");
Serial.println("Connected to wifi.");
ticker.detach();
client.setServer(mqtt_server, port);
client.setCallback(callback);
digitalWrite(led, LOW);
setColor(currentColor);
flag = 1;
turnOffMillis = millis();
}
void loop(){
if(flag == 1 && (millis() - turnOffMillis) > 3600000) {
digitalWrite(red, LOW);
digitalWrite(green, LOW);
digitalWrite(blue, LOW);
flag = 0;
}
if(millis() != sampleTime) {
reading = digitalRead(touch);
if (reading == current_state && counter > 0) {
counter--;
}
if(reading != current_state) {
counter++;
}
// If the Input has shown the same value for long enough let's switch it
if(counter >= debounce_count) {
counter = 0;
current_state = reading;
Serial.println(current_state);
if (current_state == 1) {
client.publish("colorChange", lampColor);
}
}
sampleTime = millis();
}
if(!client.connected()) {
reconnect();
}
client.loop();
}
void setColor(int newColor[3]) {
for(int i = (steps - 1); i >= 0; i--) {
duty = lookup[i];
for(int j = 0; j < fadeSpeed; j++) {
// One pulse of PWM
digitalWrite(red, (int)currentColor[0]);
digitalWrite(green, (int)currentColor[1]);
digitalWrite(blue, (int)currentColor[2]);
delayMicroseconds(duty);
digitalWrite(red, LOW);
digitalWrite(green, LOW);
digitalWrite(blue, LOW);
delayMicroseconds(100 - duty);
}
}
for(int i = 1; i < steps; i++) {
duty = lookup[i];
for(int j = 0; j < fadeSpeed; j++) {
digitalWrite(red, (int)newColor[0]);
digitalWrite(green, (int)newColor[1]);
digitalWrite(blue, (int)newColor[2]);
delayMicroseconds(duty);
digitalWrite(red, LOW);
digitalWrite(green, LOW);
digitalWrite(blue, LOW);
delayMicroseconds(100 - duty);
}
}
digitalWrite(red, (int)newColor[0]);
digitalWrite(green, (int)newColor[1]);
digitalWrite(blue, (int)newColor[2]);
currentColor[0] = newColor[0];
currentColor[1] = newColor[1];
currentColor[2] = newColor[2];
}