Added tap to wake and cycle feed
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user