Serial-Direct connection between Pi and emonTx shield

I’ve managed now to get inputs from TXShield via Arduino and USB to raspiPi.
The ‘clue’ was in the emonhub.conf.
I replaced ‘Type=JeeInterfacer’ with ‘EmonHubSerialInterfacer’ and commenteted ‘Group’, ‘frequency’ and ‘baseid’ out.
Replaced ‘/dev/ttyAMA0’ with ‘/dev/ttyACM0’ as we got to know from
sudo ls -la /dev/{tty{ACM,AMAS,USB},serial}*
With emonhub like this:

[interfacers]
[[RFM2Pi]]
    Type = EmonHubSerialInterfacer
    [[[init_settings]]]
        com_port = /dev/ttyACM0
        com_baud = 9600
    [[[runtimesettings]]]
#        group = 210
#        frequency = 433
#        baseid = 15

I get now timesiries in my own emoncms db.

Next step is to get them populized and visualisied in emoncms.org.
:slight_smile:
Thank you All, again.