This commit is contained in:
e2002
2022-03-30 10:23:16 +03:00
parent 110e25cb90
commit 22ba88d672
33 changed files with 1763 additions and 101 deletions

View File

@@ -2,8 +2,11 @@
#define displayLC1602_h
#include "Arduino.h"
#if DSP_MODEL==DSP_1602I2C
#include "../LiquidCrystalI2C/LiquidCrystalI2CEx.h"
#else
#include <LiquidCrystal.h>
#endif
#define TFT_LINEHGHT 1
#define TFT_FRAMEWDT 0
@@ -21,7 +24,11 @@
#define BOOTSTR_TOP1 1
#define STARTTIME_PL 2000
#if DSP_MODEL==DSP_1602I2C
class DspCore: public LiquidCrystal_I2C {
#else
class DspCore: public LiquidCrystal {
#endif
public:
bool fillSpaces;
DspCore();