2016-09-11 23:07:18 +02:00
|
|
|
#include <Arduino.h>
|
|
|
|
#include <ESP8266WiFi.h>
|
|
|
|
#include <ESP8266WebServer.h>
|
2016-09-21 23:23:18 +02:00
|
|
|
#include <ESP8266HTTPUpdateServer.h>
|
2016-09-11 23:07:18 +02:00
|
|
|
#include <ESP8266mDNS.h>
|
|
|
|
#include <EEPROM.h>
|
|
|
|
#include <Hash.h>
|
|
|
|
#include <NeoPixelBus.h>
|
|
|
|
#include <FS.h>
|
2016-11-27 22:37:51 +01:00
|
|
|
#include <WiFiUDP.h>
|
2016-09-11 23:07:18 +02:00
|
|
|
|
2016-09-20 22:21:44 +02:00
|
|
|
/*
|
|
|
|
* @title WLED project sketch
|
|
|
|
* @version 0.3pd
|
|
|
|
* @author Christian Schwinne
|
|
|
|
*/
|
2016-10-25 22:11:04 +02:00
|
|
|
//Default CONFIG
|
2016-09-11 23:07:18 +02:00
|
|
|
String clientssid = "Your_Network_Here";
|
|
|
|
String clientpass = "Dummy_Pass";
|
|
|
|
String cmdns = "led";
|
|
|
|
String apssid = "WLED-AP";
|
|
|
|
String appass = "wled1234";
|
2016-11-19 19:12:57 +01:00
|
|
|
uint8_t apchannel = 1;
|
|
|
|
uint8_t aphide = 0;
|
2016-09-11 23:07:18 +02:00
|
|
|
boolean useap = true;
|
|
|
|
IPAddress staticip(0, 0, 0, 0);
|
|
|
|
IPAddress staticgateway(0, 0, 0, 0);
|
|
|
|
IPAddress staticsubnet(255, 255, 255, 0);
|
2016-09-14 22:32:57 +02:00
|
|
|
byte col[]{255, 127, 0};
|
2016-10-25 22:11:04 +02:00
|
|
|
boolean fadeTransition = true;
|
|
|
|
boolean seqTransition = false;
|
2016-10-30 16:26:17 +01:00
|
|
|
uint16_t transitionDelay = 1500;
|
2016-11-20 01:47:15 +01:00
|
|
|
boolean ota_lock = true;
|
|
|
|
String otapass = "wledota";
|
2016-09-14 22:32:57 +02:00
|
|
|
boolean only_ap = false;
|
2016-11-19 19:12:57 +01:00
|
|
|
uint8_t led_amount = 16;
|
|
|
|
uint8_t buttonPin = 3; //needs pull-up
|
2016-10-30 20:04:39 +01:00
|
|
|
boolean buttonEnabled = true;
|
2016-11-26 19:34:05 +01:00
|
|
|
boolean notifyDirect = true, notifyButton = true, notifyForward = true, notifyNightlight = false;
|
2016-11-03 22:07:07 +01:00
|
|
|
boolean receiveNotifications = true;
|
|
|
|
uint8_t bri_n = 100;
|
2016-11-19 19:12:57 +01:00
|
|
|
uint8_t nightlightDelayMins = 60;
|
|
|
|
boolean nightlightFade = true;
|
2016-11-27 22:37:51 +01:00
|
|
|
unsigned int udpPort = 21324;
|
2016-11-19 19:12:57 +01:00
|
|
|
|
2016-11-27 16:45:54 +01:00
|
|
|
double transitionResolution = 0.011;
|
2016-10-25 22:11:04 +02:00
|
|
|
|
|
|
|
//Internal vars
|
|
|
|
byte col_old[]{0, 0, 0};
|
|
|
|
byte col_t[]{0, 0, 0};
|
2016-11-20 00:07:04 +01:00
|
|
|
byte col_it[]{0, 0, 0};
|
2016-10-25 22:11:04 +02:00
|
|
|
long transitionStartTime;
|
2016-11-19 19:12:57 +01:00
|
|
|
long nightlightStartTime;
|
2016-11-19 19:39:17 +01:00
|
|
|
float tper_last = 0;
|
2016-10-25 22:11:04 +02:00
|
|
|
byte bri = 127;
|
|
|
|
byte bri_old = 0;
|
|
|
|
byte bri_t = 0;
|
2016-11-20 00:07:04 +01:00
|
|
|
byte bri_it = 0;
|
2016-10-30 20:04:39 +01:00
|
|
|
byte bri_last = 127;
|
2016-10-25 22:11:04 +02:00
|
|
|
boolean transitionActive = false;
|
2016-10-30 20:04:39 +01:00
|
|
|
boolean buttonPressedBefore = false;
|
2016-11-19 19:12:57 +01:00
|
|
|
boolean nightlightActive = false;
|
2016-11-26 19:34:05 +01:00
|
|
|
boolean nightlightActive_old = false;
|
|
|
|
int transitionDelay_old;
|
2016-11-27 16:45:54 +01:00
|
|
|
long nightlightPassedTime = 0;
|
|
|
|
int nightlightDelayMs;
|
2016-11-27 22:37:51 +01:00
|
|
|
boolean udpConnected = false;
|
|
|
|
byte notifierBuffer[16];
|
2016-10-25 22:11:04 +02:00
|
|
|
|
|
|
|
NeoPixelBus<NeoGrbFeature, NeoEsp8266Uart800KbpsMethod> strip(led_amount, 1);
|
2016-09-11 23:07:18 +02:00
|
|
|
|
|
|
|
ESP8266WebServer server(80);
|
2016-09-21 23:23:18 +02:00
|
|
|
ESP8266HTTPUpdateServer httpUpdater;
|
2016-11-27 22:37:51 +01:00
|
|
|
WiFiUDP notifierUdp;
|
2016-09-21 23:23:18 +02:00
|
|
|
|
2016-09-11 23:07:18 +02:00
|
|
|
File fsUploadFile;
|
|
|
|
|
|
|
|
void down()
|
|
|
|
{
|
2016-10-25 22:11:04 +02:00
|
|
|
bri_t = 0;
|
|
|
|
setAllLeds();
|
2016-09-11 23:07:18 +02:00
|
|
|
Serial.println("MODULE TERMINATED");
|
|
|
|
while (1) {delay(1000);}
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset()
|
|
|
|
{
|
2016-10-25 22:11:04 +02:00
|
|
|
bri_t = 0;
|
|
|
|
setAllLeds();
|
2016-09-11 23:07:18 +02:00
|
|
|
Serial.println("MODULE RESET");
|
|
|
|
ESP.reset();
|
|
|
|
}
|
|
|
|
|
2016-10-30 16:26:17 +01:00
|
|
|
uint8_t bool2int(boolean value)
|
|
|
|
{
|
|
|
|
if (value) return 1;
|
|
|
|
return 0;
|
2016-09-11 23:07:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void setup() {
|
2016-11-19 19:39:17 +01:00
|
|
|
wledInit();
|
2016-09-11 23:07:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
server.handleClient();
|
2016-11-27 22:37:51 +01:00
|
|
|
handleNotifications();
|
2016-10-25 22:11:04 +02:00
|
|
|
handleTransitions();
|
2016-11-19 19:12:57 +01:00
|
|
|
handleNightlight();
|
2016-10-30 20:04:39 +01:00
|
|
|
handleButton();
|
2016-09-11 23:07:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|