You can download latest build with artifacts from GitHub Releases page
Rewrite of https://github.com/AlexGyver/GyverLamp in C++ and classes for PlatformIO: https://platformio.org/platformio-ide
Discuss building, modifications, deployment, etc. in telegram group: @GyverLampCpp
Contains effects ported from:
- https://community.alexgyver.ru/threads/wifi-lampa-budilnik-obsuzhdenie-proshivki-ot-gunner47.2418/page-72#post-33652
- https://github.com/pixelmatix/aurora
- https://github.com/marcmerlin/FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos
Contains DMX core ported from:
All original code is owned by it's authors
- esp8266 with 4MB flash. Environment name -
nodemcu
- esp-01s board woth 1MB flash. Environment name -
esp01s
- Sonoff (Basic) board with 1MB flash. Environment name -
sonoff-r1
- Sonoff (Basic) board with 4MB flash. Environment name -
sonoff-r1-4m
- Any ESP32 board. Environment name -
esp32dev
Note: 1MB boards are not capable of OTA firmware updates
- build firmware:
pio run -e nodemcu
- build filesystem:
pio run --target buildfs -e nodemcu
- grab
data.zip
from latest release (https://github.com/CODeRUS/GyverLampCpp/releases) - extract archive to project's root folder
- build the filesystem in Platform IO
- build https://github.com/CODeRUS/led-lamp-webui
- build https://github.com/CODeRUS/wifimanager-react-page
- copy gzipped artifacts without folder structure to data folder
- build filesystem in Platform IO
PLEASE! Do not forget to build or to download and extract data artifacts from releases page! It is not present in git repository!
Then just upload built fs to module using pio run --target uploadfs -e nodemcu
src/EffectsManager.cpp
- comment out unused effects here. Comment out incudes at top and RegisterEffect from bottom of file.
data/effects.json
- default options for effects
i - id of effect, should match one in src/EffectsManager.cpp
n - name of eefect visible in ui and Home Assistant
s - effect speed
l - effect scale
b - effect brightness
data/settings.json
- main settings of firmware
matrix - settings of matrix
pin - GPIO number of pin used to communicate with matrix leds
type - match with Framebuffer GFX: https://github.com/marcmerlin/Framebuffer_GFX/blob/master/Framebuffer_GFX.h#L43
values should be combined. Example: NEO_MATRIX_ZIGZAG + NEO_MATRIX_BOTTOM + NEO_MATRIX_RIGHT + NEO_MATRIX_ROWS (or NEO_MATRIX_COLUMNS) = 11 (or 15). Matrix test effect at boot: Pixels started from left bottom. Red is horizontal from left to right, Green is vertical from bottom to top.
rotation - value from 0 to 3, each value by +90 degree.
dither - enable or disable dithering: https://github.com/FastLED/FastLED/wiki/FastLED-Temporal-Dithering
order - pixel order for leds. use lowercase 3 letters: "rgb", "grb" or similar
connection - connection settings
mdns - domain name in .local
apName - access point name for initial configuration
apPassword - access point password
ntpServer - time server name
ntpOffset - time offset in seconds
hostname - hostname for local network
ssid - name of wifi network to connect
bssid - mac of wifi network, use for connection to certain access point
password - password of wifi network to connect
login - login for connection to wifi network (WPA-E)
mqtt - mqtt settings
host - server address
port - server port
username - username
password - password
uniqueId - unique identifier for entity light in Home Assistant
name - device name in Home Assistant
model - model name in Home Assistant
button - button settings
pin - GPIO pin number, set to 255 if you have no button connected
type - 1 if pin button is connected to 3v3, 0 if button connected to GND
state - set to 1 to invert button state, 0 for normal operation
Please refer to https://github.com/esp8266/Arduino/blob/master/variants/nodemcu/pins_arduino.h#L40 for pin numbers if using nodemcu-like ESP8266 boards! This configuration uses numeric gpio pins, not the ones marked as D0-D10 on the board!
If lamp is turned on while button is pressed, it will boot into safe mode. Lamp will try to connect to last known network, otherwise it will create access point. You can connect to lamp with your mobile device using wifi and upload correct json settings or firmware files.
Please do not use GPIO0, GPIO2, GPIO15 (D3, D4 and D8 on nodemcu boards) for button connection, your board may fail to boot at all if button will be pressed during startup: https://www.forward.com.au/pfod/ESP8266/GPIOpins/index.html
You can upload firmware.bin
, fs.bin
, settings.json
, effects.json
with OTA using web interface.
NOTE: Boards with 1MB flash memory (see Supported boards) don't have enough space for firmware/fs updates, but capable of json configuration updates
Please check MQTT.md
- Rewritten in C++ and classes for easier maintenance
- ESP32 support
- Sonoff Basic support
- Asynchronous WiFi Manager
- FastLED_NeoMatrix library instead of Gyver handmade one (sorry)
- Settings moved to SPIFFS json file
- Clock effects
- Spectrometer effect (requires microphone module or aux, should be uncommented in EffectsManager.cpp and added to effects.json)
- React wifi manager self-coded component
- React web with controls self-coded component. No need to install client applications
- Firmware update page, allowing to upload firmware bin, filesystem bin or settings json
- MQTT for Home Assistant integration
- Sonoff Basic relay and led are bound to led state
- DMX input via e131 and Art-Net protocols
- Not compatible with any client application. You can connect to lamp directly using any web browser. Or use MQTT/HomeAssistant to control it
- Alarms not implemented
- Alarms support
Please check by link: https://gist.github.com/CODeRUS/f025fa5c12d6eaad6878576e8255913a
If you have any issues with firmware or effects and you cannot find answers here check the closed issues on Github Issues page or leave message in Telegram Group
- Try to disable dithering in
settings.json
setdither
tofalse
- Try to upload
settings.json
file via OTA updates