ESPMegaPRO-v3-SDK/ESPMegaPRO-firmware/lib/ESPMegaPRO/InternalDisplay.hpp

68 lines
2.4 KiB
C++
Raw Normal View History

2023-12-30 06:49:37 +00:00
#pragma once
2023-12-29 13:04:25 +00:00
#include <ESPMegaDisplay.hpp>
2023-12-29 16:43:12 +00:00
#include <TimeStructure.hpp>
#include <ESPMegaIoT.hpp>
2023-12-29 17:49:09 +00:00
#include <DigitalInputCard.hpp>
#include <DigitalOutputCard.hpp>
2023-12-29 13:04:25 +00:00
2023-12-29 17:49:09 +00:00
// Page IDs
2023-12-29 13:04:25 +00:00
#define INTERNAL_DISPLAY_DASHBOARD_PAGE 0
#define INTERNAL_DISPLAY_INPUT_PAGE 1
#define INTERNAL_DISPLAY_OUTPUT_PAGE 2
#define INTERNAL_DISPLAY_AC_PAGE 3
2023-12-29 16:43:12 +00:00
// Picture IDs
#define PIC_LAN_DISCONNECTED 2
#define PIC_LAN_CONNECTED 3
#define PIC_MQTT_DISCONNECTED 4
#define PIC_MQTT_CONNECTED 5
2023-12-29 17:49:09 +00:00
#define PIC_PWM_BAR_ON 33
#define PIC_PWM_BAR_OFF 48
2023-12-29 16:43:12 +00:00
2023-12-29 17:49:09 +00:00
// Messages
#define MSG_MQTT_CONNECTED "BMS Managed"
#define MSG_MQTT_DISCONNECTED "Standalone"
// Refresh Interval
#define INTERNAL_DISPLAY_CLOCK_REFRESH_INTERVAL 15000
#define INTERNAL_DISPLAY_TOP_BAR_REFRESH_INTERVAL 5000
2023-12-29 16:43:12 +00:00
2023-12-29 13:04:25 +00:00
class InternalDisplay : public ESPMegaDisplay {
public:
2023-12-29 14:41:19 +00:00
InternalDisplay(HardwareSerial *displayAdapter);
2023-12-29 16:43:12 +00:00
void begin(ESPMegaIoT *iot, std::function<rtctime_t()> getRtcTime);
2023-12-29 13:04:25 +00:00
void loop();
2023-12-29 17:49:09 +00:00
void bindInputCard(DigitalInputCard *inputCard);
void bindOutputCard(DigitalOutputCard *outputCard);
2023-12-29 16:43:12 +00:00
2023-12-29 13:04:25 +00:00
private:
2023-12-29 17:49:09 +00:00
DigitalInputCard *inputCard;
DigitalOutputCard *outputCard;
// Previously registered callbacks of input and output cards
// We need to call them when the respective card is binded to the display
// Because we will replace the callbacks with the display's own callbacks
2023-12-29 13:04:25 +00:00
void handleInputStateChange(uint8_t pin, bool state);
2023-12-29 16:43:12 +00:00
void handlePwmStateChange(uint8_t pin, bool state, uint16_t value);
2023-12-29 13:04:25 +00:00
void handlePageChange(uint8_t page);
void setOutputBar(uint8_t pin, uint16_t value);
void setOutputStateColor(uint8_t pin, bool state);
void setInputMarker(uint8_t pin, bool state);
void setPWMAdjustmentSlider(uint16_t value);
void setPWMAdjustmentPin(uint8_t pin);
void setPWMAdjustmentButton(bool state);
void saveNetworkConfig();
void saveMQTTConfig();
2023-12-29 16:43:12 +00:00
void updateStatusIcons(bool networkStatus, bool mqttStatus);
2023-12-29 13:04:25 +00:00
void updateClock();
void refreshPage();
void refreshPage(uint8_t page);
void refreshDashboard();
void refreshInput();
void refreshOutput();
void refreshAC();
2023-12-29 17:49:09 +00:00
MqttConfig *mqttConfig;
NetworkConfig *networkConfig;
2023-12-29 16:43:12 +00:00
// Pointers to various data
ESPMegaIoT *iot;
std::function<rtctime_t()> getRtcTime;
2023-12-29 13:04:25 +00:00
};