Per phase power and power factor graphs

This commit is contained in:
Gunnar Skjold
2024-01-07 10:58:11 +01:00
parent fe3f100edb
commit 768dc97c9c
14 changed files with 237 additions and 120 deletions

View File

@@ -223,6 +223,8 @@ struct UiConfig {
uint8_t showMonthPlot;
uint8_t showTemperaturePlot;
uint8_t showRealtimePlot;
uint8_t showPerPhasePower;
uint8_t showPowerFactor;
uint8_t darkMode;
}; // 12

View File

@@ -723,6 +723,8 @@ void AmsConfiguration::clearUiConfig(UiConfig& config) {
config.showMonthPlot = 1;
config.showTemperaturePlot = 2;
config.showRealtimePlot = 1;
config.showPerPhasePower = 2;
config.showPowerFactor = 2;
config.darkMode = 2;
}