Fixed precision on domoticz energy counter

This commit is contained in:
Gunnar Skjold 2023-03-11 08:53:51 +01:00
parent a2c1250724
commit 64f8414217

View File

@ -16,7 +16,7 @@ public:
private:
DomoticzConfig config;
int energy = 0.0;
double energy = 0.0;
};
#endif