From 9f938ab8ba5af561bd44dbc7142f338ce317a01a Mon Sep 17 00:00:00 2001 From: Sadeep Madurange Date: Sat, 1 Nov 2025 09:46:52 +0800 Subject: Etlas project. --- esp32/main/gui.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 esp32/main/gui.h (limited to 'esp32/main/gui.h') diff --git a/esp32/main/gui.h b/esp32/main/gui.h new file mode 100644 index 0000000..8243e0a --- /dev/null +++ b/esp32/main/gui.h @@ -0,0 +1,21 @@ +#ifndef GUI_H +#define GUI_H + +#include "scrn.h" +#include "stock.h" + +#define MAXLEN 48000 + +void gui_draw_temp(struct scrn *sc); + +void gui_draw_humid(struct scrn *sc); + +void gui_draw_layout(struct scrn *sc); + +void gui_draw_date(struct scrn *sc, struct tm *now); + +int gui_draw_str(struct scrn *sc, const char *s, int x0, int y0, int x_max, int y_max, int bold); + +void gui_plot_stocks(struct scrn *sc, struct stock_data *data); + +#endif /* GUI_H */ -- cgit v1.2.3