PlynxConnector firmware update
Just pushed v2.1.0 of PlynxConnector for ESP32. Key change: **pin value batching**.
Instead of one TCP frame per Blynk.virtualWrite() call, we now buffer writes for up to 50ms and flush them in a single batch frame. On a project with 12 virtual pins updating at 10Hz, WiFi wakeup count dropped from ~120/sec to ~35/sec.
Migration
No breaking changes. Just update platformio.ini:
ini
lib_deps = plynx/PlynxConnector@^2.1.0**New config option:** BLYNK_BATCH_WINDOW_MS (default 50). Set to 0 to disable batching.