commit
97120a196c
3 changed files with 66 additions and 2 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
@ -1,3 +1,10 @@
|
|||
clients/web/node_modules/
|
||||
|
||||
clients/web/\.vscode/
|
||||
|
||||
.pioenvs
|
||||
.piolibdeps
|
||||
lib/readme.txt
|
||||
|
||||
*.h.gch
|
||||
.clang_complete
|
||||
.gcc-flags.json
|
||||
|
|
|
@ -11,6 +11,9 @@
|
|||
[![Demo video Apple Homekit integration](https://j.gifs.com/gJP2o6.gif)](https://youtu.be/4JnGXZaPnrw)
|
||||
|
||||
___
|
||||
Update 13.05.2018:
|
||||
I've worked on a new web UI for the last weeks. It's now available as an early preview. There is a [video](https://youtu.be/lryDPMA2qpY) that shows the new features. [Try it out](https://github.com/toblum/McLightingUI) if you want and leave some feedback.
|
||||
|
||||
Update 07.04.2018:
|
||||
And even more changes to McLighting! Most of them were contributed by user @debsahu. Thank you!
|
||||
- Update arduino-esp8266 to latest, at least version 2.4.1
|
||||
|
@ -130,7 +133,7 @@ I hope I didn't miss any sources and mentioned every author. In case I forgot so
|
|||
## Todos
|
||||
- [x] MQTT support
|
||||
- [ ] Support multiple strips and control them separately or together [Issue](https://github.com/toblum/McLighting/issues/118)
|
||||
- [ ] Save favourite effects? [Issue](https://github.com/toblum/McLighting/issues/35)
|
||||
- [x] Save favourite effects? [Issue](https://github.com/toblum/McLighting/issues/35)
|
||||
- [ ] Make number of pixels, MQTT and PIN configurable via front end [Issue](https://github.com/toblum/McLighting/issues/93) and [Issue](https://github.com/toblum/McLighting/issues/101)
|
||||
- [x] OTA update [Issue](https://github.com/toblum/McLighting/issues/93)
|
||||
- [ ] Bundle webpages instead of SPIFFS [Issue](https://github.com/toblum/McLighting/issues/93)
|
||||
|
@ -149,6 +152,7 @@ I hope I didn't miss any sources and mentioned every author. In case I forgot so
|
|||
- [ ] If no wifi, at least enable button mode.
|
||||
- [ ] Also enable McLighting in Wifi AP mode.
|
||||
- [x] Make a set of NodeRed nodes.
|
||||
- [ ] IR remote support [issue](https://github.com/toblum/McLightingUI/issues/3)
|
||||
- [ ] Multiple buttons/GPIO Inputs. [Issue](https://github.com/toblum/McLighting/issues/119)
|
||||
- [ ] Music visualizer / Bring back ArtNet [Issue](https://github.com/toblum/McLighting/issues/111)
|
||||
- [ ] Display version and parameters (Number of LEDs, definition settings, ..) in the web UI [Issue](https://github.com/toblum/McLighting/issues/150)
|
||||
|
|
53
platformio.ini
Normal file
53
platformio.ini
Normal file
|
@ -0,0 +1,53 @@
|
|||
; PlatformIO Project Configuration File
|
||||
;
|
||||
; Build options: build flags, source filter
|
||||
; Upload options: custom upload port, speed and extra flags
|
||||
; Library options: dependencies, extra library storages
|
||||
; Advanced options: extra scripting
|
||||
;
|
||||
; Please visit documentation for the other options and examples
|
||||
; https://docs.platformio.org/page/projectconf.html
|
||||
|
||||
[platformio]
|
||||
src_dir = ./Arduino/McLighting/
|
||||
env_default = nodemcuv2
|
||||
description = The ESP8266 based multi-client lighting gadget
|
||||
|
||||
[common]
|
||||
build_flags =
|
||||
-DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH
|
||||
monitor_speed = 115200
|
||||
board_build.flash_mode = dout
|
||||
upload_speed = 115200
|
||||
upload_resetmethod = nodemcu
|
||||
|
||||
|
||||
[env:esp01_1m]
|
||||
board = esp01_1m
|
||||
framework = arduino
|
||||
platform = espressif8266@1.8.0
|
||||
build_flags = ${common.build_flags} -D D1=2
|
||||
monitor_speed = ${common.monitor_speed}
|
||||
upload_speed = ${common.upload_speed}
|
||||
upload_resetmethod = ${common.upload_resetmethod}
|
||||
board_build.flash_mode = dout
|
||||
|
||||
[env:nodemcuv2]
|
||||
board = nodemcuv2
|
||||
framework = arduino
|
||||
platform = espressif8266@1.8.0
|
||||
build_flags = ${common.build_flags}
|
||||
monitor_speed = ${common.monitor_speed}
|
||||
upload_speed = ${common.upload_speed}
|
||||
upload_resetmethod = ${common.upload_resetmethod}
|
||||
|
||||
|
||||
|
||||
lib_deps =
|
||||
WiFiManager@0.14
|
||||
AsyncMqttClient
|
||||
https://github.com/bblanchon/ArduinoJson.git#v6.4.0-beta
|
||||
WS2812FX
|
||||
https://github.com/debsahu/NeoAnimationFX
|
||||
NeoPixelBus
|
||||
WebSockets
|
Loading…
Reference in a new issue