mirror of
https://github.com/wled/WLED.git
synced 2025-04-25 07:17:18 +00:00
Adding backwards compatibility.
This commit is contained in:
parent
77d8a8e43d
commit
e70e1b8ad7
@ -1,257 +1,257 @@
|
|||||||
#ifndef WLED_FCN_DECLARE_H
|
#ifndef WLED_FCN_DECLARE_H
|
||||||
#define WLED_FCN_DECLARE_H
|
#define WLED_FCN_DECLARE_H
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include "src/dependencies/espalexa/EspalexaDevice.h"
|
#include "src/dependencies/espalexa/EspalexaDevice.h"
|
||||||
#include "src/dependencies/e131/ESPAsyncE131.h"
|
#include "src/dependencies/e131/ESPAsyncE131.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* All globally accessible functions are declared here
|
* All globally accessible functions are declared here
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//alexa.cpp
|
//alexa.cpp
|
||||||
void onAlexaChange(EspalexaDevice* dev);
|
void onAlexaChange(EspalexaDevice* dev);
|
||||||
void alexaInit();
|
void alexaInit();
|
||||||
void handleAlexa();
|
void handleAlexa();
|
||||||
void onAlexaChange(EspalexaDevice* dev);
|
void onAlexaChange(EspalexaDevice* dev);
|
||||||
|
|
||||||
//blynk.cpp
|
//blynk.cpp
|
||||||
void initBlynk(const char* auth, const char* host, uint16_t port);
|
void initBlynk(const char* auth, const char* host, uint16_t port);
|
||||||
void handleBlynk();
|
void handleBlynk();
|
||||||
void updateBlynk();
|
void updateBlynk();
|
||||||
|
|
||||||
//button.cpp
|
//button.cpp
|
||||||
void shortPressAction();
|
void shortPressAction();
|
||||||
bool isButtonPressed();
|
bool isButtonPressed();
|
||||||
void handleButton();
|
void handleButton();
|
||||||
void handleIO();
|
void handleIO();
|
||||||
|
|
||||||
//cfg.cpp
|
//cfg.cpp
|
||||||
void deserializeConfig();
|
void deserializeConfig();
|
||||||
bool deserializeConfigSec();
|
bool deserializeConfigSec();
|
||||||
void serializeConfig();
|
void serializeConfig();
|
||||||
void serializeConfigSec();
|
void serializeConfigSec();
|
||||||
|
|
||||||
//colors.cpp
|
//colors.cpp
|
||||||
void colorFromUint32(uint32_t in, bool secondary = false);
|
void colorFromUint32(uint32_t in, bool secondary = false);
|
||||||
void colorFromUint24(uint32_t in, bool secondary = false);
|
void colorFromUint24(uint32_t in, bool secondary = false);
|
||||||
uint32_t colorFromRgbw(byte* rgbw);
|
uint32_t colorFromRgbw(byte* rgbw);
|
||||||
void relativeChangeWhite(int8_t amount, byte lowerBoundary = 0);
|
void relativeChangeWhite(int8_t amount, byte lowerBoundary = 0);
|
||||||
void colorHStoRGB(uint16_t hue, byte sat, byte* rgb); //hue, sat to rgb
|
void colorHStoRGB(uint16_t hue, byte sat, byte* rgb); //hue, sat to rgb
|
||||||
void colorKtoRGB(uint16_t kelvin, byte* rgb);
|
void colorKtoRGB(uint16_t kelvin, byte* rgb);
|
||||||
void colorCTtoRGB(uint16_t mired, byte* rgb); //white spectrum to rgb
|
void colorCTtoRGB(uint16_t mired, byte* rgb); //white spectrum to rgb
|
||||||
|
|
||||||
void colorXYtoRGB(float x, float y, byte* rgb); // only defined if huesync disabled TODO
|
void colorXYtoRGB(float x, float y, byte* rgb); // only defined if huesync disabled TODO
|
||||||
void colorRGBtoXY(byte* rgb, float* xy); // only defined if huesync disabled TODO
|
void colorRGBtoXY(byte* rgb, float* xy); // only defined if huesync disabled TODO
|
||||||
|
|
||||||
void colorFromDecOrHexString(byte* rgb, char* in);
|
void colorFromDecOrHexString(byte* rgb, char* in);
|
||||||
bool colorFromHexString(byte* rgb, const char* in);
|
bool colorFromHexString(byte* rgb, const char* in);
|
||||||
void colorRGBtoRGBW(byte* rgb); //rgb to rgbw (http://codewelt.com/rgbw). (RGBW_MODE_LEGACY)
|
void colorRGBtoRGBW(byte* rgb); //rgb to rgbw (http://codewelt.com/rgbw). (RGBW_MODE_LEGACY)
|
||||||
|
|
||||||
//dmx.cpp
|
//dmx.cpp
|
||||||
void initDMX();
|
void initDMX();
|
||||||
void handleDMX();
|
void handleDMX();
|
||||||
|
|
||||||
//e131.cpp
|
//e131.cpp
|
||||||
void handleE131Packet(e131_packet_t* p, IPAddress clientIP, byte protocol);
|
void handleE131Packet(e131_packet_t* p, IPAddress clientIP, byte protocol);
|
||||||
|
|
||||||
//file.cpp
|
//file.cpp
|
||||||
bool handleFileRead(AsyncWebServerRequest*, String path);
|
bool handleFileRead(AsyncWebServerRequest*, String path);
|
||||||
bool writeObjectToFileUsingId(const char* file, uint16_t id, JsonDocument* content);
|
bool writeObjectToFileUsingId(const char* file, uint16_t id, JsonDocument* content);
|
||||||
bool writeObjectToFile(const char* file, const char* key, JsonDocument* content);
|
bool writeObjectToFile(const char* file, const char* key, JsonDocument* content);
|
||||||
bool readObjectFromFileUsingId(const char* file, uint16_t id, JsonDocument* dest);
|
bool readObjectFromFileUsingId(const char* file, uint16_t id, JsonDocument* dest);
|
||||||
bool readObjectFromFile(const char* file, const char* key, JsonDocument* dest);
|
bool readObjectFromFile(const char* file, const char* key, JsonDocument* dest);
|
||||||
void updateFSInfo();
|
void updateFSInfo();
|
||||||
void closeFile();
|
void closeFile();
|
||||||
|
|
||||||
//hue.cpp
|
//hue.cpp
|
||||||
void handleHue();
|
void handleHue();
|
||||||
void reconnectHue();
|
void reconnectHue();
|
||||||
void onHueError(void* arg, AsyncClient* client, int8_t error);
|
void onHueError(void* arg, AsyncClient* client, int8_t error);
|
||||||
void onHueConnect(void* arg, AsyncClient* client);
|
void onHueConnect(void* arg, AsyncClient* client);
|
||||||
void sendHuePoll();
|
void sendHuePoll();
|
||||||
void onHueData(void* arg, AsyncClient* client, void *data, size_t len);
|
void onHueData(void* arg, AsyncClient* client, void *data, size_t len);
|
||||||
|
|
||||||
//ir.cpp
|
//ir.cpp
|
||||||
bool decodeIRCustom(uint32_t code);
|
bool decodeIRCustom(uint32_t code);
|
||||||
void applyRepeatActions();
|
void applyRepeatActions();
|
||||||
void relativeChange(byte* property, int8_t amount, byte lowerBoundary = 0, byte higherBoundary = 0xFF);
|
void relativeChange(byte* property, int8_t amount, byte lowerBoundary = 0, byte higherBoundary = 0xFF);
|
||||||
void changeEffectSpeed(int8_t amount);
|
void changeEffectSpeed(int8_t amount);
|
||||||
void changeEffectIntensity(int8_t amount);
|
void changeEffectIntensity(int8_t amount);
|
||||||
void decodeIR(uint32_t code);
|
void decodeIR(uint32_t code);
|
||||||
void decodeIR24(uint32_t code);
|
void decodeIR24(uint32_t code);
|
||||||
void decodeIR24OLD(uint32_t code);
|
void decodeIR24OLD(uint32_t code);
|
||||||
void decodeIR24CT(uint32_t code);
|
void decodeIR24CT(uint32_t code);
|
||||||
void decodeIR40(uint32_t code);
|
void decodeIR40(uint32_t code);
|
||||||
void decodeIR44(uint32_t code);
|
void decodeIR44(uint32_t code);
|
||||||
void decodeIR21(uint32_t code);
|
void decodeIR21(uint32_t code);
|
||||||
void decodeIR6(uint32_t code);
|
void decodeIR6(uint32_t code);
|
||||||
void decodeIR9(uint32_t code);
|
void decodeIR9(uint32_t code);
|
||||||
|
|
||||||
void initIR();
|
void initIR();
|
||||||
void handleIR();
|
void handleIR();
|
||||||
|
|
||||||
//json.cpp
|
//json.cpp
|
||||||
#include "ESPAsyncWebServer.h"
|
#include "ESPAsyncWebServer.h"
|
||||||
#include "src/dependencies/json/ArduinoJson-v6.h"
|
#include "src/dependencies/json/ArduinoJson-v6.h"
|
||||||
#include "src/dependencies/json/AsyncJson-v6.h"
|
#include "src/dependencies/json/AsyncJson-v6.h"
|
||||||
#include "FX.h"
|
#include "FX.h"
|
||||||
|
|
||||||
void deserializeSegment(JsonObject elem, byte it);
|
void deserializeSegment(JsonObject elem, byte it);
|
||||||
uint8_t deserializeState(JsonObject root);
|
bool deserializeState(JsonObject root);
|
||||||
void serializeSegment(JsonObject& root, WS2812FX::Segment& seg, byte id, bool forPreset = false, bool segmentBounds = true, uint8_t versionAPI = 1);
|
void serializeSegment(JsonObject& root, WS2812FX::Segment& seg, byte id, bool forPreset = false, bool segmentBounds = true, uint8_t versionAPI = 1);
|
||||||
void serializeState(JsonObject root, bool forPreset = false, bool includeBri = true, bool segmentBounds = true);
|
void serializeState(JsonObject root, bool forPreset = false, bool includeBri = true, bool segmentBounds = true);
|
||||||
void serializeInfo(JsonObject root);
|
void serializeInfo(JsonObject root);
|
||||||
void serveJson(AsyncWebServerRequest* request, uint8_t versionAPI = 1);
|
void serveJson(AsyncWebServerRequest* request, uint8_t versionAPI = 1);
|
||||||
bool serveLiveLeds(AsyncWebServerRequest* request, uint32_t wsClient = 0);
|
bool serveLiveLeds(AsyncWebServerRequest* request, uint32_t wsClient = 0);
|
||||||
|
|
||||||
//led.cpp
|
//led.cpp
|
||||||
void setValuesFromMainSeg();
|
void setValuesFromMainSeg();
|
||||||
void resetTimebase();
|
void resetTimebase();
|
||||||
void toggleOnOff();
|
void toggleOnOff();
|
||||||
void setAllLeds();
|
void setAllLeds();
|
||||||
void setLedsStandard();
|
void setLedsStandard();
|
||||||
bool colorChanged();
|
bool colorChanged();
|
||||||
void colorUpdated(int callMode);
|
void colorUpdated(int callMode);
|
||||||
void updateInterfaces(uint8_t callMode);
|
void updateInterfaces(uint8_t callMode);
|
||||||
void handleTransitions();
|
void handleTransitions();
|
||||||
void handleNightlight();
|
void handleNightlight();
|
||||||
byte scaledBri(byte in);
|
byte scaledBri(byte in);
|
||||||
|
|
||||||
//lx_parser.cpp
|
//lx_parser.cpp
|
||||||
bool parseLx(int lxValue, byte* rgbw);
|
bool parseLx(int lxValue, byte* rgbw);
|
||||||
void parseLxJson(int lxValue, byte segId, bool secondary);
|
void parseLxJson(int lxValue, byte segId, bool secondary);
|
||||||
|
|
||||||
//mqtt.cpp
|
//mqtt.cpp
|
||||||
bool initMqtt();
|
bool initMqtt();
|
||||||
void publishMqtt();
|
void publishMqtt();
|
||||||
|
|
||||||
//ntp.cpp
|
//ntp.cpp
|
||||||
void handleNetworkTime();
|
void handleNetworkTime();
|
||||||
void sendNTPPacket();
|
void sendNTPPacket();
|
||||||
bool checkNTPResponse();
|
bool checkNTPResponse();
|
||||||
void updateLocalTime();
|
void updateLocalTime();
|
||||||
void getTimeString(char* out);
|
void getTimeString(char* out);
|
||||||
bool checkCountdown();
|
bool checkCountdown();
|
||||||
void setCountdown();
|
void setCountdown();
|
||||||
byte weekdayMondayFirst();
|
byte weekdayMondayFirst();
|
||||||
void checkTimers();
|
void checkTimers();
|
||||||
void calculateSunriseAndSunset();
|
void calculateSunriseAndSunset();
|
||||||
|
|
||||||
//overlay.cpp
|
//overlay.cpp
|
||||||
void initCronixie();
|
void initCronixie();
|
||||||
void handleOverlays();
|
void handleOverlays();
|
||||||
void handleOverlayDraw();
|
void handleOverlayDraw();
|
||||||
void _overlayAnalogCountdown();
|
void _overlayAnalogCountdown();
|
||||||
void _overlayAnalogClock();
|
void _overlayAnalogClock();
|
||||||
|
|
||||||
byte getSameCodeLength(char code, int index, char const cronixieDisplay[]);
|
byte getSameCodeLength(char code, int index, char const cronixieDisplay[]);
|
||||||
void setCronixie();
|
void setCronixie();
|
||||||
void _overlayCronixie();
|
void _overlayCronixie();
|
||||||
void _drawOverlayCronixie();
|
void _drawOverlayCronixie();
|
||||||
|
|
||||||
//playlist.cpp
|
//playlist.cpp
|
||||||
void shufflePlaylist();
|
void shufflePlaylist();
|
||||||
void unloadPlaylist();
|
void unloadPlaylist();
|
||||||
void loadPlaylist(JsonObject playlistObject);
|
void loadPlaylist(JsonObject playlistObject);
|
||||||
void handlePlaylist();
|
void handlePlaylist();
|
||||||
|
|
||||||
//presets.cpp
|
//presets.cpp
|
||||||
bool applyPreset(byte index);
|
bool applyPreset(byte index);
|
||||||
void savePreset(byte index, bool persist = true, const char* pname = nullptr, JsonObject saveobj = JsonObject());
|
void savePreset(byte index, bool persist = true, const char* pname = nullptr, JsonObject saveobj = JsonObject());
|
||||||
void deletePreset(byte index);
|
void deletePreset(byte index);
|
||||||
|
|
||||||
//set.cpp
|
//set.cpp
|
||||||
void _setRandomColor(bool _sec,bool fromButton=false);
|
void _setRandomColor(bool _sec,bool fromButton=false);
|
||||||
bool isAsterisksOnly(const char* str, byte maxLen);
|
bool isAsterisksOnly(const char* str, byte maxLen);
|
||||||
void handleSettingsSet(AsyncWebServerRequest *request, byte subPage);
|
void handleSettingsSet(AsyncWebServerRequest *request, byte subPage);
|
||||||
bool handleSet(AsyncWebServerRequest *request, const String& req, bool apply=true);
|
bool handleSet(AsyncWebServerRequest *request, const String& req, bool apply=true);
|
||||||
int getNumVal(const String* req, uint16_t pos);
|
int getNumVal(const String* req, uint16_t pos);
|
||||||
bool updateVal(const String* req, const char* key, byte* val, byte minv=0, byte maxv=255);
|
bool updateVal(const String* req, const char* key, byte* val, byte minv=0, byte maxv=255);
|
||||||
|
|
||||||
//udp.cpp
|
//udp.cpp
|
||||||
void notify(byte callMode, bool followUp=false);
|
void notify(byte callMode, bool followUp=false);
|
||||||
void realtimeLock(uint32_t timeoutMs, byte md = REALTIME_MODE_GENERIC);
|
void realtimeLock(uint32_t timeoutMs, byte md = REALTIME_MODE_GENERIC);
|
||||||
void handleNotifications();
|
void handleNotifications();
|
||||||
void setRealtimePixel(uint16_t i, byte r, byte g, byte b, byte w);
|
void setRealtimePixel(uint16_t i, byte r, byte g, byte b, byte w);
|
||||||
void refreshNodeList();
|
void refreshNodeList();
|
||||||
void sendSysInfoUDP();
|
void sendSysInfoUDP();
|
||||||
|
|
||||||
//um_manager.cpp
|
//um_manager.cpp
|
||||||
class Usermod {
|
class Usermod {
|
||||||
public:
|
public:
|
||||||
virtual void loop() {}
|
virtual void loop() {}
|
||||||
virtual void setup() {}
|
virtual void setup() {}
|
||||||
virtual void connected() {}
|
virtual void connected() {}
|
||||||
virtual void addToJsonState(JsonObject& obj) {}
|
virtual void addToJsonState(JsonObject& obj) {}
|
||||||
virtual void addToJsonInfo(JsonObject& obj) {}
|
virtual void addToJsonInfo(JsonObject& obj) {}
|
||||||
virtual void readFromJsonState(JsonObject& obj) {}
|
virtual void readFromJsonState(JsonObject& obj) {}
|
||||||
virtual void addToConfig(JsonObject& obj) {}
|
virtual void addToConfig(JsonObject& obj) {}
|
||||||
virtual void readFromConfig(JsonObject& obj) {}
|
virtual void readFromConfig(JsonObject& obj) {}
|
||||||
virtual uint16_t getId() {return USERMOD_ID_UNSPECIFIED;}
|
virtual uint16_t getId() {return USERMOD_ID_UNSPECIFIED;}
|
||||||
};
|
};
|
||||||
|
|
||||||
class UsermodManager {
|
class UsermodManager {
|
||||||
private:
|
private:
|
||||||
Usermod* ums[WLED_MAX_USERMODS];
|
Usermod* ums[WLED_MAX_USERMODS];
|
||||||
byte numMods = 0;
|
byte numMods = 0;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void loop();
|
void loop();
|
||||||
|
|
||||||
void setup();
|
void setup();
|
||||||
void connected();
|
void connected();
|
||||||
|
|
||||||
void addToJsonState(JsonObject& obj);
|
void addToJsonState(JsonObject& obj);
|
||||||
void addToJsonInfo(JsonObject& obj);
|
void addToJsonInfo(JsonObject& obj);
|
||||||
void readFromJsonState(JsonObject& obj);
|
void readFromJsonState(JsonObject& obj);
|
||||||
|
|
||||||
void addToConfig(JsonObject& obj);
|
void addToConfig(JsonObject& obj);
|
||||||
void readFromConfig(JsonObject& obj);
|
void readFromConfig(JsonObject& obj);
|
||||||
|
|
||||||
bool add(Usermod* um);
|
bool add(Usermod* um);
|
||||||
Usermod* lookup(uint16_t mod_id);
|
Usermod* lookup(uint16_t mod_id);
|
||||||
byte getModCount();
|
byte getModCount();
|
||||||
};
|
};
|
||||||
|
|
||||||
//usermods_list.cpp
|
//usermods_list.cpp
|
||||||
void registerUsermods();
|
void registerUsermods();
|
||||||
|
|
||||||
//usermod.cpp
|
//usermod.cpp
|
||||||
void userSetup();
|
void userSetup();
|
||||||
void userConnected();
|
void userConnected();
|
||||||
void userLoop();
|
void userLoop();
|
||||||
|
|
||||||
//wled_eeprom.cpp
|
//wled_eeprom.cpp
|
||||||
void applyMacro(byte index);
|
void applyMacro(byte index);
|
||||||
void deEEP();
|
void deEEP();
|
||||||
void deEEPSettings();
|
void deEEPSettings();
|
||||||
void clearEEPROM();
|
void clearEEPROM();
|
||||||
|
|
||||||
//wled_serial.cpp
|
//wled_serial.cpp
|
||||||
void handleSerial();
|
void handleSerial();
|
||||||
|
|
||||||
//wled_server.cpp
|
//wled_server.cpp
|
||||||
bool isIp(String str);
|
bool isIp(String str);
|
||||||
bool captivePortal(AsyncWebServerRequest *request);
|
bool captivePortal(AsyncWebServerRequest *request);
|
||||||
void initServer();
|
void initServer();
|
||||||
void serveIndexOrWelcome(AsyncWebServerRequest *request);
|
void serveIndexOrWelcome(AsyncWebServerRequest *request);
|
||||||
void serveIndex(AsyncWebServerRequest* request);
|
void serveIndex(AsyncWebServerRequest* request);
|
||||||
String msgProcessor(const String& var);
|
String msgProcessor(const String& var);
|
||||||
void serveMessage(AsyncWebServerRequest* request, uint16_t code, const String& headl, const String& subl="", byte optionT=255);
|
void serveMessage(AsyncWebServerRequest* request, uint16_t code, const String& headl, const String& subl="", byte optionT=255);
|
||||||
String settingsProcessor(const String& var);
|
String settingsProcessor(const String& var);
|
||||||
String dmxProcessor(const String& var);
|
String dmxProcessor(const String& var);
|
||||||
void serveSettings(AsyncWebServerRequest* request, bool post = false);
|
void serveSettings(AsyncWebServerRequest* request, bool post = false);
|
||||||
|
|
||||||
//ws.cpp
|
//ws.cpp
|
||||||
void handleWs();
|
void handleWs();
|
||||||
void wsEvent(AsyncWebSocket * server, AsyncWebSocketClient * client, AwsEventType type, void * arg, uint8_t *data, size_t len);
|
void wsEvent(AsyncWebSocket * server, AsyncWebSocketClient * client, AwsEventType type, void * arg, uint8_t *data, size_t len);
|
||||||
void sendDataWs(AsyncWebSocketClient * client = nullptr);
|
void sendDataWs(AsyncWebSocketClient * client = nullptr);
|
||||||
|
|
||||||
//xml.cpp
|
//xml.cpp
|
||||||
void XML_response(AsyncWebServerRequest *request, char* dest = nullptr);
|
void XML_response(AsyncWebServerRequest *request, char* dest = nullptr);
|
||||||
void URL_response(AsyncWebServerRequest *request);
|
void URL_response(AsyncWebServerRequest *request);
|
||||||
void sappend(char stype, const char* key, int val);
|
void sappend(char stype, const char* key, int val);
|
||||||
void sappends(char stype, const char* key, char* val);
|
void sappends(char stype, const char* key, char* val);
|
||||||
void getSettingsJS(byte subPage, char* dest);
|
void getSettingsJS(byte subPage, char* dest);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -165,11 +165,10 @@ void deserializeSegment(JsonObject elem, byte it)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t deserializeState(JsonObject root)
|
bool deserializeState(JsonObject root)
|
||||||
{
|
{
|
||||||
strip.applyToAllSelected = false;
|
strip.applyToAllSelected = false;
|
||||||
bool stateResponse = root[F("v")] | false;
|
bool stateResponse = root[F("v")] | false;
|
||||||
uint8_t versionAPI = root["rev"] | 1;
|
|
||||||
|
|
||||||
bri = root["bri"] | bri;
|
bri = root["bri"] | bri;
|
||||||
|
|
||||||
@ -279,7 +278,7 @@ uint8_t deserializeState(JsonObject root)
|
|||||||
deletePreset(ps);
|
deletePreset(ps);
|
||||||
}
|
}
|
||||||
ps = root["ps"] | -1; //load preset (clears state request!)
|
ps = root["ps"] | -1; //load preset (clears state request!)
|
||||||
if (ps >= 0) {applyPreset(ps); return stateResponse ? versionAPI : 0;}
|
if (ps >= 0) {applyPreset(ps); return stateResponse;}
|
||||||
|
|
||||||
//HTTP API commands
|
//HTTP API commands
|
||||||
const char* httpwin = root["win"];
|
const char* httpwin = root["win"];
|
||||||
@ -298,7 +297,7 @@ uint8_t deserializeState(JsonObject root)
|
|||||||
|
|
||||||
colorUpdated(noNotification ? NOTIFIER_CALL_MODE_NO_NOTIFY : NOTIFIER_CALL_MODE_DIRECT_CHANGE);
|
colorUpdated(noNotification ? NOTIFIER_CALL_MODE_NO_NOTIFY : NOTIFIER_CALL_MODE_DIRECT_CHANGE);
|
||||||
|
|
||||||
return stateResponse ? versionAPI : 0;
|
return stateResponse;
|
||||||
}
|
}
|
||||||
|
|
||||||
void serializeSegment(JsonObject& root, WS2812FX::Segment& seg, byte id, bool forPreset, bool segmentBounds, uint8_t versionAPI)
|
void serializeSegment(JsonObject& root, WS2812FX::Segment& seg, byte id, bool forPreset, bool segmentBounds, uint8_t versionAPI)
|
||||||
|
@ -83,7 +83,8 @@ void initServer()
|
|||||||
});
|
});
|
||||||
|
|
||||||
AsyncCallbackJsonWebHandler* handler = new AsyncCallbackJsonWebHandler("/json", [](AsyncWebServerRequest *request) {
|
AsyncCallbackJsonWebHandler* handler = new AsyncCallbackJsonWebHandler("/json", [](AsyncWebServerRequest *request) {
|
||||||
uint8_t vAPI = 0;
|
bool verboseResponse = false;
|
||||||
|
uint8_t vAPI = 1;
|
||||||
{ //scope JsonDocument so it releases its buffer
|
{ //scope JsonDocument so it releases its buffer
|
||||||
DynamicJsonDocument jsonBuffer(JSON_BUFFER_SIZE);
|
DynamicJsonDocument jsonBuffer(JSON_BUFFER_SIZE);
|
||||||
DeserializationError error = deserializeJson(jsonBuffer, (uint8_t*)(request->_tempObject));
|
DeserializationError error = deserializeJson(jsonBuffer, (uint8_t*)(request->_tempObject));
|
||||||
@ -91,11 +92,15 @@ void initServer()
|
|||||||
if (error || root.isNull()) {
|
if (error || root.isNull()) {
|
||||||
request->send(400, "application/json", F("{\"error\":9}")); return;
|
request->send(400, "application/json", F("{\"error\":9}")); return;
|
||||||
}
|
}
|
||||||
|
if (root.containsKey("rev"))
|
||||||
|
{
|
||||||
|
vAPI = root["rev"] | 1;
|
||||||
|
}
|
||||||
fileDoc = &jsonBuffer; // used for applying presets (presets.cpp)
|
fileDoc = &jsonBuffer; // used for applying presets (presets.cpp)
|
||||||
vAPI = deserializeState(root);
|
verboseResponse = deserializeState(root);
|
||||||
fileDoc = nullptr;
|
fileDoc = nullptr;
|
||||||
}
|
}
|
||||||
if (vAPI>0) { //if JSON contains "v"
|
if (verboseResponse) { //if JSON contains "v"
|
||||||
serveJson(request,vAPI); return;
|
serveJson(request,vAPI); return;
|
||||||
}
|
}
|
||||||
request->send(200, "application/json", F("{\"success\":true}"));
|
request->send(200, "application/json", F("{\"success\":true}"));
|
||||||
|
264
wled00/ws.cpp
264
wled00/ws.cpp
@ -1,117 +1,149 @@
|
|||||||
#include "wled.h"
|
#include "wled.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* WebSockets server for bidirectional communication
|
* WebSockets server for bidirectional communication
|
||||||
*/
|
*/
|
||||||
#ifdef WLED_ENABLE_WEBSOCKETS
|
#ifdef WLED_ENABLE_WEBSOCKETS
|
||||||
|
|
||||||
uint16_t wsLiveClientId = 0;
|
uint16_t wsLiveClientId = 0;
|
||||||
unsigned long wsLastLiveTime = 0;
|
unsigned long wsLastLiveTime = 0;
|
||||||
//uint8_t* wsFrameBuffer = nullptr;
|
//uint8_t* wsFrameBuffer = nullptr;
|
||||||
uint8_t vAPI = 2;
|
uint8_t vAPI = 2;
|
||||||
|
struct client_api {
|
||||||
#define WS_LIVE_INTERVAL 40
|
uint32_t c = 0;
|
||||||
|
uint8_t vAPI = 1;
|
||||||
void wsEvent(AsyncWebSocket * server, AsyncWebSocketClient * client, AwsEventType type, void * arg, uint8_t *data, size_t len)
|
} ClientApis[DEFAULT_MAX_WS_CLIENTS];
|
||||||
{
|
|
||||||
if(type == WS_EVT_CONNECT){
|
#define WS_LIVE_INTERVAL 40
|
||||||
//client connected
|
|
||||||
sendDataWs(client);
|
void wsEvent(AsyncWebSocket * server, AsyncWebSocketClient * client, AwsEventType type, void * arg, uint8_t *data, size_t len)
|
||||||
//client->ping();
|
{
|
||||||
} else if(type == WS_EVT_DISCONNECT){
|
if(type == WS_EVT_CONNECT){
|
||||||
//client disconnected
|
//client connected
|
||||||
if (client->id() == wsLiveClientId) wsLiveClientId = 0;
|
for (uint8_t i=0; i<DEFAULT_MAX_WS_CLIENTS; i++) {
|
||||||
} else if(type == WS_EVT_DATA){
|
if (ClientApis[i].c) continue; // used slot
|
||||||
//data packet
|
ClientApis[i].c = client->id();
|
||||||
AwsFrameInfo * info = (AwsFrameInfo*)arg;
|
ClientApis[i].vAPI = 1;
|
||||||
if(info->final && info->index == 0 && info->len == len){
|
DEBUG_PRINTF("New WS client [%d]: %ld\n", (int)i, client->id());
|
||||||
//the whole message is in a single frame and we got all of it's data (max. 1450byte)
|
break;
|
||||||
if(info->opcode == WS_TEXT)
|
}
|
||||||
{
|
sendDataWs(client);
|
||||||
uint8_t verboseResponse = 0;
|
//client->ping();
|
||||||
{ //scope JsonDocument so it releases its buffer
|
} else if(type == WS_EVT_DISCONNECT){
|
||||||
DynamicJsonDocument jsonBuffer(JSON_BUFFER_SIZE);
|
//client disconnected
|
||||||
DeserializationError error = deserializeJson(jsonBuffer, data, len);
|
if (client->id() == wsLiveClientId) wsLiveClientId = 0;
|
||||||
JsonObject root = jsonBuffer.as<JsonObject>();
|
for (uint8_t i=0; i<DEFAULT_MAX_WS_CLIENTS; i++) {
|
||||||
if (error || root.isNull()) return;
|
if (ClientApis[i].c != client->id()) continue;
|
||||||
|
ClientApis[i].c = 0; // clear slot
|
||||||
if (root.containsKey("lv"))
|
ClientApis[i].vAPI = 1;
|
||||||
{
|
DEBUG_PRINTF("Removed WS client [%d]: %ld\n", (int)i, client->id());
|
||||||
wsLiveClientId = root["lv"] ? client->id() : 0;
|
break;
|
||||||
}
|
}
|
||||||
|
} else if(type == WS_EVT_DATA){
|
||||||
verboseResponse = deserializeState(root);
|
//data packet
|
||||||
if (verboseResponse) vAPI = verboseResponse;
|
AwsFrameInfo * info = (AwsFrameInfo*)arg;
|
||||||
}
|
if(info->final && info->index == 0 && info->len == len){
|
||||||
if (verboseResponse || millis() - lastInterfaceUpdate < 1900) sendDataWs(client); //update if it takes longer than 100ms until next "broadcast"
|
//the whole message is in a single frame and we got all of it's data (max. 1450byte)
|
||||||
}
|
if(info->opcode == WS_TEXT)
|
||||||
} else {
|
{
|
||||||
//message is comprised of multiple frames or the frame is split into multiple packets
|
bool verboseResponse = false;
|
||||||
//if(info->index == 0){
|
{ //scope JsonDocument so it releases its buffer
|
||||||
//if (!wsFrameBuffer && len < 4096) wsFrameBuffer = new uint8_t[4096];
|
DynamicJsonDocument jsonBuffer(JSON_BUFFER_SIZE);
|
||||||
//}
|
DeserializationError error = deserializeJson(jsonBuffer, data, len);
|
||||||
|
JsonObject root = jsonBuffer.as<JsonObject>();
|
||||||
//if (wsFrameBuffer && len < 4096 && info->index + info->)
|
if (error || root.isNull()) return;
|
||||||
//{
|
|
||||||
|
if (root.containsKey("lv"))
|
||||||
//}
|
{
|
||||||
|
wsLiveClientId = root["lv"] ? client->id() : 0;
|
||||||
if((info->index + len) == info->len){
|
}
|
||||||
if(info->final){
|
if (root.containsKey("rev"))
|
||||||
if(info->message_opcode == WS_TEXT) {
|
{
|
||||||
client->text(F("{\"error\":9}")); //we do not handle split packets right now
|
for (uint8_t i=0; i<DEFAULT_MAX_WS_CLIENTS; i++) {
|
||||||
}
|
if (ClientApis[i].c != client->id()) continue;
|
||||||
}
|
ClientApis[i].vAPI = root["rev"];
|
||||||
}
|
DEBUG_PRINTF("API for WS client [%d]: %d\n", (int)i, (int)ClientApis[i].vAPI);
|
||||||
}
|
break;
|
||||||
} else if(type == WS_EVT_ERROR){
|
}
|
||||||
//error was received from the other end
|
}
|
||||||
|
verboseResponse = deserializeState(root);
|
||||||
} else if(type == WS_EVT_PONG){
|
}
|
||||||
//pong message was received (in response to a ping request maybe)
|
if (verboseResponse || millis() - lastInterfaceUpdate < 1900) sendDataWs(client); //update if it takes longer than 100ms until next "broadcast"
|
||||||
|
}
|
||||||
}
|
} else {
|
||||||
}
|
//message is comprised of multiple frames or the frame is split into multiple packets
|
||||||
|
//if(info->index == 0){
|
||||||
void sendDataWs(AsyncWebSocketClient * client)
|
//if (!wsFrameBuffer && len < 4096) wsFrameBuffer = new uint8_t[4096];
|
||||||
{
|
//}
|
||||||
if (!ws.count()) return;
|
|
||||||
AsyncWebSocketMessageBuffer * buffer;
|
//if (wsFrameBuffer && len < 4096 && info->index + info->)
|
||||||
|
//{
|
||||||
{ //scope JsonDocument so it releases its buffer
|
|
||||||
DynamicJsonDocument doc(JSON_BUFFER_SIZE);
|
//}
|
||||||
JsonObject state = doc.createNestedObject("state");
|
|
||||||
if (vAPI>1) state["rev"] = 2;
|
if((info->index + len) == info->len){
|
||||||
serializeState(state);
|
if(info->final){
|
||||||
JsonObject info = doc.createNestedObject("info");
|
if(info->message_opcode == WS_TEXT) {
|
||||||
serializeInfo(info);
|
client->text(F("{\"error\":9}")); //we do not handle split packets right now
|
||||||
size_t len = measureJson(doc);
|
}
|
||||||
buffer = ws.makeBuffer(len);
|
}
|
||||||
if (!buffer) return; //out of memory
|
}
|
||||||
|
}
|
||||||
serializeJson(doc, (char *)buffer->get(), len +1);
|
} else if(type == WS_EVT_ERROR){
|
||||||
}
|
//error was received from the other end
|
||||||
if (client) {
|
|
||||||
client->text(buffer);
|
} else if(type == WS_EVT_PONG){
|
||||||
} else {
|
//pong message was received (in response to a ping request maybe)
|
||||||
ws.textAll(buffer);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void handleWs()
|
void sendDataWs(AsyncWebSocketClient * client)
|
||||||
{
|
{
|
||||||
if (millis() - wsLastLiveTime > WS_LIVE_INTERVAL)
|
if (!ws.count()) return;
|
||||||
{
|
AsyncWebSocketMessageBuffer * buffer;
|
||||||
ws.cleanupClients();
|
|
||||||
bool success = true;
|
{ //scope JsonDocument so it releases its buffer
|
||||||
if (wsLiveClientId)
|
DynamicJsonDocument doc(JSON_BUFFER_SIZE);
|
||||||
success = serveLiveLeds(nullptr, wsLiveClientId);
|
JsonObject state = doc.createNestedObject("state");
|
||||||
wsLastLiveTime = millis();
|
if (client) {
|
||||||
if (!success) wsLastLiveTime -= 20; //try again in 20ms if failed due to non-empty WS queue
|
for (uint8_t i=0; i<DEFAULT_MAX_WS_CLIENTS; i++) {
|
||||||
}
|
if (ClientApis[i].c != client->id()) continue;
|
||||||
}
|
state["rev"] = ClientApis[i].vAPI;
|
||||||
|
DEBUG_PRINTF("Actual API used [%d]: %d\n", (int)i, (int)ClientApis[i].vAPI);
|
||||||
#else
|
break;
|
||||||
void handleWs() {}
|
}
|
||||||
void sendDataWs(AsyncWebSocketClient * client) {}
|
}
|
||||||
|
serializeState(state);
|
||||||
|
JsonObject info = doc.createNestedObject("info");
|
||||||
|
serializeInfo(info);
|
||||||
|
size_t len = measureJson(doc);
|
||||||
|
buffer = ws.makeBuffer(len);
|
||||||
|
if (!buffer) return; //out of memory
|
||||||
|
|
||||||
|
serializeJson(doc, (char *)buffer->get(), len +1);
|
||||||
|
}
|
||||||
|
if (client) {
|
||||||
|
client->text(buffer);
|
||||||
|
} else {
|
||||||
|
ws.textAll(buffer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void handleWs()
|
||||||
|
{
|
||||||
|
if (millis() - wsLastLiveTime > WS_LIVE_INTERVAL)
|
||||||
|
{
|
||||||
|
ws.cleanupClients();
|
||||||
|
bool success = true;
|
||||||
|
if (wsLiveClientId)
|
||||||
|
success = serveLiveLeds(nullptr, wsLiveClientId);
|
||||||
|
wsLastLiveTime = millis();
|
||||||
|
if (!success) wsLastLiveTime -= 20; //try again in 20ms if failed due to non-empty WS queue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
void handleWs() {}
|
||||||
|
void sendDataWs(AsyncWebSocketClient * client) {}
|
||||||
#endif
|
#endif
|
Loading…
x
Reference in New Issue
Block a user