0
我試圖使用離子原生藍牙插件從OBDII獲取數據。但是,當我調用write方法將命令發送到設備時,沒有數據返回。我使用的代碼如下:使用Ionic 3原生藍牙插件向OBDII發送命令
readData(device){
this.bluetoothSerial.write('010D').then((success) => {
alert('Connected to ' + device.name + '. Data reading is successful: ' + new Uint8Array(success));
},
(error) => {
alert('reading failed:' + error);
});
}
我的問題是:什麼是發送命令OBDII使用本機插件檢索數據的正確方法。