muniprasad Posted March 15, 2013 Share Posted March 15, 2013 I need to setup daqconnect. I have two PC each for server and client. In my server , i dont have internet connection. So i connect it in client machine and set remote as default. i created account at client PC. Now how i get channels to daqconnect. Link to comment Share on other sites More sharing options...
AzeoTech Posted March 19, 2013 Share Posted March 19, 2013 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.