-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial support for ESP32-C3, ESP32-S2, ESP32-S3 (#112)
- ***Breaking changes***: requires `Glow Worm Luciferin` (v5.11.8) - **[Added support for ESP32-C3, ESP32-S2, ESP32-S3](https://github.com/sblantipodi/firefly_luciferin/wiki/Compatible-Hardware).** Lolin ESP32-C3, Lolin ESP32-S2 and Lolin ESP32-S3 are now fully compatible with the existing [Luciferin Official PCB](https://github.com/sblantipodi/firefly_luciferin/wiki/Ready-to-print-PCB). TinyS2 and TinyS3 are now compatible with the existing [Luciferin Module](https://github.com/sblantipodi/firefly_luciferin/wiki/Ready-to-print-PCB#upgradeble-pcb-using-luciferin-modules) for the [Luciferin Official PCB](https://github.com/sblantipodi/firefly_luciferin/wiki/Ready-to-print-PCB). Closes [#46](sblantipodi/glow_worm_luciferin#46). - Added **[support for DotStar LED strips](https://github.com/sblantipodi/firefly_luciferin/wiki/Compatible-Hardware#led-strip-ws2812bsk6812apa102sk9812-5v).** Closes [#42](sblantipodi/glow_worm_luciferin#42). - Added the possibility to **[configure GPIOs for Relay, Button and LDR](https://github.com/sblantipodi/firefly_luciferin/wiki/Supported-GPIO-and-Baud-Rate)**. - Added the possibility to **[switch profiles through MQTT](https://github.com/sblantipodi/firefly_luciferin/wiki/Home-Automation-configs)**. Closes [#110](#110). - Added **[BRG, RBG, GBR color order](https://github.com/sblantipodi/firefly_luciferin/wiki/RGB-and-RGBW-support#how-to-change-color-order)** support. - Improved [power saving](https://github.com/sblantipodi/firefly_luciferin/wiki/Power-saving-features) mode. Closes [#107](#107). - Improved existing [light effects](https://github.com/sblantipodi/firefly_luciferin/wiki/Light-effects). - Improved [aspect ratio auto detection](https://github.com/sblantipodi/firefly_luciferin/wiki/Aspect-ratio), very dark scenes do not trigger an aspect ratio switch as there is no way to know which is the correct one. - IMAX 1.85:1 format now triggers the letterbox aspect ratio. - There is now a single [Web Installer](https://sblantipodi.github.io/glow_worm_luciferin/) for both stable and beta firmware. - Reduced firmware footprint. - Removed the hard limit on the maximum number of LEDs. You can now use as many LEDs as you want as long as your microcontroller has enough memory. - Increased the priority of the capturing threads. This fixed a flickering issue that occurs while using the [smoothing effect (frame generation)](https://github.com/sblantipodi/firefly_luciferin/wiki/Smoothing-color-transitions) on Hybrid CPUs. Does not affect CPU load. - UDP broadcast collision fix. Corrects weird behaviours when using two instances of Firefly Luciferin on two or more computers on the same network with UDP stream. - Configuring the [Web Interface](https://github.com/sblantipodi/firefly_luciferin/wiki/Remote-Access#luciferin-web-interface) no longer requires an Internet connection. Closes [#52](sblantipodi/glow_worm_luciferin#52) - Fixed a bottleneck that reduced performance when driving many LEDs via USB. ESP32 was able to drive 500LEDs at 5FPS, now it can drive the same amount of LEDs at 30FPS. - Fixed an issue that prevented a profile from changing the current framerate without pausing and restarting the capture. - [Arduino Bootstrapper](https://github.com/sblantipodi/arduino_bootstrapper/releases) update (v.1.15.2).
- Loading branch information
1 parent
49dbed5
commit 7ef5c43
Showing
69 changed files
with
1,076 additions
and
504 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,4 @@ updates: | |
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
open-pull-requests-limit: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,11 +49,11 @@ jobs: | |
echo $RELEASE_VERSION | ||
echo ${{ env.RELEASE_VERSION }} | ||
shell: bash | ||
- name: Set up AdoptOpenJDK 17 | ||
- name: Set up AdoptOpenJDK 20 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
java-version: '20' | ||
architecture: x64 | ||
- name: Install submodules | ||
run: | | ||
|
@@ -103,11 +103,11 @@ jobs: | |
run: | | ||
echo $RELEASE_VERSION | ||
echo ${{ env.RELEASE_VERSION }} | ||
- name: Set up AdoptOpenJDK 17 | ||
- name: Set up AdoptOpenJDK 20 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
java-version: '20' | ||
architecture: x64 | ||
- id: get-id | ||
run: | | ||
|
@@ -162,11 +162,11 @@ jobs: | |
id=$(echo $RELEASE_VERSION | cut -dv -f2) | ||
echo "id=$id" >> $GITHUB_OUTPUT | ||
shell: bash | ||
- name: Set up AdoptOpenJDK 17 | ||
- name: Set up AdoptOpenJDK 20 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
java-version: '20' | ||
architecture: x64 | ||
- name: Set up Maven Settings for deploy | ||
uses: s4u/[email protected] | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.