Posts by hdias2310 • 36 points
2 posts
-
2
votes1
answer79
viewsA: Convert Electronic Invoice Date and Time - Javascript
function hex2date(hexx) { const hex = hexx.toString(); let datestr = ''; for (let i = 0; (i < hex.length && hex.substr(i, 2) !== '00'); i += 2) datestr +=…
-
0
votes2
answers1840
viewsA: Websocket does not connect to server
Check the port that is configured on the server for Websocket, the 8080 port is usually used for HTTP and Websocket uses another port. Find the correct port and switch to the Webscoket constructor…