|
@@ -8,9 +8,20 @@
|
|
|
|
|
|
Recommend compiling with following board profiles
|
|
Recommend compiling with following board profiles
|
|
- Wemos D1 Mini
|
|
- Wemos D1 Mini
|
|
|
|
+ - CPU Speed: 160Mhz
|
|
|
|
|
|
-
|
|
|
|
|
|
+ CopyRight tobychui, All Right Reserved
|
|
*/
|
|
*/
|
|
|
|
+
|
|
|
|
+/* WiFi and Discovery */
|
|
|
|
+#include <ESP8266WiFi.h>
|
|
|
|
+#include <WiFiManager.h>
|
|
|
|
+#include <ESP8266mDNS.h>
|
|
|
|
+#include <ESP8266WebServer.h>
|
|
|
|
+#include <ArduinoJson.h>
|
|
|
|
+#include "LittleFS.h"
|
|
|
|
+
|
|
|
|
+/* Hardware & Controls */
|
|
#include <Adafruit_NeoPixel.h>
|
|
#include <Adafruit_NeoPixel.h>
|
|
|
|
|
|
// Hardware Configs
|
|
// Hardware Configs
|
|
@@ -21,12 +32,23 @@
|
|
#define BUTTON_COLOR D5
|
|
#define BUTTON_COLOR D5
|
|
#define BUTTON_MINUS D6
|
|
#define BUTTON_MINUS D6
|
|
|
|
|
|
-#define BUTTON_AUTOINC_DELAY 300 //Delay before auto increments
|
|
|
|
-#define BUTTON_HOLD_DELAY 50 //Auto-increment delays
|
|
|
|
-#define BUTTON_DEBOUNCE 50 //Naive debounce delay in ms
|
|
|
|
|
|
+#define BUTTON_AUTOINC_DELAY 500 //Delay before auto increments
|
|
|
|
+#define BUTTON_HOLD_DELAY 70 //Auto-increment delays
|
|
|
|
+#define BUTTON_DEBOUNCE 70 //Naive debounce delay in ms
|
|
#define MAX_BRIGHTNESS 256 //Make sure the battery you using can output the current required by LEDs
|
|
#define MAX_BRIGHTNESS 256 //Make sure the battery you using can output the current required by LEDs
|
|
#define MAX_CTRLBRIGHTNESS 32 //Max brightness for signaling LED (the one above the button)
|
|
#define MAX_CTRLBRIGHTNESS 32 //Max brightness for signaling LED (the one above the button)
|
|
|
|
+#define WHITE_MIN_TEMP 2500 //Min color temperature in white mode
|
|
|
|
+#define WHITE_MAX_TEMP 10000 //Max color temperature in white mode
|
|
|
|
+
|
|
//Runtimes
|
|
//Runtimes
|
|
|
|
+/* Network Settings */
|
|
|
|
+#define DEVICE_NAME "FL1010-RGB"
|
|
|
|
+#define MDNS_NAME "fl1010-rgb"
|
|
|
|
+#define LISTENING_PORT 80
|
|
|
|
+WiFiManager wifiManager;
|
|
|
|
+ESP8266WebServer server(LISTENING_PORT);
|
|
|
|
+String deviceUUID = "";
|
|
|
|
+
|
|
/*
|
|
/*
|
|
Current Mode
|
|
Current Mode
|
|
0 = White Mode (+/- Change the K value of the light)
|
|
0 = White Mode (+/- Change the K value of the light)
|
|
@@ -67,12 +89,14 @@ int adjustingCatergory = 0;
|
|
|
|
|
|
*/
|
|
*/
|
|
int values[] = {0, 0, 0};
|
|
int values[] = {0, 0, 0};
|
|
-int currentCtrlLedRgb[] = {0,0,0};
|
|
|
|
|
|
+int currentCtrlLedRgb[] = {0, 0, 0};
|
|
|
|
+
|
|
|
|
+bool wifiControlMode = false;
|
|
|
|
|
|
Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_LEDS, PIN, NEO_GRB + NEO_KHZ800);
|
|
Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_LEDS, PIN, NEO_GRB + NEO_KHZ800);
|
|
|
|
|
|
//Set the current control LED color
|
|
//Set the current control LED color
|
|
-void setControlLEDColor(int r, int g, int b){
|
|
|
|
|
|
+void setControlLEDColor(int r, int g, int b) {
|
|
currentCtrlLedRgb[0] = r;
|
|
currentCtrlLedRgb[0] = r;
|
|
currentCtrlLedRgb[1] = g;
|
|
currentCtrlLedRgb[1] = g;
|
|
currentCtrlLedRgb[2] = b;
|
|
currentCtrlLedRgb[2] = b;
|
|
@@ -88,6 +112,7 @@ void setLightColor(int r, int g, int b) {
|
|
strip.show();
|
|
strip.show();
|
|
}
|
|
}
|
|
void setup() {
|
|
void setup() {
|
|
|
|
+ //Start Serial
|
|
Serial.begin(115200);
|
|
Serial.begin(115200);
|
|
|
|
|
|
//Set the buttons to input pin
|
|
//Set the buttons to input pin
|
|
@@ -96,11 +121,44 @@ void setup() {
|
|
pinMode(BUTTON_COLOR, INPUT);
|
|
pinMode(BUTTON_COLOR, INPUT);
|
|
pinMode(BUTTON_MINUS, INPUT);
|
|
pinMode(BUTTON_MINUS, INPUT);
|
|
strip.begin();
|
|
strip.begin();
|
|
|
|
+ delay(300);
|
|
|
|
+ setLightColor(0, 0, 0);
|
|
|
|
+
|
|
|
|
+ //Check if mode button is hold. If yes, enter WiFi mode
|
|
|
|
+ int tmp = digitalRead(BUTTON_MODE);
|
|
|
|
+ if (tmp == LOW) {
|
|
|
|
+ //Load device UUID
|
|
|
|
+ deviceUUID = WiFi.macAddress();
|
|
|
|
+ deviceUUID.replace(":", "-");
|
|
|
|
+
|
|
|
|
+ //Setup WiFi
|
|
|
|
+ setControlLEDColor(255, 255, 0); //Yellow
|
|
|
|
+ Serial.println("Entering WiFi Mode");
|
|
|
|
+ wifiManager.autoConnect(DEVICE_NAME);
|
|
|
|
+ if (WiFi.status() == WL_CONNECTED) {
|
|
|
|
+ Serial.println("WiFi Connected");
|
|
|
|
+ setControlLEDColor(0, 32, 0); //Green
|
|
|
|
+ wifiControlMode = true;
|
|
|
|
+
|
|
|
|
+ //Start API service over WiFi
|
|
|
|
+ registerAPI();
|
|
|
|
+ } else {
|
|
|
|
+ Serial.println("Network error. Running in offline mode");
|
|
|
|
+ setControlLEDColor(255, 0, 0); //Red
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ // Initialize all pixels to natural warm white light
|
|
|
|
+ loadWhiteModeDefault();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
- // Initialize all pixels to natural warm white light
|
|
|
|
- loadWhiteModeDefault();
|
|
|
|
}
|
|
}
|
|
|
|
|
|
void loop() {
|
|
void loop() {
|
|
- handleButtonLogic();
|
|
|
|
|
|
+ if (wifiControlMode){
|
|
|
|
+ server.handleClient();
|
|
|
|
+ MDNS.update();
|
|
|
|
+ }else{
|
|
|
|
+ handleButtonLogic();
|
|
|
|
+ }
|
|
}
|
|
}
|