Question
How to connect CCTV camera live streaming in thingworx mashup
- November 12, 2020
- 2 replies
- 2959 views
1. I'm using Thingworx 9.0, I want to show a dash or CCTV camera on the thingworx mashup how can I do that, suggest any architecture diagram to show a dash or CCTV camera on the mashup.
2. I have sensor data in hex format which is in the attachment, I want to convert it in the readable format in thingworx how can I do that. I did with the below program but it will give me different outputs.
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;

please suggest the way, thanks in advance

