From 53a6ecfb35d6db6b99c7b827025d8ae27d19464d Mon Sep 17 00:00:00 2001 From: chrfriese123 <49806974+chrfriese123@users.noreply.github.com> Date: Sat, 16 Jan 2021 15:32:05 +0100 Subject: [PATCH] Update Smart-Meter-Interface.md Adding readout of two Easymeter Q3B --- docs/Smart-Meter-Interface.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/Smart-Meter-Interface.md b/docs/Smart-Meter-Interface.md index 356b4e3cfd..cbaf7577ed 100644 --- a/docs/Smart-Meter-Interface.md +++ b/docs/Smart-Meter-Interface.md @@ -1077,5 +1077,27 @@ A 2-Tarif Meter which for Example SWM (Stadtwerke München) uses. Unfortunately 1,77070100010800ff@1000,Verbrauch_Summe,kWh,Total_Summe,0 # +``` +### EasyMeter Q3B + +Two 2-Tarif meters (e.g. from Fairenergie Reutlingen) are readout at the same time. The first one is for general purpose and is connected to GPIO14. The JSON prefix is set to "Power". The second one is for the heat pump and connected to GPIO13. The JSON prefix is set to "Pump". For both meters, tarif 1 & 2 are whole kWh (precision 0), current consumption in W has a higher precision (1). + +``` +>D +>B +=>sensor53 r +>M 2 ++1,14,s,0,9600,Power +1,77070100010801ff@1000,Tarif 1,kWh,Power_T1,0 +1,77070100010802ff@1000,Tarif 2,kWh,Power_T2,0 +1,77070100010800ff@1000,Summe,kWh,Power_Sum,0 +1,77070100010700ff@1000,Verbrauch,W,Power_Use_Sum,1 ++2,13,s,0,9600,Pump +2,77070100010801ff@1000,Tarif 1,kWh,HP_T1,0 +2,77070100010802ff@1000,Tarif 2,kWh,HP_T2,0 +2,77070100010800ff@1000,Summe,kWh,HP_Sum,0 +2,77070100010700ff@1000,Verbrauch,W,HP_Use_Sum,1 +# + ``` ------------------------------------------------------------------------------