Skip to content

Commit

Permalink
V0.87
Browse files Browse the repository at this point in the history
### ✨ Features
- 🎵 Adds `/rtttl` API to play a rtttl melody string directly
- 🖥️ Adds HTTP fullscreen liveview at `/fullscreen` with optional fps parameter

### 🐛 Bug Fixes
- 🎨 Fixes Matrix color for HA entity. Closes #314
- 🎨 Fixes standard indicator colors
- 🌈 Fixes moodlight bug. Closes #311
- 📆 Fixes drawing coordinates for time calendar icon. Closes #312
- 🔡 Fixes a bug with the free pixel between icon and text
- 🟠 Fixes circle drawing
- 📝 Fixes a bug while using textOffset and pushIcon. Closes #305

### 🔥 Removals
- ❌ Removes reset after X failed WiFi reconnect attempts, because some users disables WiFi over night. Closes #310
  • Loading branch information
Blueforcer committed Sep 14, 2023
1 parent 8b14a4c commit 3a9c8cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Globals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ IPAddress gateway;
IPAddress subnet;
IPAddress primaryDNS;
IPAddress secondaryDNS;
const char *VERSION = "0.85";
const char *VERSION = "0.87";

String MQTT_HOST = "";
uint16_t MQTT_PORT = 1883;
Expand Down
6 changes: 3 additions & 3 deletions src/MatrixDisplayUi.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,9 @@ class MatrixDisplayUi

int8_t update();

uint32_t indicator1Color = 63488;
uint32_t indicator2Color = 31;
uint32_t indicator3Color = 65504;
uint32_t indicator1Color = 0xFF0000;
uint32_t indicator2Color = 0x00FF00;
uint32_t indicator3Color = 0x0000FF;

bool indicator1State = false;
bool indicator2State = false;
Expand Down

0 comments on commit 3a9c8cb

Please sign in to comment.