Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/allaguna/esp-now-wled-controller
WLED Remote Control for ESP32 using ESP-NOW Protocol
https://github.com/allaguna/esp-now-wled-controller
esp-now esp32 iot remote-control wled
Last synced: 6 days ago
JSON representation
WLED Remote Control for ESP32 using ESP-NOW Protocol
- Host: GitHub
- URL: https://github.com/allaguna/esp-now-wled-controller
- Owner: AlLaguna
- License: gpl-3.0
- Created: 2024-09-17T08:50:42.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-12-06T12:24:16.000Z (about 2 months ago)
- Last Synced: 2024-12-06T13:43:48.869Z (about 2 months ago)
- Topics: esp-now, esp32, iot, remote-control, wled
- Language: C++
- Homepage:
- Size: 35.2 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WLED Remote Control for ESP32 using ESP-NOW Protocol
This project allows controlling WLED devices using an ESP32 over the ESP-NOW protocol, mimicking the functionality of a WiZmote. The ESP32 sends commands wirelessly to the WLED device, and the communication operates efficiently without needing to connect to Wi-Fi.
## Features
- **ESP-NOW Protocol**: Utilizes the low-power, fast, and efficient ESP-NOW communication method to control WLED devices.
- **WLED Control**: Commands like turning lights on/off, adjusting brightness, and switching presets are supported.
- **Touch Sensor Integration**: The ESP32 uses a touch sensor (T0) to wake from deep sleep and send control commands to the WLED device.
- **Deep Sleep Mode**: After sending a command, the ESP32 enters deep sleep to significantly reduce power consumption, making it energy-efficient for long-term usage.## Configuration
1. **Set WLED MAC Address**:
- Modify the `macAddress[]` variable in the code to match the MAC address of your WLED device.2. **Set Wi-Fi Channel**:
- Set the `CHANNEL` constant to the same channel used by your WLED device.3. **Configure WLED to Listen to ESP-NOW Events**:
- In the WLED web interface, go to **Config > WiFi setup**.
- Scroll down to the **Wireless Remote** section.
- Enable **ESP-NOW Enable Remote** and modify the `Hardware MAC` with the ESP32 MAC address.
## Usage
If everything has been configured correctly, when the T0 pin (GPIO4) is touched in the ESP32, the LEDs configured in WLED will turn on/off.
The operation can be modified.## Available Functionalities
The ESP32 remote control can trigger the following WLED functions using ESP-NOW:
1. **Turn Lights On/Off**:
- **Constant**: `ON` (1), `OFF` (2)
- Tap the touch sensor to toggle the WLED device between on and off states.2. **Adjust Brightness**:
- **Constant**: `BRIGHT_UP` (9), `BRIGHT_DOWN` (8)
- Increase or decrease the brightness of the WLED lights by sending brightness control commands.3. **Switch Between Presets**:
- **Constants**:
- `PRESET_ONE` (16): Send preset one command.
- `PRESET_TWO` (17): Send preset two command.
- `PRESET_THREE` (18): Send preset three command.
- `PRESET_FOUR` (19): Send preset four command.
- Easily switch between four preset configurations in WLED.4. **Night Mode**:
- **Constant**: `NIGHT` (3)
- Activate night mode to dim the lights to a comfortable level for evening or low-light conditions.
- - -
*Copyright (C) 2024 Álvaro Laguna**This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.**This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.**You should have received a copy of the GNU General Public License
along with this program. If not, see .*