muniprasad

Recommended Posts

You'll probably need to use:

daqconnect.addValue("tagName", value, historyLength)

to push the data. I don't think channels passed over DAQFactory networking will send up to DAQConnect unless the server itself has the connection. So, create a sequence that loops every at whatever interval you want to update DAQConnect, and inside the loop, repeat the above command for every tag you want sent. Something like:


while(1)
delay(5)
daqconnect.addValue("myChannel", myChannel[0], -1)
daqconnect.addValue("myOtherChannel", myOtherChannel[0], -1)
endwhile

[/CODE]

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.