Newer
Older
This document describes the necessary steps from setting up the development environment to uploading the compiled software to the esp8266.
- **esp8266 v2.7.x required**
- FastLED v3.2.2+ required
- ESP8266-FS (Sketch-Data-Uploader) version **[5.0+](https://github.com/esp8266/arduino-esp8266fs-plugin/releases)**
- (Optional) Espalexa library for Alexa integration
- (Optional) ArduinoOTA library and Python 2.7 for wireless firmware updating
- (Optional) PubSubClient and ArduinoJson libraries for MQTT/Homeassistant support
- (Recommended) [IoT-Audio-Visualization-Center](https://github.com/NimmLor/IoT-Audio-Visualization-Center), Windows Application to sync the LEDs with music
Lorenz Nimmervoll
committed
**The software can be found on [GitHub](https://github.com/NimmLor/esp8266-fastled-iot-webserver).**
Lorenz Nimmervoll
committed
For beginners I would recommend watching this setup tutorial below.
The video wasn't updated for the new update, so the library versions are incorrect and the config area looks different.
Lorenz Nimmervoll
committed
[](http://www.youtube.com/watch?v=d-uNkFHoMHc "Setup Tutorial")
Lorenz Nimmervoll
committed
1. The code requires a recent version of the **Arduino IDE**, which can be downloaded [here]( https://www.arduino.cc/en/Main/Software ).
Lorenz Nimmervoll
committed
2. The ESP8266 boards need to be added to the Arduino IDE:
Click on *File >> Preferences* and paste the following URL into the **Additional Boards Manager URLs** field: `http://arduino.esp8266.com/stable/package_esp8266com_index.json`
Lorenz Nimmervoll
committed

3. Install the CH340/341 USB Driver
- Download and install the driver from e.g. [Arduined]( https://www.arduined.eu/ch340-windows-8-driver-download/ )
4. The Boards need be installed in the Arduino IDE
Click on *Tools >> Board >> Boards Manager* and install **esp8266, version 2.7.0**
Lorenz Nimmervoll
committed

5. The LED Library **FastLED** is also required
Click on *Sketch >> Include Library >> Manage Libraries* and install **FastLED, version 3.3.2**
Lorenz Nimmervoll
committed

6. Install the *ESP8266FS* **Sketch Data Upload Tool**:
> - Download the tool: https://github.com/esp8266/arduino-esp8266fs-plugin/releases.
Lorenz Nimmervoll
committed
>
> - In your Arduino sketchbook directory, create `tools` directory if it doesn't exist yet
>
> - Unpack the tool into `tools` directory (the path will look like `/Arduino/tools/ESP8266FS/tool/esp8266fs.jar`)
>
> - Restart Arduino IDE
>
> // [source]( http://arduino.esp8266.com/Arduino/versions/2.3.0/doc/filesystem.html#uploading-files-to-file-system )
7. *(Optional)* Install *Espalexa* for Amazon Alexa Support
Lorenz Nimmervoll
committed
Click on *Sketch >> Include Library >> Manage Libraries* and install **Espalexa, version 2.4.4**
Lorenz Nimmervoll
committed

8. *(Optional)* Install ArduinoOTA for flashing the ESP8266 via WiFi (requires Python 2.7)
Click on *Sketch >> Include Library >> Manage Libraries* and install **ArduinoOTA**

9. (Optional) Install Python for OTA and add it to Path, afterwards restart your PC

10. *(Optional)* Install PubSubClient and ArduinoJson for MQTT/Homeassistant support
Click on *Sketch >> Include Library >> Manage Libraries* and install PubSubClient, version **2.7.0** and ArduinoJson version **6.15.1**
Lorenz Nimmervoll
committed
Lorenz Nimmervoll
committed
Lorenz Nimmervoll
committed
### 2.1 General configuration
1. Download the Project from the [Releases on Github]( https://github.com/NimmLor/esp8266-fastled-iot-webserver/releases ) and extract the archive
Lorenz Nimmervoll
committed
2. Open the **.ino** file inside the folder in the Arduino IDE
3. Create the **Secrets.h** file, if the repository was cloned
Lorenz Nimmervoll
committed
*Top Right Corner >> New Tab >> "Secrets.h"*

4. Paste the following code and fill in your WiFi credentials, if you need MQTT fill in the credentials too
Lorenz Nimmervoll
committed
```c++
// AP mode password
Lorenz Nimmervoll
committed
// Wi-Fi network to connect to (if not in AP mode)
char* ssid = "your-ssid";
char* password = "your-password";
Lorenz Nimmervoll
committed
// only required when MQTT is enabled
const char* mqttUser = "YourMqttUser";
const char* mqttPassword = "YourMqttUserPassword";
```
Lorenz Nimmervoll
committed

In the esp8266-fastled-iot-webserver.ino file there are many parameters to change and tweak the essential settings are:
- `LED_TYPE`: The type of LED strip that is used (WS2812B, APA102, ...)
- `DATA_PIN`: The pin where the LED-Strip is connected
- `CLK_PIN`: Additional clock pin when using LED-Strips with 4 pins.
*Note: If you are using another controller such as a clone or a NodeMCU board, you may need to configure the pin assignment for FastLED, See also [this entry in the FastLED Wiki](https://github.com/FastLED/FastLED/wiki/ESP8266-notes))*
- `CORRECTION`: Affects color calibration, if colors appear weird, you might want to use `TypicalLEDStrip`
- `COLOR_ORDER`: Ordering of the colors sent, **depends on the LED-Strip**, if colors are swapped, then swap the Letters (RGB, RBG, GRB, GBR, BRG, BGR)
- `MILLI_AMPS`: How much current your power supply can handle in mA
- `VOLTS`: How much voltage your power supply delivers in Volts
- `HOSTNAME`: Name of the Device, **don't use whitespaces, use "-" instead when enabling mDNS**
- **Important**: `DEVICE_TYPE` defines what device you are using, see the list below the code and choose the number

Lorenz Nimmervoll
committed
Lorenz Nimmervoll
committed
Lorenz Nimmervoll
committed
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
Use this type when it is used as a regular LED strip, or if it used as an DIY-Ambilight.
Parameters:
- `NUM_LEDS`: The amount of LEDs on the LED-Strip
- `BAND_GROUPING`: The size of an LED group that received a packet,
- **The number of LEDs must be divisible by the specified value without remainder!**
- Choose a value that results in a group size between 15 and 40
- Use this when using 50 LEDs+
- Example: *120 LEDs / 6 Grouping = 20*
#### 2.2.2 [1] LED-Matrix
This type is created for LED-matrices that have LEDs arranged in alternating directions after every column.
Parameters:
- `LENGTH`: Amount of columns
- `HEIGHT`: Amount of rows
- `AddLogoVisualizers`: Adds special patterns with the [HBz](https://www.youtube.com/channel/UCj6ljqIWs4Sfk3TBIn1xP6Q) Logo
#### 2.2.3 [2] 7-Segment Clock
This type is used for the [small](https://www.thingiverse.com/thing:3117494) or [large](https://www.thingiverse.com/thing:2968056) 7-segment clock. It uses an additional NTP time server to get an accurate time.
Parameters:
- `NTP_REFRESH_INTERVAL_SECONDS`: Interval for re-syncing the time with the NTP server
- `ntpServerName`: Address of the NTP-Server
- `t_offset`: additional offset that is added to the time
- `NUM_LEDS`: The total amount of LEDs used
- `DigitX:` Starting position of each segment
#### 2.2.4 [3] Desk Lamp
This type is used for the [twisted](https://www.thingiverse.com/thing:4129249) or [round](https://www.thingiverse.com/thing:3676533) desk lamp. The animation were adapted to appear correct on the lamp due to the alternating directions.
Parameters:
- `LINE_COUNT`: Amount of the LED strip lines, (with the provided cores it's 8)
- `LEDS_PER_LINE`: Amount of the LEDs inside one triangle
#### 2.2.4 [4] Nanoleaf Replica
This type is used for the [3D-Printed Nanoleafs](https://www.thingiverse.com/thing:3354082). The animation were adapted to appear correct on the triangles.
Lorenz Nimmervoll
committed
Lorenz Nimmervoll
committed
- `LEAFCOUNT`: Amount of the LED strip lines, (with the provided cores it's 8)
- `PIXELS_PER_LEAF`: Amount of the LEDs per strip
Lorenz Nimmervoll
committed
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#### 2.2.5 [5] Animated RGB-Logos
This type is used for the [Twenty-One-Pilots](https://www.thingiverse.com/thing:3523487) or the [Thingiverse](https://www.thingiverse.com/thing:3531086) animated RGB-Logo.
Remove the "//" in front of the defines to choose the logo.
Look for *ANIMATED RGB LOGO CONFIG* further down the code for configuration.
### 2.3 Feature configuration
#### 2.3.1 Overview
- **ACCESS_POINT_MODE**: The esp8266 will function as an access point instead of connecting to one
- **ENABLE_OTA_SUPPORT**: Enables the user to update the firmware wireless
- **ENABLE_MULTICAST_DNS**: allows to access the UI via "http://<HOSTNAME>.local/"
- **RANDOM_AUTOPLAY_PATTERN**: plays patterns at random in autoplay mode
- **AUTOPLAY_IGNORE_UDP_PATTERNS**: removes patterns that rely on incoming data
- **ENABLE_ALEXA_SUPPORT**: Allows to control the LEDs via Amazon Alexa
- **SOUND_SENSOR_SUPPORT**: (LEGACY!) Allows to control the LEDs via a physical sound sensor
- **ENABLE_SERIAL_AMBILIGHT**: Allows to be connected to a [Lightpack](https://github.com/psieg/Lightpack) (Windows, free) or [Ambient light Application for Android](https://play.google.com/store/apps/details?id=com.sevson.androidambiapp&hl=de_AT) (Android Smart TVs, 2,79€)
- **ENABLE_MQTT_SUPPORT**: allows integration in homeassistant, requires MQTT server
#### 2.3.2 OTA support
- Requires the ArduinoOTA library and a Python 2.7 installation
- Read [this](https://randomnerdtutorials.com/esp8266-ota-updates-with-arduino-ide-over-the-air/) article for further information
- When the OTA button on the UI or the desktop app is clicked it should show up in the ports menu

#### 2.3.3 Alexa integration
6. Requires the **Espalexa** library
Lorenz Nimmervoll
committed
- The name of the device is set in the variable `ALEXA_DEVICE_NAME`
- Configuration of addition Devices
- In order to control more parameters, the code allows to create additional devices that control, for instance a specific pattern or the autoplay functionality
- The specific pattern refers to the zero-based index of the patterns array, just count up to your desired pattern, ignore patterns that are commented out or aren't affected by the `DEVICE_TYPE`
Lorenz Nimmervoll
committed
- To make use of these features remove the `//` in front of the `#define ...`

#### 2.3.4 MQTT configuration
- Installation of "PubSubClient" and "ArduinoJson" libraries required
- Requires `ENABLE_MQTT_SUPPORT`
- It's preconfigured for Home Assistant Mosquitto MQTT service
- Enables sync with home assistant and from there to Google Assistant
Lorenz Nimmervoll
committed
## 3. Upload
Lorenz Nimmervoll
committed
1. Configure the upload settings in **Tools** menu, there are **3 essential settings**
- **Board: LOLIN(WEMOS) D1 R2 & mini**: when using the recommended Wemos D1 Mini
- **Flash Size: "4MB (FS:1MB OTA:~1019KB)"**
- **Port:** COMxx, if there are multiple ports, then replug your esp8266 to find the correct port. (*Note:* COM1 is usually your PCs internal parallel port and not the esp8266)
Lorenz Nimmervoll
committed

2. Hit the **Upload** button to upload the code

### 3.2 Sketch-Data upload
This step is essential, it uploads the files for the UI (Html, JS, CSS, Icons), if it is skipped the server will just show "not found :/"
Click on *Tools >> ESP8266 Sketch Data Upload*
Lorenz Nimmervoll
committed

### 3.3 Connecting to the esp8266
1. Open the **Serial Monitor** to find the IP address of esp8266
- Click on *Tools >> Serial Monitor*
- When pressing the *Reset-Button* on the esp8266, the console should print the IP-Address
5. Connect to the UI by opening http://ip_address/ in your browser of choice, this works on mobile devices too. If mDNS was enabled, you should be able to access the UI via http://<Hostname>.local/
## 4. Alexa configuration
Lorenz Nimmervoll
committed
The connect your esp8266, the "Pairing-Mode" mode must be activated to add it to your Smart-Home devices in the alexa app.
Open http://ip_of_the_esp8266/alexa in your browser, the window should tell you that it is ready to be discovered by your alexa device.
**Important**: The esp8266 and you Amazon Echo device **must** be in the same network.
Just say to your echo, "Alexa, discover devices". This phrase can be spoken out in English on any echo device independent of the device's language.
After around 30 seconds, Alexa should respond with the devices that were found. These should show up in the Alexa app.
