Bus implementation.
Added separate DDP listener. LED settings overhaul. Minor fixes: - reduced LED memory - boot brightness fix - reduced debug frequency - added usermod time spent debug - mDNS glitch fix
This commit is contained in:
parent
46b66c76ef
commit
c1b0877956
@ -10,6 +10,20 @@
|
|||||||
#include "bus_wrapper.h"
|
#include "bus_wrapper.h"
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
|
|
||||||
|
// enable additional debug output
|
||||||
|
#ifdef WLED_DEBUG
|
||||||
|
#ifndef ESP8266
|
||||||
|
#include <rom/rtc.h>
|
||||||
|
#endif
|
||||||
|
#define DEBUG_PRINT(x) Serial.print(x)
|
||||||
|
#define DEBUG_PRINTLN(x) Serial.println(x)
|
||||||
|
#define DEBUG_PRINTF(x...) Serial.printf(x)
|
||||||
|
#else
|
||||||
|
#define DEBUG_PRINT(x)
|
||||||
|
#define DEBUG_PRINTLN(x)
|
||||||
|
#define DEBUG_PRINTF(x...)
|
||||||
|
#endif
|
||||||
|
|
||||||
//temporary struct for passing bus configuration to bus
|
//temporary struct for passing bus configuration to bus
|
||||||
struct BusConfig {
|
struct BusConfig {
|
||||||
uint8_t type = TYPE_WS2812_RGB;
|
uint8_t type = TYPE_WS2812_RGB;
|
||||||
@ -23,7 +37,8 @@ struct BusConfig {
|
|||||||
type = busType; count = len; start = pstart;
|
type = busType; count = len; start = pstart;
|
||||||
colorOrder = pcolorOrder; reversed = rev; skipAmount = skip;
|
colorOrder = pcolorOrder; reversed = rev; skipAmount = skip;
|
||||||
uint8_t nPins = 1;
|
uint8_t nPins = 1;
|
||||||
if (type > 47) nPins = 2;
|
if (type >= 10 && type <= 15) nPins = 4;
|
||||||
|
else if (type > 47) nPins = 2;
|
||||||
else if (type > 40 && type < 46) nPins = NUM_PWM_PINS(type);
|
else if (type > 40 && type < 46) nPins = NUM_PWM_PINS(type);
|
||||||
for (uint8_t i = 0; i < nPins; i++) pins[i] = ppins[i];
|
for (uint8_t i = 0; i < nPins; i++) pins[i] = ppins[i];
|
||||||
}
|
}
|
||||||
@ -74,7 +89,7 @@ class Bus {
|
|||||||
}
|
}
|
||||||
|
|
||||||
virtual uint16_t getLength() {
|
virtual uint16_t getLength() {
|
||||||
return 1;
|
return 1; // is this ok? shouldn't it be 0 in virtual function?
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void setColorOrder() {}
|
virtual void setColorOrder() {}
|
||||||
@ -135,7 +150,7 @@ class BusDigital : public Bus {
|
|||||||
_busPtr = PolyBus::create(_iType, _pins, _len, nr);
|
_busPtr = PolyBus::create(_iType, _pins, _len, nr);
|
||||||
_valid = (_busPtr != nullptr);
|
_valid = (_busPtr != nullptr);
|
||||||
_colorOrder = bc.colorOrder;
|
_colorOrder = bc.colorOrder;
|
||||||
//Serial.printf("Successfully inited strip %u (len %u) with type %u and pins %u,%u (itype %u)\n",nr, len, type, pins[0],pins[1],_iType);
|
DEBUG_PRINTF("Successfully inited strip %u (len %u) with type %u and pins %u,%u (itype %u)\n",nr, len, type, pins[0],pins[1],_iType);
|
||||||
};
|
};
|
||||||
|
|
||||||
inline void show() {
|
inline void show() {
|
||||||
@ -201,7 +216,7 @@ class BusDigital : public Bus {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void cleanup() {
|
void cleanup() {
|
||||||
//Serial.println("Digital Cleanup");
|
DEBUG_PRINTLN("Digital Cleanup");
|
||||||
PolyBus::cleanup(_busPtr, _iType);
|
PolyBus::cleanup(_busPtr, _iType);
|
||||||
_iType = I_NONE;
|
_iType = I_NONE;
|
||||||
_valid = false;
|
_valid = false;
|
||||||
@ -227,6 +242,7 @@ class BusDigital : public Bus {
|
|||||||
class BusPwm : public Bus {
|
class BusPwm : public Bus {
|
||||||
public:
|
public:
|
||||||
BusPwm(BusConfig &bc) : Bus(bc.type, bc.start) {
|
BusPwm(BusConfig &bc) : Bus(bc.type, bc.start) {
|
||||||
|
_valid = false;
|
||||||
if (!IS_PWM(bc.type)) return;
|
if (!IS_PWM(bc.type)) return;
|
||||||
uint8_t numPins = NUM_PWM_PINS(bc.type);
|
uint8_t numPins = NUM_PWM_PINS(bc.type);
|
||||||
|
|
||||||
@ -280,10 +296,12 @@ class BusPwm : public Bus {
|
|||||||
|
|
||||||
//does no index check
|
//does no index check
|
||||||
uint32_t getPixelColor(uint16_t pix) {
|
uint32_t getPixelColor(uint16_t pix) {
|
||||||
|
if (!_valid) return 0;
|
||||||
return ((_data[3] << 24) | (_data[0] << 16) | (_data[1] << 8) | (_data[2]));
|
return ((_data[3] << 24) | (_data[0] << 16) | (_data[1] << 8) | (_data[2]));
|
||||||
}
|
}
|
||||||
|
|
||||||
void show() {
|
void show() {
|
||||||
|
if (!_valid) return;
|
||||||
uint8_t numPins = NUM_PWM_PINS(_type);
|
uint8_t numPins = NUM_PWM_PINS(_type);
|
||||||
for (uint8_t i = 0; i < numPins; i++) {
|
for (uint8_t i = 0; i < numPins; i++) {
|
||||||
uint8_t scaled = (_data[i] * _bri) / 255;
|
uint8_t scaled = (_data[i] * _bri) / 255;
|
||||||
@ -328,13 +346,13 @@ class BusPwm : public Bus {
|
|||||||
void deallocatePins() {
|
void deallocatePins() {
|
||||||
uint8_t numPins = NUM_PWM_PINS(_type);
|
uint8_t numPins = NUM_PWM_PINS(_type);
|
||||||
for (uint8_t i = 0; i < numPins; i++) {
|
for (uint8_t i = 0; i < numPins; i++) {
|
||||||
|
pinManager.deallocatePin(_pins[i], PinOwner::BusPwm);
|
||||||
if (!pinManager.isPinOk(_pins[i])) continue;
|
if (!pinManager.isPinOk(_pins[i])) continue;
|
||||||
#ifdef ESP8266
|
#ifdef ESP8266
|
||||||
digitalWrite(_pins[i], LOW); //turn off PWM interrupt
|
digitalWrite(_pins[i], LOW); //turn off PWM interrupt
|
||||||
#else
|
#else
|
||||||
if (_ledcStart < 16) ledcDetachPin(_pins[i]);
|
if (_ledcStart < 16) ledcDetachPin(_pins[i]);
|
||||||
#endif
|
#endif
|
||||||
pinManager.deallocatePin(_pins[i], PinOwner::BusPwm);
|
|
||||||
}
|
}
|
||||||
#ifdef ARDUINO_ARCH_ESP32
|
#ifdef ARDUINO_ARCH_ESP32
|
||||||
pinManager.deallocateLedc(_ledcStart, numPins);
|
pinManager.deallocateLedc(_ledcStart, numPins);
|
||||||
@ -342,6 +360,133 @@ class BusPwm : public Bus {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
class BusNetwork : public Bus {
|
||||||
|
public:
|
||||||
|
BusNetwork(BusConfig &bc) : Bus(bc.type, bc.start) {
|
||||||
|
_valid = false;
|
||||||
|
// switch (bc.type) {
|
||||||
|
// case TYPE_NET_ARTNET_RGB:
|
||||||
|
// _rgbw = false;
|
||||||
|
// _UDPtype = 2;
|
||||||
|
// break;
|
||||||
|
// case TYPE_NET_E131_RGB:
|
||||||
|
// _rgbw = false;
|
||||||
|
// _UDPtype = 1;
|
||||||
|
// break;
|
||||||
|
// case TYPE_NET_DDP_RGB:
|
||||||
|
// _rgbw = false;
|
||||||
|
// _UDPtype = 0;
|
||||||
|
// break;
|
||||||
|
// default:
|
||||||
|
_rgbw = false;
|
||||||
|
_UDPtype = bc.type - TYPE_NET_DDP_RGB;
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
_UDPchannels = _rgbw ? 4 : 3;
|
||||||
|
//_rgbw |= bc.rgbwOverride; // RGBW override in bit 7 or can have a special type
|
||||||
|
_data = (byte *)malloc(bc.count * _UDPchannels);
|
||||||
|
if (_data == nullptr) return;
|
||||||
|
memset(_data, 0, bc.count * _UDPchannels);
|
||||||
|
_len = bc.count;
|
||||||
|
_colorOrder = bc.colorOrder;
|
||||||
|
_client = IPAddress(bc.pins[0],bc.pins[1],bc.pins[2],bc.pins[3]);
|
||||||
|
_broadcastLock = false;
|
||||||
|
_valid = true;
|
||||||
|
_data2 = (byte *)malloc(_len * _UDPchannels);
|
||||||
|
};
|
||||||
|
|
||||||
|
void setPixelColor(uint16_t pix, uint32_t c) {
|
||||||
|
if (!_valid || pix >= _len) return;
|
||||||
|
uint16_t offset = pix * _UDPchannels;
|
||||||
|
_data[offset] = 0xFF & (c >> 16);
|
||||||
|
_data[offset+1] = 0xFF & (c >> 8);
|
||||||
|
_data[offset+2] = 0xFF & (c );
|
||||||
|
if (_rgbw) _data[offset+3] = 0xFF & (c >> 24);
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t getPixelColor(uint16_t pix) {
|
||||||
|
if (!_valid || pix >= _len) return 0;
|
||||||
|
uint16_t offset = pix * _UDPchannels;
|
||||||
|
// behave as NeoPixelBus
|
||||||
|
return (
|
||||||
|
(_rgbw ? (scale8(_data[offset+3], _bri) << 24) : 0)
|
||||||
|
| (scale8(_data[offset] , _bri) << 16)
|
||||||
|
| (scale8(_data[offset+1], _bri) << 8)
|
||||||
|
| (scale8(_data[offset+2], _bri) )
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void show() {
|
||||||
|
if (!_valid || !canShow()) return;
|
||||||
|
_broadcastLock = true;
|
||||||
|
// apply brightness to second buffer
|
||||||
|
if (_data2 == nullptr) {
|
||||||
|
// but display original buffer if memory allocation failed
|
||||||
|
realtimeBroadcast(_UDPtype, _client, _len, _data, _rgbw);
|
||||||
|
} else {
|
||||||
|
for (uint16_t pix=0; pix<_len; pix++) {
|
||||||
|
uint16_t offset = pix * _UDPchannels;
|
||||||
|
_data2[offset ] = scale8(_data[offset ], _bri);
|
||||||
|
_data2[offset+1] = scale8(_data[offset+1], _bri);
|
||||||
|
_data2[offset+2] = scale8(_data[offset+2], _bri);
|
||||||
|
if (_rgbw) _data2[offset+3] = scale8(_data[offset+3], _bri);
|
||||||
|
}
|
||||||
|
realtimeBroadcast(_UDPtype, _client, _len, _data2, _rgbw);
|
||||||
|
}
|
||||||
|
_broadcastLock = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline bool canShow() {
|
||||||
|
// this should be a return value from UDP routine if it is still sending data out
|
||||||
|
return !_broadcastLock;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline void setBrightness(uint8_t b) {
|
||||||
|
_bri = b;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t getPins(uint8_t* pinArray) {
|
||||||
|
for (uint8_t i = 0; i < 4; i++) {
|
||||||
|
pinArray[i] = _client[i];
|
||||||
|
}
|
||||||
|
return 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline bool isRgbw() {
|
||||||
|
return _rgbw;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline uint16_t getLength() {
|
||||||
|
return _len;
|
||||||
|
}
|
||||||
|
|
||||||
|
void cleanup() {
|
||||||
|
_type = I_NONE;
|
||||||
|
_valid = false;
|
||||||
|
if (_data != nullptr) free(_data);
|
||||||
|
_data = nullptr;
|
||||||
|
if (_data2 != nullptr) free(_data2);
|
||||||
|
_data2 = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
~BusNetwork() {
|
||||||
|
cleanup();
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
IPAddress _client;
|
||||||
|
uint16_t _len = 0;
|
||||||
|
uint8_t _colorOrder;
|
||||||
|
uint8_t _bri = 255;
|
||||||
|
uint8_t _UDPtype;
|
||||||
|
uint8_t _UDPchannels;
|
||||||
|
bool _rgbw;
|
||||||
|
bool _broadcastLock;
|
||||||
|
byte *_data, *_data2;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
class BusManager {
|
class BusManager {
|
||||||
public:
|
public:
|
||||||
BusManager() {
|
BusManager() {
|
||||||
@ -352,7 +497,7 @@ class BusManager {
|
|||||||
static uint32_t memUsage(BusConfig &bc) {
|
static uint32_t memUsage(BusConfig &bc) {
|
||||||
uint8_t type = bc.type;
|
uint8_t type = bc.type;
|
||||||
uint16_t len = bc.count;
|
uint16_t len = bc.count;
|
||||||
if (type < 32) {
|
if (type > 15 && type < 32) {
|
||||||
#ifdef ESP8266
|
#ifdef ESP8266
|
||||||
if (bc.pins[0] == 3) { //8266 DMA uses 5x the mem
|
if (bc.pins[0] == 3) { //8266 DMA uses 5x the mem
|
||||||
if (type > 29) return len*20; //RGBW
|
if (type > 29) return len*20; //RGBW
|
||||||
@ -365,15 +510,17 @@ class BusManager {
|
|||||||
return len*6;
|
return len*6;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
if (type >= 10 && type <= 15) return len*6; // double buffer for network
|
||||||
if (type > 31 && type < 48) return 5;
|
if (type > 31 && type < 48) return 5;
|
||||||
if (type == 44 || type == 45) return len*4; //RGBW
|
if (type == 44 || type == 45) return len*4; //RGBW
|
||||||
return len*3;
|
return len*3;
|
||||||
}
|
}
|
||||||
|
|
||||||
int add(BusConfig &bc) {
|
int add(BusConfig &bc) {
|
||||||
if (numBusses >= WLED_MAX_BUSSES) return -1;
|
if (numBusses >= WLED_MAX_BUSSES) return -1;
|
||||||
if (IS_DIGITAL(bc.type)) {
|
if (bc.type>=10 && bc.type<=15) {
|
||||||
|
busses[numBusses] = new BusNetwork(bc);
|
||||||
|
} else if (IS_DIGITAL(bc.type)) {
|
||||||
busses[numBusses] = new BusDigital(bc, numBusses);
|
busses[numBusses] = new BusDigital(bc, numBusses);
|
||||||
} else {
|
} else {
|
||||||
busses[numBusses] = new BusPwm(bc);
|
busses[numBusses] = new BusPwm(bc);
|
||||||
@ -444,6 +591,7 @@ class BusManager {
|
|||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// a workaround
|
||||||
static inline bool isRgbw(uint8_t type) {
|
static inline bool isRgbw(uint8_t type) {
|
||||||
return Bus::isRgbw(type);
|
return Bus::isRgbw(type);
|
||||||
}
|
}
|
||||||
|
@ -122,6 +122,10 @@
|
|||||||
|
|
||||||
#define TYPE_NONE 0 //light is not configured
|
#define TYPE_NONE 0 //light is not configured
|
||||||
#define TYPE_RESERVED 1 //unused. Might indicate a "virtual" light
|
#define TYPE_RESERVED 1 //unused. Might indicate a "virtual" light
|
||||||
|
//network types (master broadcast) (10-15)
|
||||||
|
#define TYPE_NET_DDP_RGB 10 //network DDP RGB bus (master broadcast bus)
|
||||||
|
#define TYPE_NET_E131_RGB 11 //network E131 RGB bus (master broadcast bus)
|
||||||
|
#define TYPE_NET_ARTNET_RGB 12 //network ArtNet RGB bus (master broadcast bus)
|
||||||
//Digital types (data pin only) (16-31)
|
//Digital types (data pin only) (16-31)
|
||||||
#define TYPE_WS2812_1CH 20 //white-only chips
|
#define TYPE_WS2812_1CH 20 //white-only chips
|
||||||
#define TYPE_WS2812_WWA 21 //amber + warm + cold white
|
#define TYPE_WS2812_WWA 21 //amber + warm + cold white
|
||||||
@ -241,7 +245,7 @@
|
|||||||
|
|
||||||
#ifndef MAX_LED_MEMORY
|
#ifndef MAX_LED_MEMORY
|
||||||
#ifdef ESP8266
|
#ifdef ESP8266
|
||||||
#define MAX_LED_MEMORY 5000
|
#define MAX_LED_MEMORY 4000
|
||||||
#else
|
#else
|
||||||
#define MAX_LED_MEMORY 64000
|
#define MAX_LED_MEMORY 64000
|
||||||
#endif
|
#endif
|
||||||
@ -282,7 +286,7 @@
|
|||||||
|
|
||||||
// Maximum size of node map (list of other WLED instances)
|
// Maximum size of node map (list of other WLED instances)
|
||||||
#ifdef ESP8266
|
#ifdef ESP8266
|
||||||
#define WLED_MAX_NODES 15
|
#define WLED_MAX_NODES 24
|
||||||
#else
|
#else
|
||||||
#define WLED_MAX_NODES 150
|
#define WLED_MAX_NODES 150
|
||||||
#endif
|
#endif
|
||||||
|
@ -35,22 +35,36 @@
|
|||||||
var LCs = d.getElementsByTagName("input");
|
var LCs = d.getElementsByTagName("input");
|
||||||
for (i=0; i<LCs.length; i++) {
|
for (i=0; i<LCs.length; i++) {
|
||||||
var nm = LCs[i].name.substring(0,2);
|
var nm = LCs[i].name.substring(0,2);
|
||||||
|
// ignore IP address
|
||||||
|
if (nm=="L0" || nm=="L1" || nm=="L2" || nm=="L3") {
|
||||||
|
var n = LCs[i].name.substring(2);
|
||||||
|
var t = parseInt(d.getElementsByName("LT"+n)[0].value, 10); // LED type SELECT
|
||||||
|
if (t<16) continue;
|
||||||
|
}
|
||||||
//check for pin conflicts
|
//check for pin conflicts
|
||||||
if (nm=="L0" || nm=="L1" || nm=="L2" || nm=="L3" || nm=="L4" || nm=="RL" || nm=="BT" || nm=="IR")
|
if (nm=="L0" || nm=="L1" || nm=="L2" || nm=="L3" || nm=="L4" || nm=="RL" || nm=="BT" || nm=="IR")
|
||||||
if (LCs[i].value!="" && LCs[i].value!="-1") {
|
if (LCs[i].value!="" && LCs[i].value!="-1") {
|
||||||
if (d.um_p && d.um_p.some((e)=>e==parseInt(LCs[i].value,10))) {alert(`Sorry, pins ${JSON.stringify(d.um_p)} can't be used.`);LCs[i].value="";LCs[i].focus();return false;}
|
if (d.um_p && d.um_p.some((e)=>e==parseInt(LCs[i].value,10))) {alert(`Sorry, pins ${JSON.stringify(d.um_p)} can't be used.`);LCs[i].value="";LCs[i].focus();return false;}
|
||||||
else if (LCs[i].value > 5 && LCs[i].value < 12) {alert("Sorry, pins 6-11 can not be used.");LCs[i].value="";LCs[i].focus();return false;}
|
else if (LCs[i].value > 5 && LCs[i].value < 12) {alert("Sorry, pins 6-11 can not be used.");LCs[i].value="";LCs[i].focus();return false;}
|
||||||
|
else if (!(nm == "IR" || nm=="BT") && LCs[i].value > 33) {alert("Sorry, pins >33 are input only.");LCs[i].value="";LCs[i].focus();return false;}
|
||||||
for (j=i+1; j<LCs.length; j++)
|
for (j=i+1; j<LCs.length; j++)
|
||||||
{
|
{
|
||||||
var n2 = LCs[j].name.substring(0,2);
|
var n2 = LCs[j].name.substring(0,2);
|
||||||
if (n2=="L0" || n2=="L1" || n2=="L2" || n2=="L3" || n2=="L4" || n2=="RL" || n2=="BT" || n2=="IR")
|
if (n2=="L0" || n2=="L1" || n2=="L2" || n2=="L3" || n2=="L4" || n2=="RL" || n2=="BT" || n2=="IR") {
|
||||||
if (LCs[j].value!="" && LCs[i].value==LCs[j].value) {alert(`Pin conflict between ${nm}/${n2}!`);LCs[j].value="";LCs[j].focus();return false;}
|
if (n2.substring(0,1)==="L") {
|
||||||
|
var m = LCs[j].name.substring(2);
|
||||||
|
var t2 = parseInt(d.getElementsByName("LT"+m)[0].value, 10);
|
||||||
|
if (t2<16) continue;
|
||||||
|
}
|
||||||
|
if (LCs[j].value!="" && LCs[i].value==LCs[j].value) {alert(`Pin conflict between ${LCs[i].name}/${LCs[j].name}!`);LCs[j].value="";LCs[j].focus();return false;}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
function trySubmit(e) {
|
function trySubmit(e) {
|
||||||
|
d.Sf.data.value = '';
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
if (!pinsOK()) {e.stopPropagation();return false;} // Prevent form submission and contact with server
|
if (!pinsOK()) {e.stopPropagation();return false;} // Prevent form submission and contact with server
|
||||||
if (bquot > 100) {var msg = "Too many LEDs for me to handle!"; if (maxM < 10000) msg += "\n\rConsider using an ESP32."; alert(msg);}
|
if (bquot > 100) {var msg = "Too many LEDs for me to handle!"; if (maxM < 10000) msg += "\n\rConsider using an ESP32."; alert(msg);}
|
||||||
@ -89,21 +103,22 @@
|
|||||||
UI();
|
UI();
|
||||||
}
|
}
|
||||||
//returns mem usage
|
//returns mem usage
|
||||||
function getMem(type, len, p0) {
|
function getMem(t, len, p0) {
|
||||||
if (type < 32) {
|
if (t >= 10 && t <= 12) return len*6; // double buffer for network UDP bus
|
||||||
|
if (t > 15 && t < 32) {
|
||||||
if (maxM < 10000 && p0==3) { //8266 DMA uses 5x the mem
|
if (maxM < 10000 && p0==3) { //8266 DMA uses 5x the mem
|
||||||
if (type > 29) return len*20; //RGBW
|
if (t > 29) return len*20; //RGBW
|
||||||
return len*15;
|
return len*15;
|
||||||
} else if (maxM >= 10000) //ESP32 RMT uses double buffer?
|
} else if (maxM >= 10000) //ESP32 RMT uses double buffer?
|
||||||
{
|
{
|
||||||
if (type > 29) return len*8; //RGBW
|
if (t > 29) return len*8; //RGBW
|
||||||
return len*6;
|
return len*6;
|
||||||
}
|
}
|
||||||
if (type > 29) return len*4; //RGBW
|
if (t > 29) return len*4; //RGBW
|
||||||
return len*3;
|
return len*3;
|
||||||
}
|
}
|
||||||
if (type > 31 && type < 48) return 5;
|
if (t > 31 && t < 48) return 5;
|
||||||
if (type == 44 || type == 45) return len*4; //RGBW
|
if (t == 44 || t == 45) return len*4; //RGBW
|
||||||
return len*3;
|
return len*3;
|
||||||
}
|
}
|
||||||
function UI(change=false)
|
function UI(change=false)
|
||||||
@ -115,86 +130,121 @@
|
|||||||
if (d.Sf.LA.value == 255) laprev = 12;
|
if (d.Sf.LA.value == 255) laprev = 12;
|
||||||
else if (d.Sf.LA.value > 0) laprev = d.Sf.LA.value;
|
else if (d.Sf.LA.value > 0) laprev = d.Sf.LA.value;
|
||||||
|
|
||||||
|
// enable/disable LED fields
|
||||||
var s = d.getElementsByTagName("select");
|
var s = d.getElementsByTagName("select");
|
||||||
for (i=0; i<s.length; i++) {
|
for (i=0; i<s.length; i++) {
|
||||||
|
// is the field a LED type?
|
||||||
if (s[i].name.substring(0,2)=="LT") {
|
if (s[i].name.substring(0,2)=="LT") {
|
||||||
n=s[i].name.substring(2);
|
var n = s[i].name.substring(2);
|
||||||
var type = parseInt(s[i].value,10);
|
var t = parseInt(s[i].value,10);
|
||||||
gId("p0d"+n).innerHTML = (type > 49) ? "Data:" : (type >41) ? "Pins:" : "Pin:";
|
gId("p0d"+n).innerHTML = (t>=10 && t<=15) ? "IP address:" : (t > 49) ? "Data GPIO:" : (t >41) ? "GPIOs:" : "GPIO:";
|
||||||
gId("p1d"+n).innerHTML = (type > 49) ? "Clk:" : "";
|
gId("p1d"+n).innerHTML = (t > 49) ? "Clk GPIO:" : "";
|
||||||
var LK = d.getElementsByName("L1"+n)[0];
|
var LK = d.getElementsByName("L1"+n)[0]; // clock pin
|
||||||
|
|
||||||
memu += getMem(type, d.getElementsByName("LC"+n)[0].value, d.getElementsByName("L0"+n)[0].value);
|
memu += getMem(t, d.getElementsByName("LC"+n)[0].value, d.getElementsByName("L0"+n)[0].value); // calc memory
|
||||||
|
|
||||||
|
// enumerate pins
|
||||||
for (p=1; p<5; p++) {
|
for (p=1; p<5; p++) {
|
||||||
var LK = d.getElementsByName("L"+p+n)[0];
|
var LK = d.getElementsByName("L"+p+n)[0]; // secondary pins
|
||||||
if (!LK) continue;
|
if (!LK) continue;
|
||||||
if ((type>49 && p==1) || (type>41 && type < 50 && (p+40 < type))) // TYPE_xxxx values from const.h
|
if (((t>=10 && t<=15) && p<4) || (t>49 && p==1) || (t>41 && t < 50 && (p+40 < t))) // TYPE_xxxx values from const.h
|
||||||
{
|
{
|
||||||
|
// display pin field
|
||||||
LK.style.display = "inline";
|
LK.style.display = "inline";
|
||||||
LK.required = true;
|
LK.required = true;
|
||||||
} else {
|
} else {
|
||||||
|
// hide pin field
|
||||||
LK.style.display = "none";
|
LK.style.display = "none";
|
||||||
LK.required = false;
|
LK.required = false;
|
||||||
LK.value="";
|
LK.value="";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (type == 30 || type == 31 || (type > 40 && type < 46 && type != 43)) isRGBW = true;
|
if (change) {
|
||||||
gId("dig"+n+"c").style.display = (type > 40 && type < 48) ? "none":"inline"; // hide count for analog
|
gId("ls"+n).value = n+1; // set LED start
|
||||||
gId("dig"+n+"s").style.display = (type > 40 && type < 48) ? "none":"inline"; // hide skip 1st for virtual & analog
|
if (t > 31 && t < 48) d.getElementsByName("LC"+n)[0].value = 1; // for sanity change analog count just to 1 LED
|
||||||
gId("rev"+n).innerHTML = (type > 40 && type < 48) ? "Inverted":"Reverse (rotated 180°)"; // change reverse text for analog
|
}
|
||||||
gId("psd"+n).innerHTML = (type > 31 && type < 48) ? "Index:":"Start:";
|
isRGBW |= (t == 30 || t == 31 || (t > 40 && t < 46 && t != 43)); // RGBW checkbox, TYPE_xxxx values from const.h
|
||||||
|
gId("co"+n).style.display = (t<16 || t == 41 || t == 42) ? "none":"inline"; // hide color order for PWM W & WW/CW
|
||||||
|
gId("dig"+n+"c").style.display = (t > 40 && t < 48) ? "none":"inline"; // hide count for analog
|
||||||
|
gId("dig"+n+"r").style.display = (t<16) ? "none":"inline"; // hide reversed for virtual
|
||||||
|
gId("dig"+n+"s").style.display = (t<16 || (t > 40 && t < 48)) ? "none":"inline"; // hide skip 1st for virtual & analog
|
||||||
|
gId("rev"+n).innerHTML = (t > 40 && t < 48) ? "Inverted":"Reverse (rotated 180°)"; // change reverse text for analog
|
||||||
|
gId("psd"+n).innerHTML = (t > 40 && t < 48) ? "Index:":"Start:"; // change analog start description
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// display white channel calculation method
|
||||||
var myC = d.querySelectorAll('.wc'),
|
var myC = d.querySelectorAll('.wc'),
|
||||||
l = myC.length;
|
l = myC.length;
|
||||||
for (i = 0; i < l; i++) {
|
for (i = 0; i < l; i++) {
|
||||||
myC[i].style.display = (isRGBW) ? 'inline':'none';
|
myC[i].style.display = (isRGBW) ? 'inline':'none';
|
||||||
}
|
}
|
||||||
|
// check for pin conflicts
|
||||||
|
var LCs = d.getElementsByTagName("input");
|
||||||
|
var sLC = 0, maxLC = 0;
|
||||||
|
for (i=0; i<LCs.length; i++) {
|
||||||
|
var nm = LCs[i].name.substring(0,2); // field name
|
||||||
|
var n = LCs[i].name.substring(2); // bus number
|
||||||
|
// do we have a led count field but not total led count
|
||||||
|
if (nm=="LC" && LCs[i].name !== "LC") {
|
||||||
|
var c=parseInt(LCs[i].value,10);
|
||||||
|
gId("ls"+n).value=sLC; // update led start field
|
||||||
|
if(c){sLC+=c;if(c>maxLC)maxLC=c;} // increase led count
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
// do we have led pins for digital leds
|
||||||
|
if (nm=="L0" || nm=="L1") {
|
||||||
|
var lc=d.getElementsByName("LC"+n)[0];
|
||||||
|
lc.max=maxPB; // update max led count value
|
||||||
|
}
|
||||||
|
// ignore IP address
|
||||||
|
if (nm=="L0" || nm=="L1" || nm=="L2" || nm=="L3") {
|
||||||
|
var t = parseInt(d.getElementsByName("LT"+n)[0].value, 10); // LED type SELECT
|
||||||
|
if (t<16) {
|
||||||
|
LCs[i].max = 255;
|
||||||
|
LCs[i].min = 0;
|
||||||
|
continue; // do not check conflicts
|
||||||
|
} else {
|
||||||
|
LCs[i].max = 33;
|
||||||
|
LCs[i].min = -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// check for pin conflicts
|
||||||
|
if (nm=="L0" || nm=="L1" || nm=="L2" || nm=="L3" || nm=="L4" || nm=="RL" || nm=="BT" || nm=="IR")
|
||||||
|
if (LCs[i].value!="" && LCs[i].value!="-1") {
|
||||||
|
var p = []; // used pin array
|
||||||
|
if (d.um_p && Array.isArray(d.um_p)) for (k=0;k<d.um_p.length;k++) p.push(d.um_p[k]); // fill with reservations
|
||||||
|
for (j=0; j<LCs.length; j++) {
|
||||||
|
if (i==j) continue;
|
||||||
|
var n2 = LCs[j].name.substring(0,2);
|
||||||
|
if (n2=="L0" || n2=="L1" || n2=="L2" || n2=="L3" || n2=="L4" || n2=="RL" || n2=="BT" || n2=="IR") {
|
||||||
|
if (n2.substring(0,1)==="L") {
|
||||||
|
var m = LCs[j].name.substring(2);
|
||||||
|
var t2 = parseInt(d.getElementsByName("LT"+m)[0].value, 10);
|
||||||
|
if (t2<16) continue;
|
||||||
|
}
|
||||||
|
if (LCs[j].value!="" && LCs[j].value!="-1") p.push(parseInt(LCs[j].value,10)); // add current pin
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// now check for conflicts
|
||||||
|
if (p.some((e)=>e==parseInt(LCs[i].value,10))) LCs[i].style.color="red"; else LCs[i].style.color=parseInt(LCs[i].value,10)>33?"orange":"#fff";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// update total led count
|
||||||
|
if (gId("LC").readOnly) d.getElementsByName("LC")[0].value = sLC;
|
||||||
|
// if we are changing total led count update led count for 1st strip
|
||||||
if (d.activeElement == d.getElementsByName("LC")[0]) {
|
if (d.activeElement == d.getElementsByName("LC")[0]) {
|
||||||
var o = d.getElementsByClassName("iST");
|
var o = d.getElementsByClassName("iST");
|
||||||
var i = o.length;
|
var i = o.length;
|
||||||
if (i == 1) d.getElementsByName("LC0")[0].value = d.getElementsByName("LC")[0].value;
|
if (i == 1) d.getElementsByName("LC0")[0].value = d.getElementsByName("LC")[0].value;
|
||||||
}
|
}
|
||||||
|
// memory usage and warnings
|
||||||
var LCs = d.getElementsByTagName("input");
|
|
||||||
var sLC = 0, maxLC = 0;
|
|
||||||
for (i=0; i<LCs.length; i++) {
|
|
||||||
var nm = LCs[i].name.substring(0,2);
|
|
||||||
if (nm=="LC" && LCs[i].name !== "LC") {
|
|
||||||
var n=LCs[i].name.substring(2);
|
|
||||||
var c=parseInt(LCs[i].value,10);
|
|
||||||
if(gId("ls"+n).readOnly) gId("ls"+n).value=sLC;
|
|
||||||
if(c){sLC+=c;if(c>maxLC)maxLC=c;}
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (nm=="L0" || nm=="L1") {
|
|
||||||
var lc=d.getElementsByName("LC"+LCs[i].name.substring(2))[0];
|
|
||||||
lc.max=maxPB;
|
|
||||||
}
|
|
||||||
if (nm=="L0" || nm=="L1" || nm=="L2" || nm=="L3" || nm=="L4" || nm=="RL" || nm=="BT" || nm=="IR")
|
|
||||||
if (LCs[i].value!="" && LCs[i].value!="-1") {
|
|
||||||
var p = [];
|
|
||||||
if (d.um_p && Array.isArray(d.um_p)) for (k=0;k<d.um_p.length;k++) p.push(d.um_p[k]);
|
|
||||||
for (j=0; j<LCs.length; j++) {
|
|
||||||
if (i==j) continue;
|
|
||||||
var n2 = LCs[j].name.substring(0,2);
|
|
||||||
if (n2=="L0" || n2=="L1" || n2=="L2" || n2=="L3" || n2=="L4" || n2=="RL" || n2=="BT" || n2=="IR")
|
|
||||||
if (LCs[j].value!="" && LCs[j].value!="-1") p.push(parseInt(LCs[j].value,10));
|
|
||||||
}
|
|
||||||
if (p.some((e)=>e==parseInt(LCs[i].value,10))) LCs[i].style.color="red"; else LCs[i].style.color="#fff";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
gId('m0').innerHTML = memu;
|
gId('m0').innerHTML = memu;
|
||||||
bquot = memu / maxM * 100;
|
bquot = memu / maxM * 100;
|
||||||
gId('dbar').style.background = `linear-gradient(90deg, ${bquot > 60 ? (bquot > 90 ? "red":"orange"):"#ccc"} 0 ${bquot}%%, #444 ${bquot}%% 100%%)`;
|
gId('dbar').style.background = `linear-gradient(90deg, ${bquot > 60 ? (bquot > 90 ? "red":"orange"):"#ccc"} 0 ${bquot}%%, #444 ${bquot}%% 100%%)`;
|
||||||
gId('ledwarning').style.display = (sLC > maxPB || maxLC > 800 || bquot > 80) ? 'inline':'none';
|
gId('ledwarning').style.display = (sLC > maxPB || maxLC > 800 || bquot > 80) ? 'inline':'none';
|
||||||
gId('ledwarning').style.color = (sLC > maxPB || maxLC > maxPB || bquot > 100) ? 'red':'orange';
|
gId('ledwarning').style.color = (sLC > maxPB || maxLC > maxPB || bquot > 100) ? 'red':'orange';
|
||||||
gId('wreason').innerHTML = (bquot > 80) ? "80% of max. LED memory" +(bquot>100 ? ` (<b>WARNING: Using over ${maxM}B!</b>)` : "") : "800 LEDs per pin";
|
gId('wreason').innerHTML = (bquot > 80) ? "80% of max. LED memory" +(bquot>100 ? ` (<b>WARNING: Using over ${maxM}B!</b>)` : "") : "800 LEDs per GPIO";
|
||||||
|
// calculate power
|
||||||
var val = Math.ceil((100 + sLC * laprev)/500)/2;
|
var val = Math.ceil((100 + sLC * laprev)/500)/2;
|
||||||
val = (val > 5) ? Math.ceil(val) : val;
|
val = (val > 5) ? Math.ceil(val) : val;
|
||||||
var s = "";
|
var s = "";
|
||||||
@ -221,8 +271,8 @@
|
|||||||
function lastEnd(i) {
|
function lastEnd(i) {
|
||||||
if (i<1) return 0;
|
if (i<1) return 0;
|
||||||
v = parseInt(d.getElementsByName("LS"+(i-1))[0].value) + parseInt(d.getElementsByName("LC"+(i-1))[0].value);
|
v = parseInt(d.getElementsByName("LS"+(i-1))[0].value) + parseInt(d.getElementsByName("LC"+(i-1))[0].value);
|
||||||
var type = parseInt(d.getElementsByName("LT"+(i-1))[0].value);
|
var t = parseInt(d.getElementsByName("LT"+(i-1))[0].value);
|
||||||
if (type > 31 && type < 48) v = 1; //PWM busses
|
if (t > 31 && t < 48) v = 1; //PWM busses
|
||||||
if (isNaN(v)) return 0;
|
if (isNaN(v)) return 0;
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
@ -239,10 +289,10 @@
|
|||||||
if (n==1) {
|
if (n==1) {
|
||||||
// npm run build has trouble minimizing spaces inside string
|
// npm run build has trouble minimizing spaces inside string
|
||||||
var cn = `<div class="iST">
|
var cn = `<div class="iST">
|
||||||
${i>0?'<hr style="width:260px">':''}
|
<hr style="width:260px">
|
||||||
${i+1}:
|
${i+1}:
|
||||||
<select name="LT${i}" onchange="UI()">
|
<select name="LT${i}" onchange="UI(true)">
|
||||||
<option value="22">WS281x</option>
|
<option value="22" selected>WS281x</option>
|
||||||
<option value="30">SK6812 RGBW</option>
|
<option value="30">SK6812 RGBW</option>
|
||||||
<option value="31">TM1814</option>
|
<option value="31">TM1814</option>
|
||||||
<option value="24">400kHz</option>
|
<option value="24">400kHz</option>
|
||||||
@ -255,8 +305,11 @@ ${i+1}:
|
|||||||
<option value="43">PWM RGB</option>
|
<option value="43">PWM RGB</option>
|
||||||
<option value="44">PWM RGBW</option>
|
<option value="44">PWM RGBW</option>
|
||||||
<option value="45">PWM RGBWC</option>
|
<option value="45">PWM RGBWC</option>
|
||||||
|
<option value="10">DDP RGB (network)</option>
|
||||||
|
<!--option value="11">E1.31 RGB (network)</option-->
|
||||||
|
<!--option value="12">ArtNet RGB (network)</option-->
|
||||||
</select>
|
</select>
|
||||||
Color Order:
|
<div id="co${i}" style="display:inline">Color Order:
|
||||||
<select name="CO${i}">
|
<select name="CO${i}">
|
||||||
<option value="0">GRB</option>
|
<option value="0">GRB</option>
|
||||||
<option value="1">RGB</option>
|
<option value="1">RGB</option>
|
||||||
@ -264,18 +317,20 @@ Color Order:
|
|||||||
<option value="3">RBG</option>
|
<option value="3">RBG</option>
|
||||||
<option value="4">BGR</option>
|
<option value="4">BGR</option>
|
||||||
<option value="5">GBR</option>
|
<option value="5">GBR</option>
|
||||||
</select><br>
|
</select></div>
|
||||||
<span id="p0d${i}">Pin:</span> <input type="number" class="xs" name="L0${i}" min="0" max="33" required onchange="UI()"/>
|
|
||||||
<span id="p1d${i}">Clock:</span> <input type="number" class="xs" name="L1${i}" min="0" max="33" onchange="UI()"/>
|
|
||||||
<span id="p2d${i}"></span><input type="number" class="xs" name="L2${i}" min="0" max="33" onchange="UI()"/>
|
|
||||||
<span id="p3d${i}"></span><input type="number" class="xs" name="L3${i}" min="0" max="33" onchange="UI()"/>
|
|
||||||
<span id="p4d${i}"></span><input type="number" class="xs" name="L4${i}" min="0" max="33" onchange="UI()"/>
|
|
||||||
<br>
|
<br>
|
||||||
<span id="psd${i}">Start:</span> <input type="number" name="LS${i}" id="ls${i}" min="0" max="8191" value="${lastEnd(i)}" required />
|
<span id="p0d${i}">GPIO:</span><input type="number" name="L0${i}" min="0" max="33" required class="xs" onchange="UI()"/>
|
||||||
|
<span id="p1d${i}"></span><input type="number" name="L1${i}" min="0" max="33" class="xs" onchange="UI()"/>
|
||||||
|
<span id="p2d${i}"></span><input type="number" name="L2${i}" min="0" max="33" class="xs" onchange="UI()"/>
|
||||||
|
<span id="p3d${i}"></span><input type="number" name="L3${i}" min="0" max="33" class="xs" onchange="UI()"/>
|
||||||
|
<span id="p4d${i}"></span><input type="number" name="L4${i}" min="0" max="33" class="xs" onchange="UI()"/>
|
||||||
|
<br>
|
||||||
|
<span id="psd${i}">Start:</span> <input type="number" name="LS${i}" id="ls${i}" class="l" min="0" max="8191" value="${lastEnd(i)}" disabled readonly required />
|
||||||
<div id="dig${i}c" style="display:inline">Count: <input type="number" name="LC${i}" class="l" min="0" max="${maxPB}" value="1" required oninput="UI()" /></div>
|
<div id="dig${i}c" style="display:inline">Count: <input type="number" name="LC${i}" class="l" min="0" max="${maxPB}" value="1" required oninput="UI()" /></div>
|
||||||
<br>
|
<br>
|
||||||
<div id="dig${i}r" style="display:inline"><span id="rev${i}">Reverse</span>: <input type="checkbox" name="CV${i}"></div>
|
<div id="dig${i}r" style="display:inline"><span id="rev${i}">Reversed</span>: <input type="checkbox" name="CV${i}"></div>
|
||||||
<div id="dig${i}s" style="display:inline">Skip 1<sup>st</sup> LED: <input id="sl${i}" type="checkbox" name="SL${i}"></div>
|
<div id="dig${i}s" style="display:inline">Skip 1<sup>st</sup> LED: <input id="sl${i}" type="checkbox" name="SL${i}"></div>
|
||||||
|
<br>
|
||||||
</div>`;
|
</div>`;
|
||||||
f.insertAdjacentHTML("beforeend", cn);
|
f.insertAdjacentHTML("beforeend", cn);
|
||||||
}
|
}
|
||||||
@ -292,7 +347,7 @@ Color Order:
|
|||||||
var c = gId("btns").innerHTML;
|
var c = gId("btns").innerHTML;
|
||||||
var bt = "BT" + i;
|
var bt = "BT" + i;
|
||||||
var be = "BE" + i;
|
var be = "BE" + i;
|
||||||
c += `Button ${i} pin: <input type="number" class="xs" min="-1" max="40" name="${bt}" onchange="UI()" value="${p}"> `;
|
c += `Button ${i} GPIO: <input type="number" min="-1" max="40" name="${bt}" onchange="UI()" class="xs" value="${p}">`;
|
||||||
c += `<select name="${be}">`
|
c += `<select name="${be}">`
|
||||||
c += `<option value="0" ${t==0?"selected":""}>Disabled</option>`;
|
c += `<option value="0" ${t==0?"selected":""}>Disabled</option>`;
|
||||||
c += `<option value="2" ${t==2?"selected":""}>Pushbutton</option>`;
|
c += `<option value="2" ${t==2?"selected":""}>Pushbutton</option>`;
|
||||||
@ -332,7 +387,7 @@ Color Order:
|
|||||||
<div class="helpB"><button type="button" onclick="H()">?</button></div>
|
<div class="helpB"><button type="button" onclick="H()">?</button></div>
|
||||||
<button type="button" onclick="B()">Back</button><button type="submit">Save</button><hr>
|
<button type="button" onclick="B()">Back</button><button type="submit">Save</button><hr>
|
||||||
<h2>LED & Hardware setup</h2>
|
<h2>LED & Hardware setup</h2>
|
||||||
Total LED count: <input name="LC" id="LC" type="number" min="1" max="8192" oninput="UI()" required><br>
|
Total LED count: <input name="LC" id="LC" type="number" min="1" max="8192" oninput="UI()" disabled required readonly><br>
|
||||||
<i>Recommended power supply for brightest white:</i><br>
|
<i>Recommended power supply for brightest white:</i><br>
|
||||||
<b><span id="psu">?</span></b><br>
|
<b><span id="psu">?</span></b><br>
|
||||||
<span id="psu2"><br></span>
|
<span id="psu2"><br></span>
|
||||||
@ -363,6 +418,7 @@ Color Order:
|
|||||||
</div>
|
</div>
|
||||||
<h3>Hardware setup</h3>
|
<h3>Hardware setup</h3>
|
||||||
<div id="mLC">LED outputs:</div>
|
<div id="mLC">LED outputs:</div>
|
||||||
|
<hr style="width:260px">
|
||||||
<button type="button" id="+" onclick="addLEDs(1)" style="display:none;border-radius:20px;height:36px;">+</button>
|
<button type="button" id="+" onclick="addLEDs(1)" style="display:none;border-radius:20px;height:36px;">+</button>
|
||||||
<button type="button" id="-" onclick="addLEDs(-1)" style="display:none;border-radius:20px;width:36px;height:36px;">-</button><br>
|
<button type="button" id="-" onclick="addLEDs(-1)" style="display:none;border-radius:20px;width:36px;height:36px;">-</button><br>
|
||||||
LED Memory Usage: <span id="m0">0</span> / <span id="m1">?</span> B<br>
|
LED Memory Usage: <span id="m0">0</span> / <span id="m1">?</span> B<br>
|
||||||
@ -371,11 +427,12 @@ Color Order:
|
|||||||
⚠ You might run into stability or lag issues.<br>
|
⚠ You might run into stability or lag issues.<br>
|
||||||
Use less than <span id="wreason">800 LEDs per pin</span> for the best experience!<br>
|
Use less than <span id="wreason">800 LEDs per pin</span> for the best experience!<br>
|
||||||
</div>
|
</div>
|
||||||
|
<hr style="width:260px">
|
||||||
Make a segment for each output: <input type="checkbox" name="MS"> <br>
|
Make a segment for each output: <input type="checkbox" name="MS"> <br>
|
||||||
<hr style="width:260px">
|
<hr style="width:260px">
|
||||||
<div id="btns"></div>
|
<div id="btns"></div>
|
||||||
Touch threshold: <input type="number" class="s" min="0" max="100" name="TT" required><br>
|
Touch threshold: <input type="number" class="s" min="0" max="100" name="TT" required><br>
|
||||||
IR pin: <input type="number" class="xs" min="-1" max="40" name="IR" onchange="UI()"> <select name="IT" onchange="UI()">
|
IR GPIO: <input type="number" min="-1" max="40" name="IR" onchange="UI()" class="xs"><select name="IT" onchange="UI()">
|
||||||
<option value=0>Remote disabled</option>
|
<option value=0>Remote disabled</option>
|
||||||
<option value=1>24-key RGB</option>
|
<option value=1>24-key RGB</option>
|
||||||
<option value=2>24-key with CT</option>
|
<option value=2>24-key with CT</option>
|
||||||
@ -389,7 +446,7 @@ Color Order:
|
|||||||
<div id="json" style="display:none;">JSON file: <input type="file" name="data" accept=".json"> <input type="button" value="Upload" onclick="uploadFile('/ir.json');"><br></div>
|
<div id="json" style="display:none;">JSON file: <input type="file" name="data" accept=".json"> <input type="button" value="Upload" onclick="uploadFile('/ir.json');"><br></div>
|
||||||
<div id="toast"></div>
|
<div id="toast"></div>
|
||||||
<a href="https://github.com/Aircoookie/WLED/wiki/Infrared-Control" target="_blank">IR info</a><br>
|
<a href="https://github.com/Aircoookie/WLED/wiki/Infrared-Control" target="_blank">IR info</a><br>
|
||||||
Relay pin: <input type="number" class="xs" min="-1" max="33" name="RL" onchange="UI()"> Invert <input type="checkbox" name="RM"><span style="cursor: pointer;" onclick="off('RL')"> ×</span><br>
|
Relay GPIO: <input type="number" min="-1" max="33" name="RL" onchange="UI()" class="xs"> invert <input type="checkbox" name="RM"><span style="cursor: pointer;" onclick="off('RL')"> ×</span><br>
|
||||||
<hr style="width:260px">
|
<hr style="width:260px">
|
||||||
<h3>Defaults</h3>
|
<h3>Defaults</h3>
|
||||||
Turn LEDs on after power up/reset: <input type="checkbox" name="BO"><br>
|
Turn LEDs on after power up/reset: <input type="checkbox" name="BO"><br>
|
||||||
|
@ -99,7 +99,7 @@ Type:
|
|||||||
<select name=DI onchange="SP(); adj();">
|
<select name=DI onchange="SP(); adj();">
|
||||||
<option value=5568>E1.31 (sACN)</option>
|
<option value=5568>E1.31 (sACN)</option>
|
||||||
<option value=6454>Art-Net</option>
|
<option value=6454>Art-Net</option>
|
||||||
<option value=4048>DDP</option>
|
<!--option value=4048>DDP</option-->
|
||||||
<option value=0 selected>Custom port</option>
|
<option value=0 selected>Custom port</option>
|
||||||
</select><br>
|
</select><br>
|
||||||
<div id=xp>Port: <input name="EP" type="number" min="1" max="65535" value="5568" class="d5" required><br></div>
|
<div id=xp>Port: <input name="EP" type="number" min="1" max="65535" value="5568" class="d5" required><br></div>
|
||||||
|
@ -195,6 +195,7 @@ bool updateVal(const String* req, const char* key, byte* val, byte minv=0, byte
|
|||||||
|
|
||||||
//udp.cpp
|
//udp.cpp
|
||||||
void notify(byte callMode, bool followUp=false);
|
void notify(byte callMode, bool followUp=false);
|
||||||
|
uint8_t realtimeBroadcast(uint8_t type, IPAddress client, uint16_t length, byte *buffer, bool isRGBW=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);
|
||||||
@ -224,14 +225,11 @@ class UsermodManager {
|
|||||||
|
|
||||||
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);
|
||||||
bool readFromConfig(JsonObject& obj);
|
bool readFromConfig(JsonObject& obj);
|
||||||
void onMqttConnect(bool sessionPresent);
|
void onMqttConnect(bool sessionPresent);
|
||||||
|
File diff suppressed because one or more lines are too long
1551
wled00/html_ui.h
1551
wled00/html_ui.h
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,4 @@
|
|||||||
#include "wled.h"
|
#include "wled.h"
|
||||||
#include "src/dependencies/json/ArduinoJson-v6.h"
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* UDP sync notifier / Realtime / Hyperion / TPM2.NET
|
* UDP sync notifier / Realtime / Hyperion / TPM2.NET
|
||||||
@ -543,8 +542,9 @@ void sendSysInfoUDP()
|
|||||||
#define DDP_CHANNELS_PER_PACKET 1440 // 480 leds
|
#define DDP_CHANNELS_PER_PACKET 1440 // 480 leds
|
||||||
|
|
||||||
//
|
//
|
||||||
// Send real time DDP UDP updates to the specified client
|
// Send real time UDP updates to the specified client
|
||||||
//
|
//
|
||||||
|
// type - protocol type (0=DDP, 1=E1.31, 2=ArtNet)
|
||||||
// client - the IP address to send to
|
// client - the IP address to send to
|
||||||
// length - the number of pixels
|
// length - the number of pixels
|
||||||
// buffer - a buffer of at least length*4 bytes long
|
// buffer - a buffer of at least length*4 bytes long
|
||||||
@ -552,27 +552,31 @@ void sendSysInfoUDP()
|
|||||||
|
|
||||||
uint8_t sequenceNumber = 0; // this needs to be shared across all outputs
|
uint8_t sequenceNumber = 0; // this needs to be shared across all outputs
|
||||||
|
|
||||||
uint8_t realtimeBroadcast(IPAddress client, uint16_t length, uint8_t *buffer, bool isRGBW) {
|
uint8_t realtimeBroadcast(uint8_t type, IPAddress client, uint16_t length, uint8_t *buffer, bool isRGBW) {
|
||||||
WiFiUDP ddpUdp;
|
if (!interfacesInited) return 1; // network not initialised
|
||||||
|
|
||||||
// calclate the number of UDP packets we need to send
|
WiFiUDP ddpUdp;
|
||||||
uint16_t channelCount = length * 3; // 1 channel for every R,G,B value
|
|
||||||
uint16_t packetCount = channelCount / DDP_CHANNELS_PER_PACKET;
|
switch (type) {
|
||||||
if (channelCount % DDP_CHANNELS_PER_PACKET) {
|
case 0: // DDP
|
||||||
|
{
|
||||||
|
// calclate the number of UDP packets we need to send
|
||||||
|
uint16_t channelCount = length * 3; // 1 channel for every R,G,B value
|
||||||
|
uint16_t packetCount = channelCount / DDP_CHANNELS_PER_PACKET;
|
||||||
|
if (channelCount % DDP_CHANNELS_PER_PACKET) {
|
||||||
packetCount++;
|
packetCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
// there are 3 channels per RGB pixel
|
// there are 3 channels per RGB pixel
|
||||||
uint16_t channel = 0; // TODO: allow specifying the start channel
|
uint32_t channel = 0; // TODO: allow specifying the start channel
|
||||||
// the current position in the buffer
|
// the current position in the buffer
|
||||||
uint16_t bufferOffset = 0;
|
uint16_t bufferOffset = 0;
|
||||||
|
|
||||||
for (uint16_t currentPacket = 0; currentPacket < packetCount; currentPacket++) {
|
for (uint16_t currentPacket = 0; currentPacket < packetCount; currentPacket++) {
|
||||||
if (sequenceNumber > 15) sequenceNumber = 0;
|
if (sequenceNumber > 15) sequenceNumber = 0;
|
||||||
|
|
||||||
int rc = ddpUdp.beginPacket(client, DDP_PORT);
|
if (!ddpUdp.beginPacket(client, DDP_DEFAULT_PORT)) { // port defined in ESPAsyncE131.h
|
||||||
if (rc == 0) {
|
DEBUG_PRINTLN(F("WiFiUDP.beginPacket returned an error"));
|
||||||
//DEBUG_PRINTLN("WiFiUDP.beginPacket returned an error");
|
|
||||||
return 1; // problem
|
return 1; // problem
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -581,27 +585,27 @@ uint8_t realtimeBroadcast(IPAddress client, uint16_t length, uint8_t *buffer, bo
|
|||||||
|
|
||||||
uint8_t flags = DDP_FLAGS1_VER1;
|
uint8_t flags = DDP_FLAGS1_VER1;
|
||||||
if (currentPacket == (packetCount - 1)) {
|
if (currentPacket == (packetCount - 1)) {
|
||||||
// last packet, set the push flag
|
// last packet, set the push flag
|
||||||
// TODO: determine if we want to send an empty push packet to each destination after sending the pixel data
|
// TODO: determine if we want to send an empty push packet to each destination after sending the pixel data
|
||||||
flags = DDP_FLAGS1_VER1 | DDP_FLAGS1_PUSH;
|
flags = DDP_FLAGS1_VER1 | DDP_FLAGS1_PUSH;
|
||||||
if (channelCount % DDP_CHANNELS_PER_PACKET) {
|
if (channelCount % DDP_CHANNELS_PER_PACKET) {
|
||||||
packetSize = channelCount % DDP_CHANNELS_PER_PACKET;
|
packetSize = channelCount % DDP_CHANNELS_PER_PACKET;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// write the header
|
// write the header
|
||||||
/*0*/ddpUdp.write(flags);
|
/*0*/ddpUdp.write(flags);
|
||||||
/*1*/ddpUdp.write(sequenceNumber++ & 0xF);
|
/*1*/ddpUdp.write(sequenceNumber++ & 0x0F); // sequence may be unnecessary unless we are sending twice (as requested in Sync settings)
|
||||||
/*2*/ddpUdp.write(0);
|
/*2*/ddpUdp.write(0);
|
||||||
/*3*/ddpUdp.write(DDP_ID_DISPLAY);
|
/*3*/ddpUdp.write(DDP_ID_DISPLAY);
|
||||||
// data offset in bytes, 32-bit number, MSB first
|
// data offset in bytes, 32-bit number, MSB first
|
||||||
/*4*/ddpUdp.write((channel & 0xFF000000) >> 24);
|
/*4*/ddpUdp.write(0xFF & (channel >> 24));
|
||||||
/*5*/ddpUdp.write((channel & 0x00FF0000) >> 16);
|
/*5*/ddpUdp.write(0xFF & (channel >> 16));
|
||||||
/*6*/ddpUdp.write((channel & 0x0000FF00) >> 8);
|
/*6*/ddpUdp.write(0xFF & (channel >> 8));
|
||||||
/*7*/ddpUdp.write((channel & 0x000000FF));
|
/*7*/ddpUdp.write(0xFF & (channel ));
|
||||||
// data length in bytes, 16-bit number, MSB first
|
// data length in bytes, 16-bit number, MSB first
|
||||||
/*8*/ddpUdp.write((packetSize & 0xFF00) >> 8);
|
/*8*/ddpUdp.write(0xFF & (packetSize >> 8));
|
||||||
/*9*/ddpUdp.write(packetSize & 0xFF);
|
/*9*/ddpUdp.write(0xFF & (packetSize ));
|
||||||
|
|
||||||
// write the colors, the write write(const uint8_t *buffer, size_t size)
|
// write the colors, the write write(const uint8_t *buffer, size_t size)
|
||||||
// function is just a loop internally too
|
// function is just a loop internally too
|
||||||
@ -612,14 +616,22 @@ uint8_t realtimeBroadcast(IPAddress client, uint16_t length, uint8_t *buffer, bo
|
|||||||
if (isRGBW) bufferOffset++;
|
if (isRGBW) bufferOffset++;
|
||||||
}
|
}
|
||||||
|
|
||||||
rc = ddpUdp.endPacket();
|
if (!ddpUdp.endPacket()) {
|
||||||
if (rc == 0) {
|
DEBUG_PRINTLN("WiFiUDP.endPacket returned an error");
|
||||||
//DEBUG_PRINTLN("WiFiUDP.endPacket returned an error");
|
|
||||||
return 1; // problem
|
return 1; // problem
|
||||||
}
|
}
|
||||||
|
|
||||||
channel += packetSize;
|
channel += packetSize;
|
||||||
}
|
}
|
||||||
|
} break;
|
||||||
|
|
||||||
return 0;
|
case 1: //E1.31
|
||||||
|
{
|
||||||
|
} break;
|
||||||
|
|
||||||
|
case 2: //ArtNet
|
||||||
|
{
|
||||||
|
} break;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -120,6 +120,10 @@ void WiFiEvent(WiFiEvent_t event)
|
|||||||
|
|
||||||
void WLED::loop()
|
void WLED::loop()
|
||||||
{
|
{
|
||||||
|
#ifdef WLED_DEBUG
|
||||||
|
static unsigned long maxUsermodMillis = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
handleTime();
|
handleTime();
|
||||||
handleIR(); // 2nd call to function needed for ESP32 to return valid results -- should be good for ESP8266, too
|
handleIR(); // 2nd call to function needed for ESP32 to return valid results -- should be good for ESP8266, too
|
||||||
handleConnection();
|
handleConnection();
|
||||||
@ -130,7 +134,15 @@ void WLED::loop()
|
|||||||
handleDMX();
|
handleDMX();
|
||||||
#endif
|
#endif
|
||||||
userLoop();
|
userLoop();
|
||||||
|
|
||||||
|
#ifdef WLED_DEBUG
|
||||||
|
unsigned long usermodMillis = millis();
|
||||||
|
#endif
|
||||||
usermods.loop();
|
usermods.loop();
|
||||||
|
#ifdef WLED_DEBUG
|
||||||
|
usermodMillis = millis() - usermodMillis;
|
||||||
|
if (usermodMillis > maxUsermodMillis) maxUsermodMillis = usermodMillis;
|
||||||
|
#endif
|
||||||
|
|
||||||
yield();
|
yield();
|
||||||
handleIO();
|
handleIO();
|
||||||
@ -159,7 +171,9 @@ void WLED::loop()
|
|||||||
yield();
|
yield();
|
||||||
|
|
||||||
handleHue();
|
handleHue();
|
||||||
|
#ifndef WLED_DISABLE_BLYNK
|
||||||
handleBlynk();
|
handleBlynk();
|
||||||
|
#endif
|
||||||
|
|
||||||
yield();
|
yield();
|
||||||
|
|
||||||
@ -217,14 +231,14 @@ void WLED::loop()
|
|||||||
yield();
|
yield();
|
||||||
serializeConfig();
|
serializeConfig();
|
||||||
}
|
}
|
||||||
|
|
||||||
yield();
|
yield();
|
||||||
handleWs();
|
handleWs();
|
||||||
handleStatusLED();
|
handleStatusLED();
|
||||||
|
|
||||||
// DEBUG serial logging
|
// DEBUG serial logging (every 30s)
|
||||||
#ifdef WLED_DEBUG
|
#ifdef WLED_DEBUG
|
||||||
if (millis() - debugTime > 9999) {
|
if (millis() - debugTime > 29999) {
|
||||||
DEBUG_PRINTLN(F("---DEBUG INFO---"));
|
DEBUG_PRINTLN(F("---DEBUG INFO---"));
|
||||||
DEBUG_PRINT(F("Runtime: ")); DEBUG_PRINTLN(millis());
|
DEBUG_PRINT(F("Runtime: ")); DEBUG_PRINTLN(millis());
|
||||||
DEBUG_PRINT(F("Unix time: ")); toki.printTime(toki.getTime());
|
DEBUG_PRINT(F("Unix time: ")); toki.printTime(toki.getTime());
|
||||||
@ -236,17 +250,19 @@ void WLED::loop()
|
|||||||
} else
|
} else
|
||||||
DEBUG_PRINTLN(F("No PSRAM"));
|
DEBUG_PRINTLN(F("No PSRAM"));
|
||||||
#endif
|
#endif
|
||||||
DEBUG_PRINT(F("Wifi state: ")); DEBUG_PRINTLN(WiFi.status());
|
DEBUG_PRINT(F("Wifi state: ")); DEBUG_PRINTLN(WiFi.status());
|
||||||
|
|
||||||
if (WiFi.status() != lastWifiState) {
|
if (WiFi.status() != lastWifiState) {
|
||||||
wifiStateChangedTime = millis();
|
wifiStateChangedTime = millis();
|
||||||
}
|
}
|
||||||
lastWifiState = WiFi.status();
|
lastWifiState = WiFi.status();
|
||||||
DEBUG_PRINT(F("State time: ")); DEBUG_PRINTLN(wifiStateChangedTime);
|
DEBUG_PRINT(F("State time: ")); DEBUG_PRINTLN(wifiStateChangedTime);
|
||||||
DEBUG_PRINT(F("NTP last sync: ")); DEBUG_PRINTLN(ntpLastSyncTime);
|
DEBUG_PRINT(F("NTP last sync: ")); DEBUG_PRINTLN(ntpLastSyncTime);
|
||||||
DEBUG_PRINT(F("Client IP: ")); DEBUG_PRINTLN(Network.localIP());
|
DEBUG_PRINT(F("Client IP: ")); DEBUG_PRINTLN(Network.localIP());
|
||||||
DEBUG_PRINT(F("Loops/sec: ")); DEBUG_PRINTLN(loops / 10);
|
DEBUG_PRINT(F("Loops/sec: ")); DEBUG_PRINTLN(loops / 30);
|
||||||
|
DEBUG_PRINT(F("Max UM time[ms]: ")); DEBUG_PRINTLN(maxUsermodMillis);
|
||||||
loops = 0;
|
loops = 0;
|
||||||
|
maxUsermodMillis = 0;
|
||||||
debugTime = millis();
|
debugTime = millis();
|
||||||
}
|
}
|
||||||
loops++;
|
loops++;
|
||||||
@ -277,7 +293,6 @@ void WLED::setup()
|
|||||||
#endif
|
#endif
|
||||||
DEBUG_PRINT(F("heap "));
|
DEBUG_PRINT(F("heap "));
|
||||||
DEBUG_PRINTLN(ESP.getFreeHeap());
|
DEBUG_PRINTLN(ESP.getFreeHeap());
|
||||||
registerUsermods();
|
|
||||||
|
|
||||||
#if defined(ARDUINO_ARCH_ESP32) && defined(WLED_USE_PSRAM)
|
#if defined(ARDUINO_ARCH_ESP32) && defined(WLED_USE_PSRAM)
|
||||||
if (psramFound()) {
|
if (psramFound()) {
|
||||||
@ -297,6 +312,9 @@ void WLED::setup()
|
|||||||
pinManager.allocatePin(2, true, PinOwner::DMX);
|
pinManager.allocatePin(2, true, PinOwner::DMX);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
DEBUG_PRINTLN(F("Registering usermods ..."));
|
||||||
|
registerUsermods();
|
||||||
|
|
||||||
for (uint8_t i=1; i<WLED_MAX_BUTTONS; i++) btnPin[i] = -1;
|
for (uint8_t i=1; i<WLED_MAX_BUTTONS; i++) btnPin[i] = -1;
|
||||||
|
|
||||||
bool fsinit = false;
|
bool fsinit = false;
|
||||||
@ -329,6 +347,7 @@ void WLED::setup()
|
|||||||
DEBUG_PRINTLN(F("Usermods setup"));
|
DEBUG_PRINTLN(F("Usermods setup"));
|
||||||
userSetup();
|
userSetup();
|
||||||
usermods.setup();
|
usermods.setup();
|
||||||
|
|
||||||
if (strcmp(clientSSID, DEFAULT_CLIENT_SSID) == 0)
|
if (strcmp(clientSSID, DEFAULT_CLIENT_SSID) == 0)
|
||||||
showWelcomePage = true;
|
showWelcomePage = true;
|
||||||
WiFi.persistent(false);
|
WiFi.persistent(false);
|
||||||
@ -396,14 +415,15 @@ void WLED::beginStrip()
|
|||||||
strip.setBrightness(0);
|
strip.setBrightness(0);
|
||||||
strip.setShowCallback(handleOverlayDraw);
|
strip.setShowCallback(handleOverlayDraw);
|
||||||
|
|
||||||
if (bootPreset > 0) {
|
if (turnOnAtBoot) {
|
||||||
applyPreset(bootPreset, CALL_MODE_INIT);
|
|
||||||
} else if (turnOnAtBoot) {
|
|
||||||
if (briS > 0) bri = briS;
|
if (briS > 0) bri = briS;
|
||||||
else if (bri == 0) bri = 128;
|
else if (bri == 0) bri = 128;
|
||||||
} else {
|
} else {
|
||||||
briLast = briS; bri = 0;
|
briLast = briS; bri = 0;
|
||||||
}
|
}
|
||||||
|
if (bootPreset > 0) {
|
||||||
|
applyPreset(bootPreset, CALL_MODE_INIT);
|
||||||
|
}
|
||||||
colorUpdated(CALL_MODE_INIT);
|
colorUpdated(CALL_MODE_INIT);
|
||||||
|
|
||||||
// init relay pin
|
// init relay pin
|
||||||
@ -439,6 +459,7 @@ void WLED::initAP(bool resetAP)
|
|||||||
udp2Connected = notifier2Udp.begin(udpPort2);
|
udp2Connected = notifier2Udp.begin(udpPort2);
|
||||||
}
|
}
|
||||||
e131.begin(false, e131Port, e131Universe, E131_MAX_UNIVERSE_COUNT);
|
e131.begin(false, e131Port, e131Universe, E131_MAX_UNIVERSE_COUNT);
|
||||||
|
ddp.begin(false, DDP_DEFAULT_PORT);
|
||||||
|
|
||||||
dnsServer.setErrorReplyCode(DNSReplyCode::NoError);
|
dnsServer.setErrorReplyCode(DNSReplyCode::NoError);
|
||||||
dnsServer.start(53, "*", WiFi.softAPIP());
|
dnsServer.start(53, "*", WiFi.softAPIP());
|
||||||
@ -591,10 +612,10 @@ void WLED::initConnection()
|
|||||||
|
|
||||||
void WLED::initInterfaces()
|
void WLED::initInterfaces()
|
||||||
{
|
{
|
||||||
IPAddress ipAddress = Network.localIP();
|
|
||||||
DEBUG_PRINTLN(F("Init STA interfaces"));
|
DEBUG_PRINTLN(F("Init STA interfaces"));
|
||||||
|
|
||||||
#ifndef WLED_DISABLE_HUESYNC
|
#ifndef WLED_DISABLE_HUESYNC
|
||||||
|
IPAddress ipAddress = Network.localIP();
|
||||||
if (hueIP[0] == 0) {
|
if (hueIP[0] == 0) {
|
||||||
hueIP[0] = ipAddress[0];
|
hueIP[0] = ipAddress[0];
|
||||||
hueIP[1] = ipAddress[1];
|
hueIP[1] = ipAddress[1];
|
||||||
@ -612,14 +633,13 @@ void WLED::initInterfaces()
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
strip.service();
|
strip.service();
|
||||||
|
|
||||||
// Set up mDNS responder:
|
// Set up mDNS responder:
|
||||||
if (strlen(cmDNS) > 0) {
|
if (strlen(cmDNS) > 0) {
|
||||||
#ifndef WLED_DISABLE_OTA
|
// "end" must be called before "begin" is called a 2nd time
|
||||||
if (!aOtaEnabled) //ArduinoOTA begins mDNS for us if enabled
|
// see https://github.com/esp8266/Arduino/issues/7213
|
||||||
MDNS.begin(cmDNS);
|
MDNS.end();
|
||||||
#else
|
|
||||||
MDNS.begin(cmDNS);
|
MDNS.begin(cmDNS);
|
||||||
#endif
|
|
||||||
|
|
||||||
DEBUG_PRINTLN(F("mDNS started"));
|
DEBUG_PRINTLN(F("mDNS started"));
|
||||||
MDNS.addService("http", "tcp", 80);
|
MDNS.addService("http", "tcp", 80);
|
||||||
@ -642,25 +662,27 @@ void WLED::initInterfaces()
|
|||||||
initBlynk(blynkApiKey, blynkHost, blynkPort);
|
initBlynk(blynkApiKey, blynkHost, blynkPort);
|
||||||
#endif
|
#endif
|
||||||
e131.begin(e131Multicast, e131Port, e131Universe, E131_MAX_UNIVERSE_COUNT);
|
e131.begin(e131Multicast, e131Port, e131Universe, E131_MAX_UNIVERSE_COUNT);
|
||||||
|
ddp.begin(false, DDP_DEFAULT_PORT);
|
||||||
reconnectHue();
|
reconnectHue();
|
||||||
initMqtt();
|
initMqtt();
|
||||||
interfacesInited = true;
|
interfacesInited = true;
|
||||||
wasConnected = true;
|
wasConnected = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
byte stacO = 0;
|
|
||||||
uint32_t lastHeap;
|
|
||||||
unsigned long heapTime = 0;
|
|
||||||
|
|
||||||
void WLED::handleConnection()
|
void WLED::handleConnection()
|
||||||
{
|
{
|
||||||
if (millis() < 2000 && (!WLED_WIFI_CONFIGURED || apBehavior == AP_BEHAVIOR_ALWAYS))
|
static byte stacO = 0;
|
||||||
|
static uint32_t lastHeap = UINT32_MAX;
|
||||||
|
static unsigned long heapTime = 0;
|
||||||
|
unsigned long now = millis();
|
||||||
|
|
||||||
|
if (now < 2000 && (!WLED_WIFI_CONFIGURED || apBehavior == AP_BEHAVIOR_ALWAYS))
|
||||||
return;
|
return;
|
||||||
if (lastReconnectAttempt == 0)
|
if (lastReconnectAttempt == 0)
|
||||||
initConnection();
|
initConnection();
|
||||||
|
|
||||||
// reconnect WiFi to clear stale allocations if heap gets too low
|
// reconnect WiFi to clear stale allocations if heap gets too low
|
||||||
if (millis() - heapTime > 5000) {
|
if (now - heapTime > 5000) {
|
||||||
uint32_t heap = ESP.getFreeHeap();
|
uint32_t heap = ESP.getFreeHeap();
|
||||||
if (heap < JSON_BUFFER_SIZE+512 && lastHeap < JSON_BUFFER_SIZE+512) {
|
if (heap < JSON_BUFFER_SIZE+512 && lastHeap < JSON_BUFFER_SIZE+512) {
|
||||||
DEBUG_PRINT(F("Heap too low! "));
|
DEBUG_PRINT(F("Heap too low! "));
|
||||||
@ -668,7 +690,7 @@ void WLED::handleConnection()
|
|||||||
forceReconnect = true;
|
forceReconnect = true;
|
||||||
}
|
}
|
||||||
lastHeap = heap;
|
lastHeap = heap;
|
||||||
heapTime = millis();
|
heapTime = now;
|
||||||
}
|
}
|
||||||
|
|
||||||
byte stac = 0;
|
byte stac = 0;
|
||||||
@ -688,7 +710,7 @@ void WLED::handleConnection()
|
|||||||
if (stac)
|
if (stac)
|
||||||
WiFi.disconnect(); // disable search so that AP can work
|
WiFi.disconnect(); // disable search so that AP can work
|
||||||
else
|
else
|
||||||
initConnection(); // restart search
|
initConnection(); // restart search
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -706,9 +728,9 @@ void WLED::handleConnection()
|
|||||||
interfacesInited = false;
|
interfacesInited = false;
|
||||||
initConnection();
|
initConnection();
|
||||||
}
|
}
|
||||||
if (millis() - lastReconnectAttempt > ((stac) ? 300000 : 20000) && WLED_WIFI_CONFIGURED)
|
if (now - lastReconnectAttempt > ((stac) ? 300000 : 20000) && WLED_WIFI_CONFIGURED)
|
||||||
initConnection();
|
initConnection();
|
||||||
if (!apActive && millis() - lastReconnectAttempt > 12000 && (!wasConnected || apBehavior == AP_BEHAVIOR_NO_CONN))
|
if (!apActive && now - lastReconnectAttempt > 12000 && (!wasConnected || apBehavior == AP_BEHAVIOR_NO_CONN))
|
||||||
initAP();
|
initAP();
|
||||||
} else if (!interfacesInited) { // newly connected
|
} else if (!interfacesInited) { // newly connected
|
||||||
DEBUG_PRINTLN("");
|
DEBUG_PRINTLN("");
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// version code in format yymmddb (b = daily build)
|
// version code in format yymmddb (b = daily build)
|
||||||
#define VERSION 2109220
|
#define VERSION 2110021
|
||||||
|
|
||||||
//uncomment this if you have a "my_config.h" file you'd like to use
|
//uncomment this if you have a "my_config.h" file you'd like to use
|
||||||
//#define WLED_USE_MY_CONFIG
|
//#define WLED_USE_MY_CONFIG
|
||||||
@ -33,7 +33,9 @@
|
|||||||
#endif
|
#endif
|
||||||
#define WLED_ENABLE_ADALIGHT // saves 500b only
|
#define WLED_ENABLE_ADALIGHT // saves 500b only
|
||||||
//#define WLED_ENABLE_DMX // uses 3.5kb (use LEDPIN other than 2)
|
//#define WLED_ENABLE_DMX // uses 3.5kb (use LEDPIN other than 2)
|
||||||
#define WLED_ENABLE_LOXONE // uses 1.2kb
|
#ifndef WLED_DISABLE_LOXONE
|
||||||
|
#define WLED_ENABLE_LOXONE // uses 1.2kb
|
||||||
|
#endif
|
||||||
#ifndef WLED_DISABLE_WEBSOCKETS
|
#ifndef WLED_DISABLE_WEBSOCKETS
|
||||||
#define WLED_ENABLE_WEBSOCKETS
|
#define WLED_ENABLE_WEBSOCKETS
|
||||||
#endif
|
#endif
|
||||||
@ -85,6 +87,7 @@
|
|||||||
#include <WiFiUdp.h>
|
#include <WiFiUdp.h>
|
||||||
#include <DNSServer.h>
|
#include <DNSServer.h>
|
||||||
#ifndef WLED_DISABLE_OTA
|
#ifndef WLED_DISABLE_OTA
|
||||||
|
#define NO_OTA_PORT
|
||||||
#include <ArduinoOTA.h>
|
#include <ArduinoOTA.h>
|
||||||
#endif
|
#endif
|
||||||
#include <SPIFFSEditor.h>
|
#include <SPIFFSEditor.h>
|
||||||
@ -224,11 +227,7 @@ WLED_GLOBAL bool rlyMde _INIT(true);
|
|||||||
WLED_GLOBAL bool rlyMde _INIT(RLYMDE);
|
WLED_GLOBAL bool rlyMde _INIT(RLYMDE);
|
||||||
#endif
|
#endif
|
||||||
#ifndef IRPIN
|
#ifndef IRPIN
|
||||||
#ifdef WLED_DISABLE_INFRARED
|
WLED_GLOBAL int8_t irPin _INIT(-1);
|
||||||
WLED_GLOBAL int8_t irPin _INIT(-1);
|
|
||||||
#else
|
|
||||||
WLED_GLOBAL int8_t irPin _INIT(4);
|
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
WLED_GLOBAL int8_t irPin _INIT(IRPIN);
|
WLED_GLOBAL int8_t irPin _INIT(IRPIN);
|
||||||
#endif
|
#endif
|
||||||
@ -565,7 +564,7 @@ WLED_GLOBAL JsonDocument* fileDoc;
|
|||||||
WLED_GLOBAL bool doCloseFile _INIT(false);
|
WLED_GLOBAL bool doCloseFile _INIT(false);
|
||||||
|
|
||||||
// presets
|
// presets
|
||||||
WLED_GLOBAL int16_t currentPreset _INIT(-1);
|
WLED_GLOBAL int8_t currentPreset _INIT(-1);
|
||||||
|
|
||||||
WLED_GLOBAL byte errorFlag _INIT(0);
|
WLED_GLOBAL byte errorFlag _INIT(0);
|
||||||
|
|
||||||
@ -587,6 +586,7 @@ WLED_GLOBAL AsyncMqttClient* mqtt _INIT(NULL);
|
|||||||
WLED_GLOBAL WiFiUDP notifierUdp, rgbUdp, notifier2Udp;
|
WLED_GLOBAL WiFiUDP notifierUdp, rgbUdp, notifier2Udp;
|
||||||
WLED_GLOBAL WiFiUDP ntpUdp;
|
WLED_GLOBAL WiFiUDP ntpUdp;
|
||||||
WLED_GLOBAL ESPAsyncE131 e131 _INIT_N(((handleE131Packet)));
|
WLED_GLOBAL ESPAsyncE131 e131 _INIT_N(((handleE131Packet)));
|
||||||
|
WLED_GLOBAL ESPAsyncE131 ddp _INIT_N(((handleE131Packet)));
|
||||||
WLED_GLOBAL bool e131NewData _INIT(false);
|
WLED_GLOBAL bool e131NewData _INIT(false);
|
||||||
|
|
||||||
// led fx library object
|
// led fx library object
|
||||||
@ -598,7 +598,6 @@ WLED_GLOBAL bool doInitBusses _INIT(false);
|
|||||||
// Usermod manager
|
// Usermod manager
|
||||||
WLED_GLOBAL UsermodManager usermods _INIT(UsermodManager());
|
WLED_GLOBAL UsermodManager usermods _INIT(UsermodManager());
|
||||||
|
|
||||||
|
|
||||||
// enable additional debug output
|
// enable additional debug output
|
||||||
#ifdef WLED_DEBUG
|
#ifdef WLED_DEBUG
|
||||||
#ifndef ESP8266
|
#ifndef ESP8266
|
||||||
@ -628,7 +627,7 @@ WLED_GLOBAL UsermodManager usermods _INIT(UsermodManager());
|
|||||||
WLED_GLOBAL unsigned long debugTime _INIT(0);
|
WLED_GLOBAL unsigned long debugTime _INIT(0);
|
||||||
WLED_GLOBAL int lastWifiState _INIT(3);
|
WLED_GLOBAL int lastWifiState _INIT(3);
|
||||||
WLED_GLOBAL unsigned long wifiStateChangedTime _INIT(0);
|
WLED_GLOBAL unsigned long wifiStateChangedTime _INIT(0);
|
||||||
WLED_GLOBAL int loops _INIT(0);
|
WLED_GLOBAL unsigned long loops _INIT(0);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ARDUINO_ARCH_ESP32
|
#ifdef ARDUINO_ARCH_ESP32
|
||||||
|
@ -198,7 +198,7 @@ void extractPin(JsonObject &obj, const char *key) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// oappens used pins by scanning JsonObject (1 level deep)
|
// oappend used pins by scanning JsonObject (1 level deep)
|
||||||
void fillUMPins(JsonObject &mods)
|
void fillUMPins(JsonObject &mods)
|
||||||
{
|
{
|
||||||
for (JsonPair kv : mods) {
|
for (JsonPair kv : mods) {
|
||||||
@ -389,7 +389,7 @@ void getSettingsJS(byte subPage, char* dest)
|
|||||||
uint8_t nPins = bus->getPins(pins);
|
uint8_t nPins = bus->getPins(pins);
|
||||||
for (uint8_t i = 0; i < nPins; i++) {
|
for (uint8_t i = 0; i < nPins; i++) {
|
||||||
lp[1] = 48+i;
|
lp[1] = 48+i;
|
||||||
if (pinManager.isPinOk(pins[i])) sappend('v',lp,pins[i]);
|
if (pinManager.isPinOk(pins[i]) || bus->getType()<=15) sappend('v',lp,pins[i]);
|
||||||
}
|
}
|
||||||
sappend('v',lc,bus->getLength());
|
sappend('v',lc,bus->getLength());
|
||||||
sappend('v',lt,bus->getType());
|
sappend('v',lt,bus->getType());
|
||||||
|
Loading…
Reference in New Issue
Block a user