FEATURE: Pump status with leds
This commit is contained in:
parent
02c604021a
commit
503675d46b
@ -7,6 +7,6 @@
|
||||
|
||||
// Auto generated header file containing the last git revision
|
||||
|
||||
#define GIT_HASH "df5aa6f"
|
||||
#define GIT_HASH "79077af"
|
||||
|
||||
#endif //FLOATPUMP_GIT_REVISION_TEMPLATE_H
|
@ -47,6 +47,12 @@ extern bool rot_button;
|
||||
|
||||
using namespace floatpump;
|
||||
|
||||
bool S_backlight = false;
|
||||
|
||||
bool S_tankempty = true;
|
||||
bool S_refilling = false;
|
||||
bool S_refillempty = true;
|
||||
|
||||
void CheckTankConditions(Config_Store &cfg, io::PressureChannel &tankLevel, io::RelayChannel &tankPump) {
|
||||
//Check if config says relay works inverted
|
||||
tankPump.setInverted(cfg.TankPumpInvert.getValue());
|
||||
@ -54,22 +60,37 @@ void CheckTankConditions(Config_Store &cfg, io::PressureChannel &tankLevel, io::
|
||||
//First check if Tank has enough water and disable pump if necessary
|
||||
if (tankLevel.getPercent() < cfg.TankMinLevel.getValue()) {
|
||||
tankPump.switchRelay(io::RelayChannel::state::OFF);
|
||||
S_tankempty = true;
|
||||
} else if (tankLevel.getPercent() > cfg.TankMinLevel.getValue() + cfg.TankHysteresis.getValue()) {
|
||||
tankPump.switchRelay(io::RelayChannel::state::ON);
|
||||
S_tankempty = false;
|
||||
}
|
||||
}
|
||||
|
||||
void CheckRefillConditions(Config_Store &cfg, io::PressureChannel &tankLevel, io::GPIChannel &refillBlock, io::RelayChannel &refillPump) {
|
||||
void CheckRefillConditions(Config_Store &cfg, io::PressureChannel &tankLevel, io::GPIChannel &refillBlock,
|
||||
io::RelayChannel &refillPump) {
|
||||
|
||||
bool rblock = (cfg.RefillBlockInvert.getValue())? !refillBlock.getStateBool() : refillBlock.getStateBool();
|
||||
if (cfg.RefillEnable.getValue()) {
|
||||
//Check whether refilling is necessary
|
||||
if (tankLevel.getPercent() < cfg.RefillBelow.getValue()) {
|
||||
if(cfg.RefillBlockEnable.getValue() && !refillBlock.getStateBool()) {
|
||||
if (cfg.RefillBlockEnable.getValue() && !rblock) {
|
||||
refillPump.switchRelay(io::RelayChannel::state::ON);
|
||||
S_refilling = true;
|
||||
S_refillempty = false;
|
||||
} else if (rblock) {
|
||||
refillPump.switchRelay(io::RelayChannel::state::OFF);
|
||||
S_refilling = false;
|
||||
S_refillempty = true;
|
||||
} else {
|
||||
refillPump.switchRelay(io::RelayChannel::state::ON);
|
||||
S_refilling = true;
|
||||
S_refillempty = false;
|
||||
}
|
||||
} else if (tankLevel.getPercent() > cfg.RefillBelow.getValue() + cfg.RefillHysteresis.getValue()) {
|
||||
refillPump.switchRelay(io::RelayChannel::state::OFF);
|
||||
S_refilling = false;
|
||||
S_refillempty = false;
|
||||
}
|
||||
} else {
|
||||
refillPump.switchRelay(io::RelayChannel::state::OFF);
|
||||
@ -79,6 +100,7 @@ void CheckRefillConditions(Config_Store &cfg, io::PressureChannel &tankLevel, io
|
||||
|
||||
int main(void) {
|
||||
Config_Store globalConfig;
|
||||
globalConfig.loadFromFlash();
|
||||
|
||||
// Step 1: Initialize HAL
|
||||
HAL_Init();
|
||||
@ -106,13 +128,10 @@ int main(void) {
|
||||
InitSequence initializer(display);
|
||||
initializer.runInitSequence();
|
||||
|
||||
//Enable green led
|
||||
HAL_GPIO_WritePin(LED5_GPIO_Port, LED5_Pin, GPIO_PIN_RESET);
|
||||
|
||||
|
||||
///
|
||||
///
|
||||
/// EXPERIMENTAL CODE BEGIN
|
||||
/// LOGICAL CODE BEGIN
|
||||
///
|
||||
///
|
||||
///
|
||||
@ -184,7 +203,6 @@ int main(void) {
|
||||
refillmenu.addEntry(refillHysteresis);
|
||||
|
||||
|
||||
|
||||
menu::Menu mainmenu("Hauptmenu");
|
||||
mainmenu.addSubmenu(&tankmenu);
|
||||
mainmenu.addSubmenu(&refillmenu);
|
||||
@ -201,6 +219,7 @@ int main(void) {
|
||||
io::RelayChannel refillPump(OCHAN1_GPIO_Port, OCHAN1_Pin, false, io::RelayChannel::state::OFF);
|
||||
|
||||
uint32_t last_menu_retrigger = 0;
|
||||
uint32_t last_backlight_retrigger = 0;
|
||||
|
||||
bool f_store = false, f_restore = false;
|
||||
menu::Menu_Entry_Type_Execute t_MStore;
|
||||
@ -216,19 +235,43 @@ int main(void) {
|
||||
|
||||
while (1) {
|
||||
|
||||
display.LCDSetBacklight(false);
|
||||
display.LCDSetBacklight(S_backlight);
|
||||
|
||||
|
||||
display.LCDSetCursor(0, 0);
|
||||
display.LCDSendCString(const_cast<char *>(std::string("Tank: " + std::to_string(tankLevel0.getPercent()) + " %").c_str()));
|
||||
display.LCDSendCString(
|
||||
const_cast<char *>(std::string("Tank: " + std::to_string(tankLevel0.getPercent()) + " %").c_str()));
|
||||
|
||||
display.LCDSetCursor(0, 1);
|
||||
if(tankLevel0.getPercent() < globalConfig.TankMinLevel.getValue()) {
|
||||
if (S_tankempty) {
|
||||
display.LCDSendCString(const_cast<char *>(std::string("Tank Wassermangel ").c_str()));
|
||||
HAL_GPIO_WritePin(LED5_GPIO_Port, LED5_Pin, GPIO_PIN_SET);
|
||||
|
||||
} else {
|
||||
display.LCDSendCString(const_cast<char *>(std::string("Tank Normal ").c_str()));
|
||||
HAL_GPIO_WritePin(LED5_GPIO_Port, LED5_Pin, GPIO_PIN_RESET);
|
||||
}
|
||||
|
||||
display.LCDSetCursor(0, 2);
|
||||
if (S_refilling) {
|
||||
display.LCDSendCString(const_cast<char *>(std::string("Nachspeisung laeuft ").c_str()));
|
||||
HAL_GPIO_WritePin(LED4_GPIO_Port, LED4_Pin, GPIO_PIN_RESET);
|
||||
}
|
||||
else {
|
||||
display.LCDSendCString(const_cast<char *>(std::string("Nachspeisung inaktiv").c_str()));
|
||||
HAL_GPIO_WritePin(LED4_GPIO_Port, LED4_Pin, GPIO_PIN_SET);
|
||||
|
||||
}
|
||||
|
||||
display.LCDSetCursor(0, 3);
|
||||
if (S_refillempty) {
|
||||
display.LCDSendCString(const_cast<char *>(std::string("Nachspeisung mangel ").c_str()));
|
||||
HAL_GPIO_WritePin(LED3_GPIO_Port, LED3_Pin, GPIO_PIN_RESET);
|
||||
}
|
||||
else {
|
||||
display.LCDSendCString(const_cast<char *>(std::string("Nachspeisung ok ").c_str()));
|
||||
HAL_GPIO_WritePin(LED3_GPIO_Port, LED3_Pin, GPIO_PIN_SET);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -300,7 +343,6 @@ int main(void) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
void SystemClock_Config(void) {
|
||||
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
|
||||
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
|
||||
|
Loading…
Reference in New Issue
Block a user