Input problem with emontx3.4 and emonbase

Hi everyone,

I’m trying to get the data on the input page but can not. Despite the emonhub view detect the data, the same are not displayed on the input page. Appears just rssi 0 value. I’m using the new emonTxV3_4_3Phase_Voltage version 8.

Emonhub config:
[[29]]
nodename = emontx3333
[[[rx]]]
names = power1, power2, power3, power4, vrms, temp1, pulse
datacode = h
scales = 1,1,1,1,0.01,0.1,1
units =W,W,W,W,V,C,C,C,C,C,C,p

What you have there is a totally inconsistent node definition - not only inconsistent with what the sketch demands, but not consistent with itself either. Therefore, emonHub will reject the data as it’s not what is expected and does not know how to handle it.

Have you looked at the sketch? The emonHub node definition is in there (it’s in the comments near the top). If you copy that, it might just work.

Here is the node decoder for the standard 3 phase sketch:

[[11]]
    nodename = 3phase
    [[[rx]]]
       names = powerL1, powerL2, powerL3, power4, Vrms, temp1, temp2, temp3, temp4, temp5, temp6
       datacode = h
       scales = 1,1,1,1,0.01,0.1,0.1,0.1,0.1,0.1,0.1
       units =W,W,W,W,V,C,C,C,C,C,C

More info can be found in the emonhub config guide: