我嘗試接收celestron nexstar goto系統的goto固件版本。Serialport nodejs奇怪的字符
我使用串口庫收到一些數據,但收到一些奇怪的字符,白蟻是唯一顯示好字符的軟件。
下面是我收到的數據和白蟻顯示的數據的示例。從的node.js
的SerialPort:♦§#
白蟻:[04] [15]#
下面是連接到安裝件,並顯示所接收的數據的代碼:
var telescope = new serial(port.comName, {
baudRate: 9600,
stopBits: 1,
parity: 'none'
});
telescope.on('open', function() {
telescope.on('data', function (data) {
console.log('Data : ' + data);
});
telescope.write('V');
});
有沒有什麼方法可以顯示好的數據?我搜索,我認爲這是一個編碼問題
感謝您的幫助!
如何將'\ x5b \ x30 \ x34 \ x5d \ x5b \ x31 \ x35 \ x5d \ x23' **轉換爲**'§#'? – dsgdfg