Skip to content

Commit

Permalink
V0.95
Browse files Browse the repository at this point in the history
- Rebranding AWTRIX Light to AWTRIX 3

- **Enhancements:**
  - Implemented median and mean filters for more accurate processing of raw data from LDR and BATT sensors.
  - Added Cyrillic support, limited to UPPERCASE letters. Issue #467 closed. 🇷🇺
  - Introduced overlays for weather animations accessible via the /settings API or customapp/notifications. Available overlays: clear, snow, drizzle, rain, storm, thunder, frost.  closes #454

- **Features:**
  - Added AP Mode timeout configuration via dev.json. ⏱️
  - The hostname isnt the same as the MQTT prefix anymore.  Instead you can set "hostname" in your dev.json.  🏠
  - Supports SSIDs with 32 characters. 🔒
  - Web port can now be changed via dev.json. 🌐
  - Unified firmware versions for peripherals, allowing Ulanzi firmware to control DFPlayer and read temperature sensors and vice versa. Only port mapping differs. DFPlayer can be enabled in dev.json. 🔄

- **Bug Fixes:**
  - Resolved issue where using custom apps and sending text in colored fragments prevented reverting to a single color. Issue #464 closed. 🐛
  - Fixed URL forwarding in the web interface. Issue #501 closed. 🔗

- **Miscellaneous:**
  - Added functionality to control the volume of the buzzer or DFPlayer via on-screen menu or settings API. 🔊
  - Enabled reset button on the back of Ulanzi; holding it for 5 seconds initiates a full reset of the AWTRIX firmware. 🔧
  • Loading branch information
Blueforcer committed Mar 12, 2024
1 parent d9ad8e8 commit 636220f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ You can adjust each property in the JSON object according to your preferences. I
| `TEMP` | boolean | Enable or disable the native temperature app (requires reboot). | `true`/`false` | true |
| `BAT` | boolean | Enable or disable the native battery app (requires reboot). | `true`/`false` | true |
| `MATP` | boolean | Enable or disable the matrix. Similar to `power` Endpoint but without the animation. | `true`/`false` | true |
| `VOL` | integer | Allows to set the Volume of the DFplayer (Only for **old** AWTRIX2.0 upgrades) | 0-30 | true |
| `VOL` | integer | Allows to set the Volume of the Buzzer and DFplayer | 0-30 | true |
| `OVERLAY` | string | Sets a global effect overlay (cannot be used with app specific overlays) | Varies (see below) | N/A |

**Color Values**: Can either be an RGB array (e.g., `[255,0,0]`) or a valid 6-digit hexadecimal color value (e.g., "#FF0000" for red).
Expand Down
2 changes: 1 addition & 1 deletion src/DisplayManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "ServerManager.h"
#include "MenuManager.h"
#include "Apps.h"
#include "Effects.h"
#include "effects.h"
#include "Overlays.h"
#include "Dictionary.h"
#include <set>
Expand Down

0 comments on commit 636220f

Please sign in to comment.