I have a strange issue now when I am trying to bring my irrigation controller over from Vera to openHab. I setup the Ethernet Gateway and have several nodes working ok. I then configured the binding to have the irrigation controller as follows:
Bridge mysensors:bridge-eth:gateway [ ipAddress="192.168.100.63", tcpPort=5003, sendDelay=150, startupCheckEnabled=true, networkSanCheckEnabled=true, networkSanCheckInterval=1, networkSanCheckConnectionFailAttempts=1 ] {
light Water_All_Zones "Water - All Zones" @ "Backyard" [ nodeId=2, childId=0 ]
light Water_Zone1 "Water - Veg Garden" @ "Backyard" [ nodeId=2, childId=1 ]
light Water_Zone2 "Water - Rear Garden" @ "Backyard" [ nodeId=2, childId=2 ]
light Water_Zone3 "Water - Side Garden" @ "Backyard" [ nodeId=2, childId=3 ]
light Water_Zone4 "Water - Verge Grass" @ "Backyard" [ nodeId=2, childId=4 ]
light Water_Zone5 "Water - Front Grass" @ "Backyard" [ nodeId=2, childId=5 ]
light Water_Zone6 "Water - Front Garden" @ "Backyard" [ nodeId=2, childId=6 ]
cover Courtyard_Door_Blind "Door Blind" @ "Courtyard" [ nodeId=4, childId=1 ]
cover Office_Front_Blinds "Front Blinds" @ "Office" [ nodeId=4, childId=2 ]
cover Office_Side_Blinds "Side Blinds" @ "Office" [ nodeId=4, childId=3 ]
cover Courtyard_LHS_Blinds "LHS Blinds" @ "Courtyard" [ nodeId=4, childId=4 ]
cover Courtyard_RHS_Blinds "RHS Blinds" @ "Courtyard" [ nodeId=4, childId=5 ]
power Power_Phase1 "Energy Phase 1" @ "Garage" [ nodeId=5, childId=0 ]
power Power_Phase2 "Energy Phase 2" @ "Garage" [ nodeId=5, childId=1 ]
power Power_Phase3 "Energy Phase 3" @ "Garage" [ nodeId=5, childId=2 ]
power Power_Main "Energy Main" @ "Garage" [ nodeId=5, childId=8 ]
light Entry_FrontGarden_Lights "Power Socket Relay" @ "Entry" [ nodeId=7, childId=1 ]
light Office_Door "Door Controller" @ "Office" [ nodeId=13, childId=1 ]
light Desktop_Debug_Light "Power Socket Relay" @ "Office" [ nodeId=27, childId=1 ]
}
So far so good, I then setup the items as follows:
Switch Water_All_Zones "Water All Zones" <selfwater> (gDevices,gRoom_Backyard) [ "iss:type:DevSwitch", "iss:room:Backyard" ] {channel="mysensors:light:gateway:Water_All_Zones:status"}
Switch Water_Veg_Garden "Water - Veg Garden" <selfwater> (gDevices,gRoom_Backyard) [ "iss:type:DevSwitch", "iss:room:Backyard" ] {channel="mysensors:light:gateway:Water_Zone1:status"}
Switch Water_Rear_Garden "Water - Rear Garden" <selfwater> (gDevices,gRoom_Backyard) [ "iss:type:DevSwitch", "iss:room:Backyard" ] {channel="mysensors:light:gateway:Water_Zone2:status"}
Switch Water_Side_Garden "Water - Side Garden" <selfwater> (gDevices,gRoom_Backyard) [ "iss:type:DevSwitch", "iss:room:Backyard" ] {channel="mysensors:light:gateway:Water_Zone3:status"}
Switch Water_Verge_Grass "Water - Verge Grass" <selfwater> (gDevices,gRoom_Backyard) [ "iss:type:DevSwitch", "iss:room:Backyard" ] {channel="mysensors:light:gateway:Water_Zone4:status"}
Switch Water_Front_Grass "Water - Front Grass" <selfwater> (gDevices,gRoom_Backyard) [ "iss:type:DevSwitch", "iss:room:Backyard" ] {channel="mysensors:light:gateway:Water_Zone5:status"}
Switch Water_Front_Garden "Water - Front Garden" <selfwater> (gDevices,gRoom_Backyard) [ "iss:type:DevSwitch", "iss:room:Backyard" ] {channel="mysensors:light:gateway:Water_Zone6:status"}
Number Water_Zone1_AllTime "Water - Zone 1 - All Time [%d]" <selfruntime> (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone1:var1"}
Number Water_Zone2_AllTime "Water - Zone 2 - All Time [%d]" <selfruntime> (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone2:var1"}
Number Water_Zone3_AllTime "Water - Zone 3 - All Time [%d]" <selfruntime> (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone3:var1"}
Number Water_Zone4_AllTime "Water - Zone 4 - All Time [%d]" <selfruntime> (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone4:var1"}
Number Water_Zone5_AllTime "Water - Zone 5 - All Time [%d]" <selfruntime> (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone5:var1"}
Number Water_Zone6_AllTime "Water - Zone 6 - All Time [%d]" <selfruntime> (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone6:var1"}
Number Water_Zone1_Time "Water - Zone1 - Time [%d]" <selfruntime> (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone1:var2"}
Number Water_Zone2_Time "Water - Zone2 - Time [%d]" <selfruntime> (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone2:var2"}
Number Water_Zone3_Time "Water - Zone3 - Time [%d]" <selfruntime> (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone3:var2"}
Number Water_Zone4_Time "Water - Zone4 - Time [%d]" <selfruntime> (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone4:var2"}
Number Water_Zone5_Time "Water - Zone5 - Time [%d]" <selfruntime> (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone5:var2"}
Number Water_Zone6_Time "Water - Zone6 - Time [%d]" <selfruntime> (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone6:var2"}
String Water_Zone1_Name "Water - Zone1 - Name [%s]" (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone1:var3"}
String Water_Zone2_Name "Water - Zone2 - Name [%s]" (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone2:var3"}
String Water_Zone3_Name "Water - Zone3 - Name [%s]" (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone3:var3"}
String Water_Zone4_Name "Water - Zone4 - Name [%s]" (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone4:var3"}
String Water_Zone5_Name "Water - Zone5 - Name [%s]" (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone5:var3"}
String Water_Zone6_Name "Water - Zone6 - Name [%s]" (gDevices,gRoom_Backyard) {channel="mysensors:light:gateway:Water_Zone6:var3"}
As the Irrigation project uses 3 vars to manage time and names I setup a System Started rule as follows:
rule "System started"
when
System started
then
createTimer(now.plusSeconds(180)) [ |
logInfo("Watering", "System started")
if (Water_Zone1_AllTime.state == NULL) Water_Zone1_AllTime.sendCommand(5 as Number)
if (Water_Zone2_AllTime.state == NULL) Water_Zone2_AllTime.sendCommand(8 as Number)
if (Water_Zone3_AllTime.state == NULL) Water_Zone3_AllTime.sendCommand(8 as Number)
if (Water_Zone4_AllTime.state == NULL) Water_Zone4_AllTime.sendCommand(12 as Number)
if (Water_Zone5_AllTime.state == NULL) Water_Zone5_AllTime.sendCommand(12 as Number)
if (Water_Zone6_AllTime.state == NULL) Water_Zone6_AllTime.sendCommand(10 as Number)
if (Water_Zone1_Time.state == NULL) Water_Zone1_Time.sendCommand(5 as Number)
if (Water_Zone2_Time.state == NULL) Water_Zone2_Time.sendCommand(8 as Number)
if (Water_Zone3_Time.state == NULL) Water_Zone3_Time.sendCommand(8 as Number)
if (Water_Zone4_Time.state == NULL) Water_Zone4_Time.sendCommand(12 as Number)
if (Water_Zone5_Time.state == NULL) Water_Zone5_Time.sendCommand(12 as Number)
if (Water_Zone6_Time.state == NULL) Water_Zone6_Time.sendCommand(10 as Number)
if (Water_Zone1_Name.state == NULL) Water_Zone1_Name.sendCommand("Veg Garden")
if (Water_Zone2_Name.state == NULL) Water_Zone2_Name.sendCommand("Rear Garden")
if (Water_Zone3_Name.state == NULL) Water_Zone3_Name.sendCommand("Side Garden")
if (Water_Zone4_Name.state == NULL) Water_Zone4_Name.sendCommand("Verge Grass")
if (Water_Zone5_Name.state == NULL) Water_Zone5_Name.sendCommand("Front Grass")
if (Water_Zone6_Name.state == NULL) Water_Zone6_Name.sendCommand("Front Garden")
]
end
This all loaded up nicely (for interest I tried postUpdate as well as sendCommand) shows the right stuff in PaperUI - Control can see all the numbers and string however I have had several issues with the setup.
Firstly when my controller requests the time from the gateway it receives UTC and is showing the wrong time on the LCD display. I have checked that my controller is configured for the right timezone and is showing the right time but everytime I reset the Irrigation controller and it requests the time it is getting UTC. (I did work once and got the right time but not sure how this occurred) I rebooted the openhabianpi unit and it is still delivering UTC, but the fact it did it right once means I cannot just adjust the timezone in the node as it may get it right somehow and then be adjusted wrong! I would have thought the gateway should deliver the correct system time.
Secondly I cannot get the Irrigation Controller to read the var3 String value - when this is requested from from the Irrigation controller it only gets a 0 (numeric). This seems to indicate that the var's can only handle a Number - is this true and how does one get around this if this is the case? I tried changing the value in PaperUI and it changes but nothing gets sent to the node but changing the numeric values in var1 & 2 update to the node - all updates are shown in the logtail.
For the record here is the Serial boot log from the node:
__ __ ____
| \/ |_ _/ ___| ___ _ __ ___ ___ _ __ ___
| |\/| | | | \___ \ / _ \ `_ \/ __|/ _ \| `__/ __|
| | | | |_| |___| | __/ | | \__ \ _ | | \__ \
|_| |_|\__, |____/ \___|_| |_|___/\___/|_| |___/
|___/ 2.2.0
16 MCO:BGN:INIT NODE,CP=RNNNA---,VER=2.2.0
25 TSM:INIT
26 TSF:WUR:MS=0
33 TSM:INIT:TSP OK
35 TSM:INIT:STATID=2
37 TSF:SID:OK,ID=2
39 TSM:FPAR
75 TSF:MSG:SEND,2-2-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
81 TSF:MSG:READ,0-0-2,s=255,c=3,t=8,pt=1,l=1,sg=0:0
87 TSF:MSG:FPAR OK,ID=0,D=1
2082 TSM:FPAR:OK
2083 TSM:ID
2084 TSM:ID:OK
2086 TSM:UPL
2089 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=OK:1
2100 TSF:MSG:READ,0-0-2,s=255,c=3,t=25,pt=1,l=1,sg=0:1
2105 TSF:MSG:PONG RECV,HP=1
2107 TSM:UPL:OK
2109 TSM:READY:ID=2,PAR=0,DIS=1
2113 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=15,pt=6,l=2,sg=0,ft=0,st=OK:0100
2120 TSF:MSG:READ,0-0-2,s=255,c=3,t=15,pt=6,l=2,sg=0:0100
2127 TSF:MSG:SEND,2-2-0-0,s=255,c=0,t=17,pt=0,l=5,sg=0,ft=0,st=OK:2.2.0
2137 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=6,pt=1,l=1,sg=0,ft=0,st=OK:0
2156 TSF:MSG:READ,0-0-2,s=255,c=3,t=6,pt=0,l=1,sg=0:M
2163 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=11,pt=0,l=19,sg=0,ft=0,st=OK:Irrigation Ctrl (2)
2173 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=12,pt=0,l=3,sg=0,ft=0,st=OK:4.0
2182 TSF:MSG:SEND,2-2-0-0,s=0,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2189 TSF:MSG:SEND,2-2-0-0,s=1,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2196 TSF:MSG:SEND,2-2-0-0,s=2,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2204 TSF:MSG:SEND,2-2-0-0,s=3,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2211 TSF:MSG:SEND,2-2-0-0,s=4,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2219 TSF:MSG:SEND,2-2-0-0,s=5,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2227 TSF:MSG:SEND,2-2-0-0,s=6,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2232 MCO:REG:REQ
2236 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=26,pt=1,l=1,sg=0,ft=0,st=OK:2
2242 TSF:MSG:READ,0-0-2,s=255,c=3,t=27,pt=1,l=1,sg=0:1
2247 MCO:PIM:NODE REG=1
2249 MCO:BGN:STP
Initialising...
Turning All Valves Off...
Checking EEPROM for stored date:
Retreiving last run time from EEPROM...
Sensor Presentation Complete
Ready...
2907 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=1,pt=0,l=0,sg=0,ft=0,st=OK:
Requesting time from Gateway:
2932 TSF:MSG:READ,0-0-2,s=255,c=3,t=1,pt=0,l=10,sg=0:1534904507
Time value received and updated...
Clock updated....
Sensor's time currently set to: 02:21am ***** Should be 10:21am GMT +8 *******
8/22/2018
Wednesday
Calling for Valve 1 Data...
3946 TSF:MSG:SEND,2-2-0-0,s=1,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
3966 TSF:MSG:READ,0-0-2,s=1,c=1,t=24,pt=0,l=1,sg=0:5
Recieved variable1 valve:1 = 5
New Zone Times Recieved...
Zone 1 individual time: 0 group time: 5 name: Zone 1
Zone 2 individual time: 0 group time: 0 name: Zone 2
Zone 3 individual time: 0 group time: 0 name: Zone 3
Zone 4 individual time: 0 group time: 0 name: Zone 4
Zone 5 individual time: 0 group time: 0 name: Zone 5
Zone 6 individual time: 0 group time: 0 name: Zone 6
4005 TSF:MSG:SEND,2-2-0-0,s=1,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
4065 TSF:MSG:SEND,2-2-0-0,s=1,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
4116 TSF:MSG:READ,0-0-2,s=1,c=1,t=25,pt=0,l=1,sg=0:5
Recieved variable2 valve:1 = 5
New Zone Times Recieved...
Zone 1 individual time: 5 group time: 5 name: Zone 1
Zone 2 individual time: 0 group time: 0 name: Zone 2
Zone 3 individual time: 0 group time: 0 name: Zone 3
Zone 4 individual time: 0 group time: 0 name: Zone 4
Zone 5 individual time: 0 group time: 0 name: Zone 5
Zone 6 individual time: 0 group time: 0 name: Zone 6
4152 TSF:MSG:SEND,2-2-0-0,s=1,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
4212 TSF:MSG:SEND,2-2-0-0,s=1,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
4267 TSF:MSG:READ,0-0-2,s=1,c=1,t=25,pt=0,l=1,sg=0:5
Recieved variable2 valve:1 = 5
Calling for Valve 2 Data...
4303 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
4363 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
4417 TSF:MSG:READ,0-0-2,s=1,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 1 = 0
4425 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
4484 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
4543 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
4567 TSF:MSG:READ,0-0-2,s=1,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 1 = 0
4602 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
4662 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
4717 TSF:MSG:READ,0-0-2,s=2,c=1,t=24,pt=0,l=1,sg=0:8
Recieved variable1 valve:2 = 8
New Zone Times Recieved...
Zone 1 individual time: 5 group time: 5 name: 0
Zone 2 individual time: 0 group time: 8 name: Zone 2
Zone 3 individual time: 0 group time: 0 name: Zone 3
Zone 4 individual time: 0 group time: 0 name: Zone 4
Zone 5 individual time: 0 group time: 0 name: Zone 5
Zone 6 individual time: 0 group time: 0 name: Zone 6
Calling for Valve 3 Data...
4781 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
4839 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
4868 TSF:MSG:READ,0-0-2,s=2,c=1,t=24,pt=0,l=1,sg=0:8
Recieved variable1 valve:2 = 8
4898 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
4957 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5016 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5022 TSF:MSG:READ,0-0-2,s=2,c=1,t=25,pt=0,l=1,sg=0:8
Recieved variable2 valve:2 = 8
New Zone Times Recieved...
Zone 1 individual time: 5 group time: 5 name: 0
Zone 2 individual time: 8 group time: 8 name: Zone 2
Zone 3 individual time: 0 group time: 0 name: Zone 3
Zone 4 individual time: 0 group time: 0 name: Zone 4
Zone 5 individual time: 0 group time: 0 name: Zone 5
Zone 6 individual time: 0 group time: 0 name: Zone 6
5075 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
5135 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
5168 TSF:MSG:READ,0-0-2,s=2,c=1,t=25,pt=0,l=1,sg=0:8
Recieved variable2 valve:2 = 8
Calling for Valve 4 Data...
5222 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
5281 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
5318 TSF:MSG:READ,0-0-2,s=2,c=1,t=25,pt=0,l=1,sg=0:8
Recieved variable2 valve:2 = 8
5340 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5399 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5458 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5474 TSF:MSG:READ,0-0-2,s=2,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 2 = 0
5518 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
5577 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
5619 TSF:MSG:READ,0-0-2,s=2,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 2 = 0
Calling for Valve 5 Data...
5663 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
5722 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
5770 TSF:MSG:READ,0-0-2,s=3,c=1,t=24,pt=0,l=1,sg=0:8
Recieved variable1 valve:3 = 8
New Zone Times Recieved...
Zone 1 individual time: 5 group time: 5 name: 0
Zone 2 individual time: 8 group time: 8 name: 0
Zone 3 individual time: 0 group time: 8 name: Zone 3
Zone 4 individual time: 0 group time: 0 name: Zone 4
Zone 5 individual time: 0 group time: 0 name: Zone 5
Zone 6 individual time: 0 group time: 0 name: Zone 6
5805 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5865 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5931 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5952 TSF:MSG:READ,0-0-2,s=3,c=1,t=24,pt=0,l=1,sg=0:8
Recieved variable1 valve:3 = 8
5996 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
6055 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
6071 TSF:MSG:READ,0-0-2,s=3,c=1,t=25,pt=0,l=1,sg=0:8
Recieved variable2 valve:3 = 8
New Zone Times Recieved...
Zone 1 individual time: 5 group time: 5 name: 0
Zone 2 individual time: 8 group time: 8 name: 0
Zone 3 individual time: 8 group time: 8 name: Zone 3
Zone 4 individual time: 0 group time: 0 name: Zone 4
Zone 5 individual time: 0 group time: 0 name: Zone 5
Zone 6 individual time: 0 group time: 0 name: Zone 6
Calling for Valve 6 Data...
6142 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
6202 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
6220 TSF:MSG:READ,0-0-2,s=3,c=1,t=25,pt=0,l=1,sg=0:8
Recieved variable2 valve:3 = 8
6261 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
6320 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
6371 TSF:MSG:READ,0-0-2,s=3,c=1,t=25,pt=0,l=1,sg=0:8
Recieved variable2 valve:3 = 8
6379 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
6438 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
6498 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
6521 TSF:MSG:READ,0-0-2,s=3,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 3 = 0
6556 MCO:BGN:INIT OK,TSP=1
6723 TSF:MSG:READ,0-0-2,s=3,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 3 = 0
6927 TSF:MSG:READ,0-0-2,s=4,c=1,t=24,pt=0,l=2,sg=0:12
Recieved variable1 valve:4 = 12
New Zone Times Recieved...
Zone 1 individual time: 5 group time: 5 name: 0
Zone 2 individual time: 8 group time: 8 name: 0
Zone 3 individual time: 8 group time: 8 name: 0
Zone 4 individual time: 0 group time: 12 name: Zone 4
Zone 5 individual time: 0 group time: 0 name: Zone 5
Zone 6 individual time: 0 group time: 0 name: Zone 6
7129 TSF:MSG:READ,0-0-2,s=4,c=1,t=24,pt=0,l=2,sg=0:12
Recieved variable1 valve:4 = 12
7148 TSF:MSG:READ,0-0-2,s=4,c=1,t=25,pt=0,l=2,sg=0:12
Recieved variable2 valve:4 = 12
New Zone Times Recieved...
Zone 1 individual time: 5 group time: 5 name: 0
Zone 2 individual time: 8 group time: 8 name: 0
Zone 3 individual time: 8 group time: 8 name: 0
Zone 4 individual time: 12 group time: 12 name: Zone 4
Zone 5 individual time: 0 group time: 0 name: Zone 5
Zone 6 individual time: 0 group time: 0 name: Zone 6
7331 TSF:MSG:READ,0-0-2,s=4,c=1,t=25,pt=0,l=2,sg=0:12
Recieved variable2 valve:4 = 12
7534 TSF:MSG:READ,0-0-2,s=4,c=1,t=25,pt=0,l=2,sg=0:12
Recieved variable2 valve:4 = 12
7736 TSF:MSG:READ,0-0-2,s=4,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 4 = 0
7754 TSF:MSG:READ,0-0-2,s=4,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 4 = 0
7939 TSF:MSG:READ,0-0-2,s=5,c=1,t=24,pt=0,l=2,sg=0:12
Recieved variable1 valve:5 = 12
New Zone Times Recieved...
Zone 1 individual time: 5 group time: 5 name: 0
Zone 2 individual time: 8 group time: 8 name: 0
Zone 3 individual time: 8 group time: 8 name: 0
Zone 4 individual time: 12 group time: 12 name: 0
Zone 5 individual time: 0 group time: 12 name: Zone 5
Zone 6 individual time: 0 group time: 0 name: Zone 6
8141 TSF:MSG:READ,0-0-2,s=5,c=1,t=24,pt=0,l=2,sg=0:12
Recieved variable1 valve:5 = 12
8344 TSF:MSG:READ,0-0-2,s=5,c=1,t=25,pt=0,l=2,sg=0:12
Recieved variable2 valve:5 = 12
New Zone Times Recieved...
Zone 1 individual time: 5 group time: 5 name: 0
Zone 2 individual time: 8 group time: 8 name: 0
Zone 3 individual time: 8 group time: 8 name: 0
Zone 4 individual time: 12 group time: 12 name: 0
Zone 5 individual time: 12 group time: 12 name: Zone 5
Zone 6 individual time: 0 group time: 0 name: Zone 6
8375 TSF:MSG:READ,0-0-2,s=5,c=1,t=25,pt=0,l=2,sg=0:12
Recieved variable2 valve:5 = 12
8546 TSF:MSG:READ,0-0-2,s=5,c=1,t=25,pt=0,l=2,sg=0:12
Recieved variable2 valve:5 = 12
8748 TSF:MSG:READ,0-0-2,s=5,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 5 = 0
8950 TSF:MSG:READ,0-0-2,s=5,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 5 = 0
8970 TSF:MSG:READ,0-0-2,s=6,c=1,t=24,pt=0,l=2,sg=0:10
Recieved variable1 valve:6 = 10
New Zone Times Recieved...
Zone 1 individual time: 5 group time: 5 name: 0
Zone 2 individual time: 8 group time: 8 name: 0
Zone 3 individual time: 8 group time: 8 name: 0
Zone 4 individual time: 12 group time: 12 name: 0
Zone 5 individual time: 12 group time: 12 name: 0
Zone 6 individual time: 0 group time: 10 name: Zone 6
9153 TSF:MSG:READ,0-0-2,s=6,c=1,t=24,pt=0,l=2,sg=0:10
Recieved variable1 valve:6 = 10
9356 TSF:MSG:READ,0-0-2,s=6,c=1,t=25,pt=0,l=2,sg=0:10
Recieved variable2 valve:6 = 10
New Zone Times Recieved...
Zone 1 individual time: 5 group time: 5 name: 0
Zone 2 individual time: 8 group time: 8 name: 0
Zone 3 individual time: 8 group time: 8 name: 0
Zone 4 individual time: 12 group time: 12 name: 0
Zone 5 individual time: 12 group time: 12 name: 0
Zone 6 individual time: 10 group time: 10 name: Zone 6
9559 TSF:MSG:READ,0-0-2,s=6,c=1,t=25,pt=0,l=2,sg=0:10
Recieved variable2 valve:6 = 10
9577 TSF:MSG:READ,0-0-2,s=6,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 6 = 0
9760 TSF:MSG:READ,0-0-2,s=6,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 6 = 0
9963 TSF:MSG:READ,0-0-2,s=6,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 6 = 0
EDIT - After the next openHab restart when the variables all got restored from Persistance they all show up right but now the node when reboot will not pick up the data see this node reboot log (Note Zone 1 group time 5 came through as I had forced a sendCommand on that single item - all other values restored from persistance - seems the same issue if they come from postUpdate also)
__ __ ____
| \/ |_ _/ ___| ___ _ __ ___ ___ _ __ ___
| |\/| | | | \___ \ / _ \ `_ \/ __|/ _ \| `__/ __|
| | | | |_| |___| | __/ | | \__ \ _ | | \__ \
|_| |_|\__, |____/ \___|_| |_|___/\___/|_| |___/
|___/ 2.2.0
16 MCO:BGN:INIT NODE,CP=RNNNA---,VER=2.2.0
25 TSM:INIT
26 TSF:WUR:MS=0
33 TSM:INIT:TSP OK
35 TSM:INIT:STATID=2
37 TSF:SID:OK,ID=2
39 TSM:FPAR
75 TSF:MSG:SEND,2-2-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
388 TSF:MSG:READ,0-0-2,s=255,c=3,t=8,pt=1,l=1,sg=0:0
393 TSF:MSG:FPAR OK,ID=0,D=1
2082 TSM:FPAR:OK
2083 TSM:ID
2084 TSM:ID:OK
2086 TSM:UPL
2089 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=OK:1
2100 TSF:MSG:READ,0-0-2,s=255,c=3,t=25,pt=1,l=1,sg=0:1
2105 TSF:MSG:PONG RECV,HP=1
2107 TSM:UPL:OK
2109 TSM:READY:ID=2,PAR=0,DIS=1
2113 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=15,pt=6,l=2,sg=0,ft=0,st=OK:0100
2120 TSF:MSG:READ,0-0-2,s=255,c=3,t=15,pt=6,l=2,sg=0:0100
2128 TSF:MSG:SEND,2-2-0-0,s=255,c=0,t=17,pt=0,l=5,sg=0,ft=0,st=OK:2.2.0
2137 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=6,pt=1,l=1,sg=0,ft=0,st=OK:0
2162 TSF:MSG:READ,0-0-2,s=255,c=3,t=6,pt=0,l=1,sg=0:M
2170 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=11,pt=0,l=19,sg=0,ft=0,st=OK:Irrigation Ctrl (2)
2180 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=12,pt=0,l=3,sg=0,ft=0,st=OK:4.0
2188 TSF:MSG:SEND,2-2-0-0,s=0,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2195 TSF:MSG:SEND,2-2-0-0,s=1,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2203 TSF:MSG:SEND,2-2-0-0,s=2,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2210 TSF:MSG:SEND,2-2-0-0,s=3,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2217 TSF:MSG:SEND,2-2-0-0,s=4,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2226 TSF:MSG:SEND,2-2-0-0,s=5,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2233 TSF:MSG:SEND,2-2-0-0,s=6,c=0,t=3,pt=0,l=0,sg=0,ft=0,st=OK:
2239 MCO:REG:REQ
2242 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=26,pt=1,l=1,sg=0,ft=0,st=OK:2
2249 TSF:MSG:READ,0-0-2,s=255,c=3,t=27,pt=1,l=1,sg=0:1
2254 MCO:PIM:NODE REG=1
2256 MCO:BGN:STP
Initialising...
Turning All Valves Off...
Checking EEPROM for stored date:
Retreiving last run time from EEPROM...
Sensor Presentation Complete
Ready...
2914 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=1,pt=0,l=0,sg=0,ft=0,st=OK:
Requesting time from Gateway:
2939 TSF:MSG:READ,0-0-2,s=255,c=3,t=1,pt=0,l=10,sg=0:1534915205
Time value received and updated...
Clock updated....
Sensor's time currently set to: 05:20am
8/22/2018
Wednesday
Calling for Valve 1 Data...
3952 TSF:MSG:SEND,2-2-0-0,s=1,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
3976 TSF:MSG:READ,0-0-2,s=1,c=1,t=24,pt=0,l=1,sg=0:5
Recieved variable1 valve:1 = 5
New Zone Times Recieved...
Zone 1 individual time: 0 group time: 5 name: Zone 1
Zone 2 individual time: 0 group time: 0 name: Zone 2
Zone 3 individual time: 0 group time: 0 name: Zone 3
Zone 4 individual time: 0 group time: 0 name: Zone 4
Zone 5 individual time: 0 group time: 0 name: Zone 5
Zone 6 individual time: 0 group time: 0 name: Zone 6
4012 TSF:MSG:SEND,2-2-0-0,s=1,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
4072 TSF:MSG:SEND,2-2-0-0,s=1,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
4126 TSF:MSG:READ,0-0-2,s=1,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:1 = 0
4134 TSF:MSG:SEND,2-2-0-0,s=1,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
4194 TSF:MSG:SEND,2-2-0-0,s=1,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
4253 TSF:MSG:SEND,2-2-0-0,s=1,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
4276 TSF:MSG:READ,0-0-2,s=1,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:1 = 0
Calling for Valve 2 Data...
4340 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
4399 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
4426 TSF:MSG:READ,0-0-2,s=1,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 1 = 0
4458 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
4517 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
4611 !TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=NACK:
4670 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=25,pt=0,l=0,sg=0,ft=1,st=OK:
4729 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
4736 TSF:MSG:READ,0-0-2,s=1,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 1 = 0
4789 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
4848 TSF:MSG:SEND,2-2-0-0,s=2,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
4878 TSF:MSG:READ,0-0-2,s=2,c=1,t=24,pt=0,l=1,sg=0:0
Recieved variable1 valve:2 = 0
Calling for Valve 3 Data...
4935 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
4995 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
5027 TSF:MSG:READ,0-0-2,s=2,c=1,t=24,pt=0,l=1,sg=0:0
Recieved variable1 valve:2 = 0
5054 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5113 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5173 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5179 TSF:MSG:READ,0-0-2,s=2,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:2 = 0
5232 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
5292 TSF:MSG:SEND,2-2-0-0,s=3,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
5328 TSF:MSG:READ,0-0-2,s=2,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:2 = 0
Calling for Valve 4 Data...
5379 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
5438 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
5479 TSF:MSG:READ,0-0-2,s=2,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:2 = 0
5497 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5557 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5616 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
5632 TSF:MSG:READ,0-0-2,s=2,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:2 = 0
5676 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
5735 TSF:MSG:SEND,2-2-0-0,s=4,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
5780 TSF:MSG:READ,0-0-2,s=2,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 2 = 0
Calling for Valve 5 Data...
5822 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
5881 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
5929 TSF:MSG:READ,0-0-2,s=2,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 2 = 0
5941 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
6000 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
6060 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
6080 TSF:MSG:READ,0-0-2,s=3,c=1,t=24,pt=0,l=1,sg=0:0
Recieved variable1 valve:3 = 0
6119 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
6178 TSF:MSG:SEND,2-2-0-0,s=5,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
6231 TSF:MSG:READ,0-0-2,s=3,c=1,t=24,pt=0,l=1,sg=0:0
Recieved variable1 valve:3 = 0
Calling for Valve 6 Data...
6267 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
6326 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=24,pt=0,l=0,sg=0,ft=0,st=OK:
6381 TSF:MSG:READ,0-0-2,s=3,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:3 = 0
6389 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
6448 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
6507 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=25,pt=0,l=0,sg=0,ft=0,st=OK:
6531 TSF:MSG:READ,0-0-2,s=3,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:3 = 0
6566 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
6626 TSF:MSG:SEND,2-2-0-0,s=6,c=2,t=26,pt=0,l=0,sg=0,ft=0,st=OK:
6681 TSF:MSG:READ,0-0-2,s=3,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:3 = 0
6689 MCO:BGN:INIT OK,TSP=1
6884 TSF:MSG:READ,0-0-2,s=3,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 3 = 0
7087 TSF:MSG:READ,0-0-2,s=3,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 3 = 0
7288 TSF:MSG:READ,0-0-2,s=4,c=1,t=24,pt=0,l=1,sg=0:0
Recieved variable1 valve:4 = 0
7308 TSF:MSG:READ,0-0-2,s=4,c=1,t=24,pt=0,l=1,sg=0:0
Recieved variable1 valve:4 = 0
7491 TSF:MSG:READ,0-0-2,s=4,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:4 = 0
7694 TSF:MSG:READ,0-0-2,s=4,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:4 = 0
7897 TSF:MSG:READ,0-0-2,s=4,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:4 = 0
7915 TSF:MSG:READ,0-0-2,s=4,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 4 = 0
8099 TSF:MSG:READ,0-0-2,s=4,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 4 = 0
8301 TSF:MSG:READ,0-0-2,s=5,c=1,t=24,pt=0,l=1,sg=0:0
Recieved variable1 valve:5 = 0
8504 TSF:MSG:READ,0-0-2,s=5,c=1,t=24,pt=0,l=1,sg=0:0
Recieved variable1 valve:5 = 0
8522 TSF:MSG:READ,0-0-2,s=5,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:5 = 0
8706 TSF:MSG:READ,0-0-2,s=5,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:5 = 0
8908 TSF:MSG:READ,0-0-2,s=5,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:5 = 0
9111 TSF:MSG:READ,0-0-2,s=5,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 5 = 0
9129 TSF:MSG:READ,0-0-2,s=5,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 5 = 0
9313 TSF:MSG:READ,0-0-2,s=6,c=1,t=24,pt=0,l=1,sg=0:0
Recieved variable1 valve:6 = 0
9516 TSF:MSG:READ,0-0-2,s=6,c=1,t=24,pt=0,l=1,sg=0:0
Recieved variable1 valve:6 = 0
9718 TSF:MSG:READ,0-0-2,s=6,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:6 = 0
9737 TSF:MSG:READ,0-0-2,s=6,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:6 = 0
9921 TSF:MSG:READ,0-0-2,s=6,c=1,t=25,pt=0,l=1,sg=0:0
Recieved variable2 valve:6 = 0
10123 TSF:MSG:READ,0-0-2,s=6,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 6 = 0
10326 TSF:MSG:READ,0-0-2,s=6,c=1,t=26,pt=0,l=1,sg=0:0
Recieved variable3 valve: 6 = 0
Sorry also just realised I am posting in an MQTT thread - I had an MQTT Gateway and now changed to Ethernet.