Added lvgl support to generate images. Made basic example, grayscale background + text displayed everytime we call /api/display/image.png

This commit is contained in:
2026-03-14 18:41:00 -04:00
parent a9d5aa83dc
commit 6384e93020
19 changed files with 10019 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
#ifndef LODEPNG_ALLOC_HPP
#define LODEPNG_ALLOC_HPP
#include <stddef.h>
void lodepng_allocator_init();
void lodepng_allocator_reset();
void lodepng_allocator_free();
void* lodepng_custom_malloc(size_t size);
void* lodepng_custom_realloc(void* ptr, size_t new_size);
void lodepng_custom_free(void* ptr);
#endif // LODEPNG_ALLOC_HPP