Files
arduino-info-display/include/screens.h
T
2026-06-23 19:27:43 +03:00

15 lines
295 B
C

#ifndef SCREENS_H
#define SCREENS_H
#include <U8g2lib.h>
#include "am2302_sensor.h"
void drawScreen1(U8G2 &u8g2);
void drawHelloWorldScreen(U8G2 &u8g2);
void setEnvironmentReading(Am2302Reading reading);
void drawEnvironmentScreen(U8G2 &u8g2);
void drawWeatherIconScreen(U8G2 &u8g2);
#endif