I can open up a Terminal Session to this camera and get data from it with an ASCII request over a at IP : PORT.
Once in terminal if I send ?Char it will respond.
I would like to be able to create a Tag and query this data doing the same thing.
I've started by creating a TCP device at the IP/Port which shows connected but then trying to create a tag at the Device/?Char address scheme isn't a magical solve. If anyone has any pointers, I'd be curious.
This is from the Camera (Fluke Endurance Pyrometer with Camera):
11.2.2 Requesting a Parameter (Poll Mode)
?E “?” is the command for “request”
“E” is the parameter requested
carriage return (0Dhex) is closing the request
11.2.3 Setting a Parameter (Poll Mode)
E=0.975 “E” is the parameter to be set
“=” is the command for “set a parameter”
“0.975” is the value for the parameter
carriage return (0Dhex) is closing the setting
11.2.4 Sensor Response
!E0.975 “!” is the parameter for “answer”
“E” is the parameter
“0.975” is the value for the parameter
(0Dhex 0Ahex) is closing the answer
Thanks. Between this response, the earlier response and Kevin's question asking for analysis of the return it's working. I don't know how you get \r and \r\n syntax for the delimiters but some googling on the ASCII data will likely get me there.