#ifndef _DISPLAY_H #define _DISPLAY_H #include #include #include "cyclic.h" #include "qrcode.h" #include "power.h" #include "timekeeper.h" #define DISPLAY_PAGES (7) // number of paxcounter display pages #define PLOTBUFFERSIZE (MY_DISPLAY_WIDTH * MY_DISPLAY_HEIGHT / 8) #define QR_VERSION 3 // 29 x 29px // Settings for OLED display library #if (HAS_DISPLAY) == 1 #include extern ONE_BIT_DISPLAY *dp; #define MY_FONT_SMALL FONT_6x8 #define MY_FONT_NORMAL FONT_8x8 #define MY_FONT_LARGE FONT_16x32 #define MY_FONT_STRETCHED FONT_12x16 #define MY_DISPLAY_FIRSTLINE 30 #ifndef MY_DISPLAY_RST #define MY_DISPLAY_RST NOT_A_PIN #endif #ifdef MY_DISPLAY_ADDR #define OLED_ADDR MY_DISPLAY_ADDR #else #define OLED_ADDR -1 #endif #ifndef OLED_FREQUENCY #define OLED_FREQUENCY 400000L #endif #ifndef OLED_TYPE #define OLED_TYPE OLED_128x64 #endif #ifndef MY_DISPLAY_FGCOLOR #define MY_DISPLAY_FGCOLOR 1 // OLED_WHITE #endif #ifndef MY_DISPLAY_BGCOLOR #define MY_DISPLAY_BGCOLOR 0 // OLED_BLACK #endif // Settings for TFT display library #elif (HAS_DISPLAY) > 1 #include extern BB_SPI_LCD *dp; #ifndef TFT_FREQUENCY #define TFT_FREQUENCY 400000L #endif #ifndef MY_DISPLAY_FGCOLOR #define MY_DISPLAY_FGCOLOR TFT_YELLOW #endif #ifndef MY_DISPLAY_BGCOLOR #define MY_DISPLAY_BGCOLOR TFT_BLACK #endif #endif // Fonts for large TFT display library #if (HAS_DISPLAY) == 2 #define MY_FONT_SMALL FONT_12x16 #define MY_FONT_NORMAL FONT_12x16 #define MY_FONT_LARGE FONT_12x16 #define MY_FONT_STRETCHED FONT_12x16 #define MY_DISPLAY_FIRSTLINE 30 #endif // Settings for small TFT display library #if (HAS_DISPLAY) == 3 #define MY_FONT_SMALL FONT_6x8 #define MY_FONT_NORMAL FONT_8x8 #define MY_FONT_LARGE FONT_16x16 #define MY_FONT_STRETCHED FONT_12x16 #define MY_DISPLAY_FIRSTLINE 30 #endif // Default settings for all display types #ifndef MY_DISPLAY_FLIP #define MY_DISPLAY_FLIP 0 #endif #ifndef MY_DISPLAY_WIDTH #define MY_DISPLAY_WIDTH 128 #endif #ifndef MY_DISPLAY_HEIGHT #define MY_DISPLAY_HEIGHT 64 #endif #ifndef MY_DISPLAY_FIRSTLINE #define MY_DISPLAY_FIRSTLINE 0 #endif const uint8_t QR_SCALEFACTOR = (MY_DISPLAY_HEIGHT - 4) / 29; // 4px borderlines extern uint8_t DisplayIsOn; extern hw_timer_t *displayIRQ; extern uint8_t volatile channel; // wifi channel rotation counter void dp_setup(int contrast = 0); void dp_refresh(bool nextPage = false); void dp_init(bool verbose = false); void dp_shutdown(void); void dp_setFont(int font, int inv = 0); void dp_dump(uint8_t *pBuffer = NULL); void dp_contrast(uint8_t contrast); void dp_clear(void); void dp_power(uint8_t screenon); void dp_printqr(uint16_t offset_x, uint16_t offset_y, const char *Message); void dp_scrollHorizontal(uint8_t *buf, const uint16_t width, const uint16_t height, bool left = true); void dp_scrollVertical(uint8_t *buf, const uint16_t width, const uint16_t height, int offset = 0); int dp_drawPixel(uint8_t *buf, const uint16_t x, const uint16_t y, const uint8_t dot); void dp_plotCurve(uint16_t count, bool reset); void dp_rescaleBuffer(uint8_t *buf, const int factor); #endif