Woody
d7739f9764
Revert "Change path for ESP02-binary"
...
This reverts commit e3271b8082e6fa776c659e22f1f2987011cf48b8.
2024-03-26 17:41:28 +01:00
Woody
d6e73fde50
only create bin.gz files for esp8266
2024-03-26 17:34:01 +01:00
Blaz Kristan
fd149b3f46
fileDoc removal (optimisation)
2024-03-26 17:18:52 +01:00
Blaž Kristan
d1d45e7166
Merge pull request #3850 from w00000dy/GitHub-Actions
...
Use npm ci instead of npm install & Remove zlib dependency from package.json
2024-03-25 08:46:40 +01:00
Blaz Kristan
4b19759dd6
Rotary encoder palette count bugfix
2024-03-24 20:34:22 +01:00
Blaz Kristan
47f44680a3
Multi-update
...
- 0.15.0-b2
- WS2805 support (NeoPixelBus 2.7.9)
- generic PSRAM support (ESP32 rev.1 still needs compile fix)
- BREAKING: default LEDPIN 2 (due to PSRAM)
- PinManager optimisations
2024-03-24 17:37:11 +01:00
Woody
0a344ada97
Add bin.gz binaries for 160mhz builds
2024-03-24 15:23:33 +01:00
Woody
3b98d01f71
Merge branch '0_15' into serg
2024-03-24 14:42:06 +01:00
Woody
23d8000239
Remove accidental space in cdata.js
2024-03-24 14:34:17 +01:00
Woody
c32ee40ca0
add node: prefix to Core modules
...
The node: prefix makes it clear that you’re importing a built-in module, not a user-defined or third-party module. This can help avoid confusion.
2024-03-24 14:19:49 +01:00
Woody
213f45494f
Merge branch '0_15' into GitHub-Actions
2024-03-24 13:38:36 +01:00
Frank
85a51e6c42
Update requirements.txt to solve CI build errors
...
use latest platformIO package, to avoid build errors due to missing 'scons'
> Tool Manager: Installing platformio/tool-scons @ ~4.40400.0
> Error: Could not find the package with 'platformio/tool-scons @ ~4.40400.0' requirements for your system 'linux_x86_64'
> Error: Process completed with exit code 1.
2024-03-24 12:27:32 +01:00
Blaz Kristan
ecfdc6f0a8
Bugfixes:
...
- #3843
- #3844
- network scan on new install
- misc optimization
2024-03-22 20:49:13 +01:00
Woody
1c1c3fd832
Use npm ci instead of npm install
2024-03-21 12:03:35 +01:00
Woody
7bafe995e5
Remove zlib dependency from package.json
2024-03-21 12:00:18 +01:00
Blaž Kristan
3c23672347
Merge pull request #3836 from THATDONFC/0_15
...
Add SSD1309_64 I2C Support for FLD Usermod
2024-03-21 05:48:42 +01:00
thatdonfc
33fe68d7eb
Revert breaking change
2024-03-20 13:48:15 -07:00
Blaz Kristan
b031fa1531
Palette cycling fix.
...
Updated getPaletteCount() to return count of all available palettes, including custom ones.
2024-03-20 20:12:21 +01:00
Blaž Kristan
dab4dc3f41
Merge pull request #3810 from deece/fw1906_0_15
...
Fw1906 Support (based on 0-15)
2024-03-20 19:57:10 +01:00
Blaž Kristan
78096803ea
Merge branch '0_15' into fw1906_0_15
2024-03-20 19:51:32 +01:00
Blaž Kristan
f1987b9544
Merge pull request #3828 from willmmiles/0_15-asyncwebserver-2.2.0-features
...
ESPAsyncWebServer 2.2.0 + features
2024-03-20 19:50:06 +01:00
Will Miles
8b6bf08a23
serveLiveLeds: Use variable buffer size
...
Allocate the serialization buffer size at the required length, rather
than always allocating the maximum size.
2024-03-19 23:50:32 -04:00
Will Miles
2640203c88
wled_server: Remove local content type variables
...
Use the CONTENT_TYPEs exported by AsyncWebServer directly.
2024-03-19 23:46:55 -04:00
thatdonfc
2dafa9644f
Update Readme for Rotary Encoder Usermod
...
Add example platformio_override.sample.ini
2024-03-19 14:48:51 -07:00
thatdonfc
92ebeddcb0
Update Readme for Four Line Display Usermod
2024-03-19 14:48:04 -07:00
thatdonfc
ecee073e08
Fix palette names when palette ID > 58 and not custom
2024-03-19 14:04:24 -07:00
thatdonfc
6d1b9ffad2
Add SSD1309_64 I2C Support to FDL Usermod
2024-03-19 14:04:09 -07:00
Woody
7ee4b54154
optimize output_bins.py
2024-03-19 20:06:09 +01:00
Woody
e3271b8082
Change path for ESP02-binary
2024-03-19 18:15:18 +01:00
Woody
c6ff45f959
Merge branch '0_15' into serg
2024-03-19 17:49:56 +01:00
Blaz Kristan
5d3f22e06a
Changelog update and build bump.
v0.15.0-b1
2024-03-19 15:18:17 +01:00
Blaž Kristan
c77f6c5f7b
Merge pull request #3711 from muebau/tetris-ai
...
Tetris AI usermod
2024-03-19 14:44:51 +01:00
Blaž Kristan
6d03c3a54c
Merge pull request #3834 from willmmiles/ddp-no-push
...
Support DDP sources that don't PUSH
2024-03-19 07:30:58 +01:00
Blaž Kristan
92dc63e5c9
Merge pull request #3833 from willmmiles/fix-avgloopmillis
...
Fix avgLoopMillis
2024-03-19 06:20:29 +01:00
Will Miles
505d319e01
Fix avgLoopMillis
2024-03-18 19:50:54 -04:00
Will Miles
62f845a94e
DDP: Support sources that don't push
...
If the source never sends the push flag, WLED buffers the update but
never publishes it to the LEDs. This causes the confusing case where
the peek display shows one thing but the LEDs themselves something else.
Add a static flag that tracks if we've seen a push from the source;
until we do, apply every update as soon as it's received, per the DDP
specification.
2024-03-18 19:49:26 -04:00
Blaz Kristan
7a9eff7f35
Fix.
2024-03-18 20:23:30 +01:00
Blaz Kristan
b849ea8eaa
Fix for #3827
2024-03-18 20:01:32 +01:00
muebau
f1635fa302
Merge branch '0_15' into tetris-ai
2024-03-18 13:21:35 +01:00
Blaž Kristan
6110b72b87
Merge pull request #3831 from willmmiles/missing-ir-disable
...
getSettingsJS: Fix missing DISABLE_INFRARED guard
2024-03-18 08:00:44 +01:00
Will Miles
6de617ecd5
getSettingsJS: Fix missing DISABLE_INFRARED guard
2024-03-17 16:28:09 -04:00
Blaz Kristan
7c8df97968
Merge branch 'main' into 0_15
2024-03-17 12:21:35 +01:00
Blaz Kristan
acf6736afd
WLED 0.14.2 release
2024-03-17 11:52:09 +01:00
Will Miles
5f2480c3d9
serveLiveLeds: Use dynamic buffer
...
There were three problems here:
- AsyncWebServer is going to copy to a heap buffer anyways, so we might
as well just pass it one it can use
- The buffer size estimate was wrong -- we need 9 bytes per pixel
("RRGGBB",), so the buffer could overflow, and it was not
considering the extra 2D requirements
- On ESP8266, the stack allocation was overflowing the stack, causing
corruption and crashes.
2024-03-16 12:16:36 -04:00
Will Miles
0593a078c6
handleFileRead: Leverage AWS code
...
No need to filter or look up content type, just pitch it over the wall.
Also fixes .gz'd content processing.
2024-03-16 12:12:48 -04:00
Will Miles
323c70dcdf
Update for new AsyncWebSocketBuffer
...
Eliminate the extra indirection and allocate shared buffers directly.
2024-03-16 12:12:48 -04:00
Will Miles
a1b0f84444
Pass PROGMEM type to server.on()
...
Rather than relying on the exception handler, indicate the
__FlashStringHelper type so the correct String constructor is
used.
2024-03-16 12:12:48 -04:00
Will Miles
df6c271830
Use web server ContentType symbols
...
These were mostly PROGMEM already, but every little bit helps.
2024-03-16 12:12:48 -04:00
Will Miles
12bf04826a
Update ESPAsyncWebServer to v2.2.0
2024-03-16 12:12:48 -04:00
Blaz Kristan
52a1b0453c
MQTT cleanup & reduction
2024-03-16 15:26:52 +01:00