2018-07-17 15:15:58 +02:00
|
|
|
#ifndef _DISPLAY_H
|
|
|
|
#define _DISPLAY_H
|
2018-07-15 14:28:05 +02:00
|
|
|
|
2021-03-31 16:20:48 +02:00
|
|
|
#include <libpax_api.h>
|
2018-12-22 14:37:47 +01:00
|
|
|
#include "cyclic.h"
|
2019-09-29 16:46:48 +02:00
|
|
|
#include "qrcode.h"
|
2020-03-29 12:10:42 +02:00
|
|
|
|
2020-11-01 13:45:17 +01:00
|
|
|
#if (COUNT_ENS)
|
|
|
|
#include "corona.h"
|
|
|
|
#endif
|
|
|
|
|
2020-03-29 12:10:42 +02:00
|
|
|
#if (HAS_DISPLAY) == 1
|
2020-05-09 23:38:51 +02:00
|
|
|
#include <OneBitDisplay.h>
|
2020-03-29 12:10:42 +02:00
|
|
|
#elif (HAS_DISPLAY) == 2
|
2020-03-29 19:41:33 +02:00
|
|
|
#include <TFT_eSPI.h>
|
2020-03-29 12:10:42 +02:00
|
|
|
#endif
|
|
|
|
|
2020-03-11 23:47:16 +01:00
|
|
|
#define DISPLAY_PAGES (7) // number of paxcounter display pages
|
|
|
|
|
2020-03-29 19:41:33 +02:00
|
|
|
// settings for OLED display library
|
|
|
|
#if (HAS_DISPLAY) == 1
|
|
|
|
#define MY_FONT_SMALL FONT_SMALL
|
|
|
|
#define MY_FONT_NORMAL FONT_NORMAL
|
|
|
|
#define MY_FONT_LARGE FONT_LARGE
|
|
|
|
#define MY_FONT_STRETCHED FONT_STRETCHED
|
2020-03-11 23:47:16 +01:00
|
|
|
#define USE_BACKBUFFER 1
|
2020-03-29 12:10:42 +02:00
|
|
|
#ifdef MY_DISPLAY_ADDR
|
|
|
|
#define OLED_ADDR MY_DISPLAY_ADDR
|
2020-03-17 22:31:34 +01:00
|
|
|
#else
|
2020-03-29 12:10:42 +02:00
|
|
|
#define OLED_ADDR -1
|
2020-03-17 22:31:34 +01:00
|
|
|
#endif
|
2020-10-13 22:12:51 +02:00
|
|
|
#ifndef USE_HW_I2C
|
2020-03-11 23:47:16 +01:00
|
|
|
#define USE_HW_I2C 1
|
2020-03-29 12:10:42 +02:00
|
|
|
#endif
|
2020-03-29 19:41:33 +02:00
|
|
|
#ifndef OLED_FREQUENCY
|
|
|
|
#define OLED_FREQUENCY 400000L
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// settings for TFT display library
|
|
|
|
#elif (HAS_DISPLAY == 2)
|
|
|
|
|
|
|
|
#define MY_FONT_SMALL 1
|
|
|
|
#define MY_FONT_NORMAL 2
|
|
|
|
#define MY_FONT_LARGE 4
|
|
|
|
#define MY_FONT_STRETCHED 6
|
|
|
|
|
|
|
|
#ifndef MY_DISPLAY_FGCOLOR
|
|
|
|
#define MY_DISPLAY_FGCOLOR TFT_WHITE
|
|
|
|
#endif
|
|
|
|
#ifndef MY_DISPLAY_BGCOLOR
|
|
|
|
#define MY_DISPLAY_BGCOLOR TFT_BLACK
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// setup display hardware type, default is OLED 128x64
|
|
|
|
#ifndef OLED_TYPE
|
|
|
|
#define OLED_TYPE OLED_128x64
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MY_DISPLAY_INVERT
|
|
|
|
#define MY_DISPLAY_INVERT 0
|
|
|
|
#endif
|
2020-03-29 12:10:42 +02:00
|
|
|
|
|
|
|
#ifndef MY_DISPLAY_FLIP
|
|
|
|
#define MY_DISPLAY_FLIP 0
|
|
|
|
#endif
|
2020-03-11 23:47:16 +01:00
|
|
|
|
2020-03-29 12:10:42 +02:00
|
|
|
#ifndef MY_DISPLAY_WIDTH
|
|
|
|
#define MY_DISPLAY_WIDTH 128 // Width in pixels of OLED-display, must be 32X
|
|
|
|
#endif
|
|
|
|
#ifndef MY_DISPLAY_HEIGHT
|
|
|
|
#define MY_DISPLAY_HEIGHT 64 // Height in pixels of OLED-display, must be 64X
|
|
|
|
#endif
|
|
|
|
|
2020-03-11 23:47:16 +01:00
|
|
|
// settings for qr code generator
|
2020-04-06 17:40:45 +02:00
|
|
|
#define QR_VERSION 3 // 29 x 29px
|
2020-03-11 23:47:16 +01:00
|
|
|
|
2020-04-06 17:40:45 +02:00
|
|
|
const uint8_t QR_SCALEFACTOR = (MY_DISPLAY_HEIGHT - 4) / 29; // 4px borderlines
|
2019-12-21 15:18:42 +01:00
|
|
|
extern uint8_t DisplayIsOn, displaybuf[];
|
2019-02-23 21:51:24 +01:00
|
|
|
|
2020-03-29 12:10:42 +02:00
|
|
|
void dp_setup(int contrast = 0);
|
|
|
|
void dp_refresh(bool nextPage = false);
|
|
|
|
void dp_init(bool verbose = false);
|
|
|
|
void dp_shutdown(void);
|
|
|
|
void dp_drawPage(time_t t, bool nextpage);
|
2020-04-06 17:40:45 +02:00
|
|
|
void dp_println(int lines = 1);
|
|
|
|
void dp_printf(const char *format, ...);
|
|
|
|
void dp_setFont(int font, int inv = 0);
|
2020-03-11 23:47:16 +01:00
|
|
|
void dp_dump(uint8_t *pBuffer);
|
2020-04-06 17:40:45 +02:00
|
|
|
void dp_setTextCursor(int col, int row);
|
2020-03-29 12:10:42 +02:00
|
|
|
void dp_contrast(uint8_t contrast);
|
|
|
|
void dp_clear(void);
|
|
|
|
void dp_power(uint8_t screenon);
|
2019-10-01 13:02:30 +02:00
|
|
|
void dp_printqr(uint16_t offset_x, uint16_t offset_y, const char *Message);
|
2020-03-29 12:10:42 +02:00
|
|
|
void dp_fillRect(uint16_t x, uint16_t y, uint16_t width, uint16_t height,
|
|
|
|
uint8_t bRender);
|
|
|
|
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);
|
2018-07-15 14:28:05 +02:00
|
|
|
|
|
|
|
#endif
|