WLED/wled00/wled00.ino

115 wiersze
2.4 KiB
Arduino
Czysty Zwykły widok Historia

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