Implemented processor votes receiving and processing. First revision of v0.2 fully finished.

This commit is contained in:
2025-11-10 21:53:16 +00:00
parent dbcb8c50f7
commit 7ea89993d7
7 changed files with 36988 additions and 36758 deletions

View File

@@ -36,7 +36,7 @@ struct ShortText {
int h;
};
struct LongText {
char text[30];
char text[40];
int w;
int h;
};
@@ -60,5 +60,9 @@ bool load_image(const char* filename);
void listSPIFFS();
void handleImageUpload();
void handleUploadComplete();
void update_voting(char load);
void voting_setup();
bool ask_input(const char* prompt, const char* item_name, char* output, size_t output_size);
char get_winner();
#endif