Reduce TV simulator flash usage
This commit is contained in:
parent
ff083daf31
commit
13ae99edec
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
### Builds after release 0.12.0
|
### Builds after release 0.12.0
|
||||||
|
|
||||||
|
#### Build 2104211
|
||||||
|
|
||||||
|
- Replace default TV simulator effect with the version that saves 18k of flash and appears visually identical
|
||||||
|
|
||||||
#### Build 2104210
|
#### Build 2104210
|
||||||
|
|
||||||
- Added `tb` to JSON state, allowing setting the timebase (set tb=0 to start e.g. wipe effect from the beginning). Receive only.
|
- Added `tb` to JSON state, allowing setting the timebase (set tb=0 to start e.g. wipe effect from the beginning). Receive only.
|
||||||
|
@ -3852,18 +3852,13 @@ typedef struct TvSim {
|
|||||||
} tvSim;
|
} tvSim;
|
||||||
|
|
||||||
|
|
||||||
#ifndef WLED_DISABLE_FX_HIGH_FLASH_USE
|
|
||||||
#include "tv_colors.h"
|
|
||||||
#define numTVPixels (sizeof(tv_colors) / 2) // 2 bytes per Pixel (5/6/5)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
TV Simulator
|
TV Simulator
|
||||||
Modified and adapted to WLED by Def3nder, based on "Fake TV Light for Engineers" by Phillip Burgess https://learn.adafruit.com/fake-tv-light-for-engineers/arduino-sketch
|
Modified and adapted to WLED by Def3nder, based on "Fake TV Light for Engineers" by Phillip Burgess https://learn.adafruit.com/fake-tv-light-for-engineers/arduino-sketch
|
||||||
*/
|
*/
|
||||||
uint16_t WS2812FX::mode_tv_simulator(void) {
|
uint16_t WS2812FX::mode_tv_simulator(void) {
|
||||||
uint16_t nr, ng, nb, r, g, b, i, hue;
|
uint16_t nr, ng, nb, r, g, b, i, hue;
|
||||||
uint8_t hi, lo, r8, g8, b8, sat, bri, j;
|
uint8_t sat, bri, j;
|
||||||
|
|
||||||
if (!SEGENV.allocateData(sizeof(tvSim))) return mode_static(); //allocation failed
|
if (!SEGENV.allocateData(sizeof(tvSim))) return mode_static(); //allocation failed
|
||||||
TvSim* tvSimulator = reinterpret_cast<TvSim*>(SEGENV.data);
|
TvSim* tvSimulator = reinterpret_cast<TvSim*>(SEGENV.data);
|
||||||
@ -3877,35 +3872,6 @@ uint16_t WS2812FX::mode_tv_simulator(void) {
|
|||||||
SEGENV.aux1 = 0;
|
SEGENV.aux1 = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef WLED_DISABLE_FX_HIGH_FLASH_USE
|
|
||||||
/*
|
|
||||||
* this code uses the real color data from tv_colos.h
|
|
||||||
*/
|
|
||||||
|
|
||||||
// initialize start of the TV-Colors
|
|
||||||
if (SEGENV.aux1 == 0) {
|
|
||||||
tvSimulator->pixelNum = ((uint8_t)random8(18)) * numTVPixels / 18; // Begin at random movie (18 in total)
|
|
||||||
SEGENV.aux1 = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Read next 16-bit (5/6/5) color
|
|
||||||
hi = pgm_read_byte(&tv_colors[tvSimulator->pixelNum * 2 ]);
|
|
||||||
lo = pgm_read_byte(&tv_colors[tvSimulator->pixelNum * 2 + 1]);
|
|
||||||
|
|
||||||
// Expand to 24-bit (8/8/8)
|
|
||||||
r8 = (hi & 0xF8) | (hi >> 5);
|
|
||||||
g8 = ((hi << 5) & 0xff) | ((lo & 0xE0) >> 3) | ((hi & 0x06) >> 1);
|
|
||||||
b8 = ((lo << 3) & 0xff) | ((lo & 0x1F) >> 2);
|
|
||||||
|
|
||||||
// Apply gamma correction, further expand to 16/16/16
|
|
||||||
nr = (uint8_t)gamma8(r8) * 257; // New R/G/B
|
|
||||||
ng = (uint8_t)gamma8(g8) * 257;
|
|
||||||
nb = (uint8_t)gamma8(b8) * 257;
|
|
||||||
#else
|
|
||||||
/*
|
|
||||||
* this code calculates the color to be used and save 18k of flash memory
|
|
||||||
*/
|
|
||||||
|
|
||||||
// create a new sceene
|
// create a new sceene
|
||||||
if (((millis() - tvSimulator->sceeneStart) >= tvSimulator->sceeneDuration) || SEGENV.aux1 == 0) {
|
if (((millis() - tvSimulator->sceeneStart) >= tvSimulator->sceeneDuration) || SEGENV.aux1 == 0) {
|
||||||
tvSimulator->sceeneStart = millis(); // remember the start of the new sceene
|
tvSimulator->sceeneStart = millis(); // remember the start of the new sceene
|
||||||
@ -3950,17 +3916,10 @@ uint16_t WS2812FX::mode_tv_simulator(void) {
|
|||||||
nr = (uint8_t)gamma8(tvSimulator->actualColorR) * 257; // New R/G/B
|
nr = (uint8_t)gamma8(tvSimulator->actualColorR) * 257; // New R/G/B
|
||||||
ng = (uint8_t)gamma8(tvSimulator->actualColorG) * 257;
|
ng = (uint8_t)gamma8(tvSimulator->actualColorG) * 257;
|
||||||
nb = (uint8_t)gamma8(tvSimulator->actualColorB) * 257;
|
nb = (uint8_t)gamma8(tvSimulator->actualColorB) * 257;
|
||||||
#endif
|
|
||||||
|
|
||||||
if (SEGENV.aux0 == 0) { // initialize next iteration
|
if (SEGENV.aux0 == 0) { // initialize next iteration
|
||||||
SEGENV.aux0 = 1;
|
SEGENV.aux0 = 1;
|
||||||
|
|
||||||
#ifndef WLED_DISABLE_FX_HIGH_FLASH_USE
|
|
||||||
// increase color-index for next loop
|
|
||||||
tvSimulator->pixelNum++;
|
|
||||||
if (tvSimulator->pixelNum >= numTVPixels) tvSimulator->pixelNum = 0;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// randomize total duration and fade duration for the actual color
|
// randomize total duration and fade duration for the actual color
|
||||||
tvSimulator->totalTime = random16(250, 2500); // Semi-random pixel-to-pixel time
|
tvSimulator->totalTime = random16(250, 2500); // Semi-random pixel-to-pixel time
|
||||||
tvSimulator->fadeTime = random16(0, tvSimulator->totalTime); // Pixel-to-pixel transition time
|
tvSimulator->fadeTime = random16(0, tvSimulator->totalTime); // Pixel-to-pixel transition time
|
||||||
|
1506
wled00/tv_colors.h
1506
wled00/tv_colors.h
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// version code in format yymmddb (b = daily build)
|
// version code in format yymmddb (b = daily build)
|
||||||
#define VERSION 2104210
|
#define VERSION 2104211
|
||||||
|
|
||||||
//uncomment this if you have a "my_config.h" file you'd like to use
|
//uncomment this if you have a "my_config.h" file you'd like to use
|
||||||
//#define WLED_USE_MY_CONFIG
|
//#define WLED_USE_MY_CONFIG
|
||||||
@ -26,7 +26,6 @@
|
|||||||
//#define WLED_DISABLE_ALEXA // saves 11kb
|
//#define WLED_DISABLE_ALEXA // saves 11kb
|
||||||
//#define WLED_DISABLE_BLYNK // saves 6kb
|
//#define WLED_DISABLE_BLYNK // saves 6kb
|
||||||
//#define WLED_DISABLE_CRONIXIE // saves 3kb
|
//#define WLED_DISABLE_CRONIXIE // saves 3kb
|
||||||
//WLED_DISABLE_FX_HIGH_FLASH_USE (need to enable in PIO config or FX.h, saves 18kb)
|
|
||||||
//#define WLED_DISABLE_HUESYNC // saves 4kb
|
//#define WLED_DISABLE_HUESYNC // saves 4kb
|
||||||
//#define WLED_DISABLE_INFRARED // there is no pin left for this on ESP8266-01, saves 12kb
|
//#define WLED_DISABLE_INFRARED // there is no pin left for this on ESP8266-01, saves 12kb
|
||||||
#ifndef WLED_DISABLE_MQTT
|
#ifndef WLED_DISABLE_MQTT
|
||||||
|
Loading…
Reference in New Issue
Block a user