My crib sheet says your emonTx V3.4 sends 24 bytes (and your emonHub agrees!) and the data is:
int power1,
power2,
power3,
power4,
Vrms,
temp[MaxOnewire];
unsigned long pulseCount;
There are 5 temperatures, so all you need to do is remove temp6 and the corresponding h, 0.01 & C in “names”, “datacodes”, “scales”, & “units” in the config.
[Explanation: an “int” is 2 bytes - code h, a long is 4 bytes, code L. “names”, “datacodes”, “scales”, & “units” match 1:1 left - right.
1 Like