If i recall correctly the change in node id was to indicate a change in packet format in the form of an additional 2 bytes when the “pulse” was changed to a 32bit unsigned long, from a 16bit signed int.
Assuming your node 10 conf in emonhub.conf was like so
[[10]]
nodename = emontx1
[[[rx]]]
names = power1, power2, power3, power4, vrms, temp1, temp2, temp3, temp4, temp5, temp6, pulse
datacode = h
scales = 1,1,1,1,0.01,0.1,0.1, 0.1,0.1,0.1,0.1,1
units =W,W,W,W,V,C,C,C,C,C,C,p
the payload from the new emonTx sketch should be node 8 by default and uses this default configuration
[[8]]
nodename = emontx3
[[[rx]]]
names = power1, power2, power3, power4, vrms, temp1, temp2, temp3, temp4, temp5, temp6, pulse
datacodes = h,h,h,h,h,h,h,h,h,h,h,L
scales = 1,1,1,1,0.01,0.1,0.1, 0.1,0.1,0.1,0.1,1
units =W,W,W,W,V,C,C,C,C,C,C,p
which you will need to alter the node id for so that is marries up with your existing emoncms data like so
[[10]]
nodename = emontx3
[[[rx]]]
names = power1, power2, power3, power4, vrms, temp1, temp2, temp3, temp4, temp5, temp6, pulse
datacodes = h,h,h,h,h,h,h,h,h,h,h,L
scales = 1,1,1,1,0.01,0.1,0.1, 0.1,0.1,0.1,0.1,1
units =W,W,W,W,V,C,C,C,C,C,C,p
The data should still get through even without this edit though, but I would recommend doing this up front if you log RSSI as using the new emonTx payload without this edit will result in the “pulse” long being decoded as 2 16bit ints, the second of those will land on your current “RSSI” input in emoncms and a new input will be created with the RSSI value.
I was not aware of any issues with the DIP switches so I cannot really comment on that, I’ve not heard any other reports along these lines though.
Nor was I aware of the “low memory” warning, I’m guessing it’s the more recent additional serial prints for use with the emonESP that has pushed the memory use up, you could try commenting out all those extra prints if you are concerned, but the warning doesn’t usually mean a problem is imminent.
Are the leds on the emonTx and the emonBase still flashing (albeit slightly slower at 10s intervals) ? Is anything logged in emonhub?