Added tap to wake and cycle feed

This commit is contained in:
2026-08-22 17:11:53 +02:00
parent 2b5004a569
commit 539df2182a
7 changed files with 610 additions and 52 deletions
+3 -3
View File
@@ -17,9 +17,9 @@ namespace esphome {
namespace fast_jpeg {
static const char *const TAG = "fast_jpeg";
static const int kMaxWidth = 480;
static const int kMaxHeight = 480;
static const size_t kJpegCap = 48 * 1024;
static const int kMaxWidth = 720;
static const int kMaxHeight = 720;
static const size_t kJpegCap = 128 * 1024;
static int align16_(int value) { return (value + 15) & ~15; }