20 lines
407 B
C
20 lines
407 B
C
#pragma once
|
|
|
|
#include "Arduino.h"
|
|
#include "sensor.h"
|
|
|
|
#include "NotoSansBold36.h"
|
|
#include <TFT_eSPI.h>
|
|
#include "dial.h"
|
|
#include <TJpg_Decoder.h>
|
|
|
|
void initLCD();
|
|
void handleLCD();
|
|
|
|
void plotNeedle(int16_t angle, uint16_t ms_delay, uint32_t value);
|
|
void setOTAProgress(uint8_t value);
|
|
void ProgressbarVisible(bool visible);
|
|
|
|
void backlightRefresh(void);
|
|
void nextSensor(void);
|
|
void previousSensor(void); |