diff --git a/custom_components/ams/const.py b/custom_components/ams/const.py index d0d5301..d7673c3 100755 --- a/custom_components/ams/const.py +++ b/custom_components/ams/const.py @@ -172,7 +172,7 @@ "aidon", "aidon_se", "kaifa", - "kaifa_se,", + "kaifa_se", "kamstrup", ] diff --git a/custom_components/ams/parsers/kaifa_se.py b/custom_components/ams/parsers/kaifa_se.py index 4081283..6ef4c2b 100644 --- a/custom_components/ams/parsers/kaifa_se.py +++ b/custom_components/ams/parsers/kaifa_se.py @@ -130,7 +130,7 @@ def parse_data(stored, data): if key in HOURLY_SENSORS: han_data[key] = measure / 1000 elif key in CURRENT_SENSORS: - han_data[key] = measure / 100 + han_data[key] = measure / 1000 elif key in VOLTAGE_SENSORS: han_data[key] = measure / 10 else: