From 1fa62fa97c4984c456c3cf0ad4577d5f437eb923 Mon Sep 17 00:00:00 2001 From: Gunnar Skjold Date: Sun, 12 Jan 2025 10:32:14 +0100 Subject: [PATCH] Fixed aidon package timestamp --- lib/MeterCommunicators/src/IEC6205675.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MeterCommunicators/src/IEC6205675.cpp b/lib/MeterCommunicators/src/IEC6205675.cpp index 1c18f777..9533caaf 100644 --- a/lib/MeterCommunicators/src/IEC6205675.cpp +++ b/lib/MeterCommunicators/src/IEC6205675.cpp @@ -635,7 +635,7 @@ IEC6205675::IEC6205675(const char* d, uint8_t useMeterType, MeterConfig* meterCo } if(this->packageTimestamp > 0) { - if(meterType == AmsTypeAidon || meterType == AmsTypeKamstrup) { + if(meterType == AmsTypeKamstrup) { this->packageTimestamp = this->packageTimestamp - 3600; } }