Question
How to connect CCTV camera live streaming in thingworx mashup
- November 12, 2020
- 1 reply
- 3671 views
Hi,
I have two questions,
1. I am using Thingworx 9.0, I want to show live CCTV streaming on thingworx mashup how can I do that?
Please send me any architecture diagram to connect CCTV camera to thingworx.
Does anyone know how to work? Much appreciated.
2. I have sensor data in the hex format which in the attachment file, I want to convert it into a readable format.
I have tried with some javascript program which is given below but it is giving me the wrong result please check attachment for output. please suggest
var hex1 = HextData.toString();
var str = '';
for (var n = 0; n < hex1.length; n += 3) {
str += String.fromCharCode(parseInt(hex1.substr(n, 6), 16));
}
var result = str;
Does anyone know how to work? Much appreciated.

