You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
364 B
13 lines
364 B
#define EXT_I2C_SDA 21
|
|
#define EXT_I2C_SCL 5
|
|
|
|
const int extCenterX = 64;
|
|
const int extCenterY = -70;
|
|
|
|
void initExtDisplay();
|
|
void pixelOnExtDisplay(int16_t x, int16_t y);
|
|
void lineCalcOnExtDisplay(int16_t x, int16_t y, int radius);
|
|
void overlayOnExtDisplay();
|
|
float valueOnExtDisplay(float value);
|
|
void drawLineExtDisplay(float value);
|
|
void changeExt(float value);
|