From 58fec70e7c3961d504631d358dae4a1f1772eb65 Mon Sep 17 00:00:00 2001 From: Gunnar Skjold Date: Mon, 27 Mar 2023 09:20:16 +0200 Subject: [PATCH] Added detection for Kaifa through system title --- src/IEC6205675.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/IEC6205675.cpp b/src/IEC6205675.cpp index ef690518..bb1b663f 100644 --- a/src/IEC6205675.cpp +++ b/src/IEC6205675.cpp @@ -163,6 +163,8 @@ IEC6205675::IEC6205675(const char* d, uint8_t useMeterType, MeterConfig* meterCo if(meterType == AmsTypeUnknown) { if(memcmp(ctx.system_title, "SAGY", 4) == 0) { meterType = AmsTypeSagemcom; + } else if(memcmp(ctx.system_title, "KFM", 3) == 0) { + meterType = AmsTypeKaifa; } }