Fixed bug in price fetch

This commit is contained in:
Gunnar Skjold
2021-12-18 15:17:34 +01:00
parent f8b1725e94
commit aa893f7ede
4 changed files with 16 additions and 32 deletions

View File

@@ -2,7 +2,7 @@
#include "HardwareSerial.h"
EntsoeA44Parser::EntsoeA44Parser() {
for(int i = 0; i < 24; i++) points[i] = 0.0;
for(int i = 0; i < 24; i++) points[i] = ENTSOE_NO_VALUE;
}
char* EntsoeA44Parser::getCurrency() {