Данные устройства GPS не редактируются - PullRequest
0 голосов
/ 27 сентября 2018

Я использую отслеживание устройства BW08 и отправляю данные на собственный сервер и сервер, записанный в узле js.Но устройство отправляет данные на мой сервер как

    *
    aD 'T�8

    aD 'T�8

    *
    aD 'T�8.79.48.102: xx

    *
    xx   �
                �C��8���n�

    xx   �
                �C��8���n�

Как читать данные?Мой код сервера NodeJS находится здесь: ===========================================================================

var net = require('net');
var HOST = 'xxx.xxx.x.xxx';
var PORT = 17000;

// Create a server instance, and chain the listen function to it
// The function passed to net.createServer() becomes the event handler for the 'connection' event
// The sock object the callback function receives UNIQUE for each connection
net.createServer(function(sock) {
    sock.setEncoding('utf8');
    // We have a connection - a socket object is assigned to the connection automatically
    console.log('CONNECTED: ' + sock.remoteAddress +':'+ sock.remotePort);

    // Add a 'data' event handler to this instance of socket
    sock.on('data', function(data) {
        console.log('*');
        console.log(data.toString('ascii'))
        console.log(data.toString());
        console.log('*');
        console.log('DATA ' + sock.remoteAddress + ': ' + data);
        // Write the data back to the socket, the client will receive it as data from the server
        sock.write('You said "' + data + '"');
    });

    // Add a 'close' event handler to this instance of socket
    sock.on('close', function(data) {
        console.log('CLOSED: ' + sock.remoteAddress +' '+ sock.remotePort);
    });
}).listen(PORT, HOST);

console.log('Server listening on ' + HOST +':'+ PORT);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...