From 0d284151bc3210ca1c9eefa5f0ffce98bda6a29a Mon Sep 17 00:00:00 2001 From: Tobias Blum Date: Fri, 16 Aug 2019 21:49:40 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index dcb0e439..f9c8fbdd 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,15 @@ McLighting (the multi-client lighting gadget) is a very cheap internet-controlla Because of it's open architecture and APIs it's easy to build new clients for different platforms (iOS, Android, Windows Universal Apps, Siri/Cortana integration, ...). +--- + +> **Hello, folks, +> the McLighting project is currently paused. Unfortunately, for personal reasons, I don't have enough time to support it in the usual way. However, the project is still available and I will help if I can find the time. Meanwhile there is also a large community of users who are happy to help you with any problems, thanks for your effort at this point. +> But there won't be any major enhancements at the moment. If you're looking for more features, please have a look at the great fork https://github.com/FabLab-Luenen/McLighting which offers support for RGBW LEDs and an extended UI. +> If there is anyone of you who would like to help continue the project. Just get in touch with me.** + +--- + [![Demo video WebClient](https://j.gifs.com/kRPrzN.gif)](https://youtu.be/rc6QVHKAXBs) [![Demo video Apple Homekit integration](https://j.gifs.com/gJP2o6.gif)](https://youtu.be/4JnGXZaPnrw) From 26a222ba7d27781a2a11d89b5d90eda8d371adc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Sarrailh?= Date: Sun, 25 Aug 2019 21:29:58 +0200 Subject: [PATCH 2/4] Comments typographic corrections in definitions.h --- Arduino/McLighting/definitions.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Arduino/McLighting/definitions.h b/Arduino/McLighting/definitions.h index 835cbeea..4dc4f1b5 100644 --- a/Arduino/McLighting/definitions.h +++ b/Arduino/McLighting/definitions.h @@ -9,7 +9,7 @@ #define BUILTIN_LED 2 // ESP-12F has the built in LED on GPIO2, see https://github.com/esp8266/Arduino/issues/2192 #define BUTTON 4 // Input pin (4 / D2) for switching the LED strip on / off, connect this PIN to ground to trigger button. -#define HOSTNAME "McLighting01" // Friedly hostname +#define HOSTNAME "McLighting01" // Friendly hostname #define HTTP_OTA // If defined, enable ESP8266HTTPUpdateServer OTA code. //#define ENABLE_OTA // If defined, enable Arduino OTA code. @@ -18,7 +18,7 @@ #define ENABLE_HOMEASSISTANT // If defined, enable Homeassistant integration, ENABLE_MQTT or ENABLE_AMQTT must be active #define ENABLE_BUTTON // If defined, enable button handling code, see: https://github.com/toblum/McLighting/wiki/Button-control //#define MQTT_HOME_ASSISTANT_SUPPORT // If defined, use AMQTT and select Tools -> IwIP Variant -> Higher Bandwidth -#define ENABLE_LEGACY_ANIMATIONS // Dont disbale this for now +#define ENABLE_LEGACY_ANIMATIONS // Dont disable this for now #define ENABLE_E131 // E1.31 implementation #define USE_HTML_MIN_GZ //comment for using index.htm & edit.htm from SPIFFs instead of PROGMEM //#define CUSTOM_WS2812FX_ANIMATIONS //uncomment and put animations in "custom_ws2812fx_animations.h" From ab8ebfcb612651b3da391dbc651fdbf68d684c50 Mon Sep 17 00:00:00 2001 From: Tobias Blum Date: Sat, 17 Oct 2020 22:32:36 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f9c8fbdd..7034d825 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ Because of it's open architecture and APIs it's easy to build new clients for di > **Hello, folks, > the McLighting project is currently paused. Unfortunately, for personal reasons, I don't have enough time to support it in the usual way. However, the project is still available and I will help if I can find the time. Meanwhile there is also a large community of users who are happy to help you with any problems, thanks for your effort at this point. > But there won't be any major enhancements at the moment. If you're looking for more features, please have a look at the great fork https://github.com/FabLab-Luenen/McLighting which offers support for RGBW LEDs and an extended UI. +> Please also have a look at the great [WLED](https://github.com/Aircoookie/WLED) project, if you want to have the latest and greatest features and interfaces for blinking LEDs you want to have today. > If there is anyone of you who would like to help continue the project. Just get in touch with me.** --- From fc52b34db623d650ecb7d70971273c9a0c975e67 Mon Sep 17 00:00:00 2001 From: Tobias Blum Date: Sat, 20 Feb 2021 21:45:52 +0100 Subject: [PATCH 4/4] Update dependencies and pin to working version --- .gitignore | 1 + platformio.ini | 16 ++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index f88ff707..c28834ef 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ clients/web/node_modules/ clients/web/\.vscode/ +.pio .pioenvs .piolibdeps lib/readme.txt diff --git a/platformio.ini b/platformio.ini index 633e1aa8..4f5efc79 100644 --- a/platformio.ini +++ b/platformio.ini @@ -37,14 +37,14 @@ board_build.flash_mode = dout upload_speed = 115200 upload_resetmethod = nodemcu lib_deps = - WiFiManager@0.14 - AsyncMqttClient - ArduinoJson - WS2812FX - NeoPixelBus - WebSockets - ESPAsyncE131 - ESPAsyncUDP + https://github.com/tzapu/WiFiManager.git#440f312 + AsyncMqttClient@0.8.2 + ArduinoJson@6.14.0 + WS2812FX@1.2.2 + NeoPixelBus@2.5.6 + WebSockets@2.2.0 + ESPAsyncE131@1.0.1 + https://github.com/me-no-dev/ESPAsyncUDP#697c75a ;PubSubClient ;neede for #define ENABLE_MQTT ;FastLED ;needed for #define CUSTOM_WS2812FX_ANIMATIONS targets_eum = erase, upload, monitor