AutoFilm-ESP32/include/display.h

14 lines
251 B
C
Raw Normal View History

2024-06-25 21:04:22 +01:00
#ifndef DISPLAY_H
#define DISPLAY_H
#include <LiquidCrystal_I2C.h>
#include "config.h"
2024-06-25 21:34:47 +01:00
void updateTempDisplay(void *parameter);
2024-06-25 21:04:22 +01:00
void startingMenu();
void processHeadings();
void readTemperature();
2024-06-25 21:34:47 +01:00
char *secondsToMinutesSeconds(int seconds);
2024-06-25 21:04:22 +01:00
#endif