LoRa_APRS_iGate/include/display.h

14 lines
518 B
C
Raw Normal View History

2023-03-26 09:12:27 -03:00
#ifndef DISPLAY_H_
#define DISPLAY_H_
2023-06-08 00:58:10 -04:00
#include <Arduino.h>
2023-03-26 09:12:27 -03:00
#define SCREEN_ADDRESS 0x3C ///< See datasheet for Address; 0x3D for 128x64, 0x3C for 128x32
2024-08-14 12:32:34 -04:00
void displaySetup();
void displayToggle(bool toggle);
2023-03-26 09:12:27 -03:00
2024-08-14 12:32:34 -04:00
void displayShow(const String& header, const String& line1, const String& line2, const String& line3, int wait = 0);
void displayShow(const String& header, const String& line1, const String& line2, const String& line3, const String& line4, const String& line5, const String& line6, int wait = 0);
2023-03-26 09:12:27 -03:00
#endif