|
@@ -958,6 +958,7 @@ function sendOTACommand(macid, callback = () => {}, fail = () => {}) {
|
|
|
if (data) {
|
|
|
|
|
|
data.then(result => {
|
|
|
+ console.log(result[0],'result');
|
|
|
writeData(device, deviceId, [result[0]], callback, fail);
|
|
|
// const testData=result.slice(0,3)
|
|
|
// const testData=result
|
|
@@ -998,6 +999,12 @@ function executeDeviceCommand(macid, commandName, callback = () => {}, fail = ()
|
|
|
function turnOnCar(macid, callback = () => {}, fail = () => {}) {
|
|
|
return executeDeviceCommand(macid, 'turnOnCar', callback, fail);
|
|
|
}
|
|
|
+function turnOffCar(macid, callback = () => {}, fail = () => {}) {
|
|
|
+ return executeDeviceCommand(macid, 'turnOffCar', callback, fail);
|
|
|
+}
|
|
|
+function findCarCmd(macid, callback = () => {}, fail = () => {}) {
|
|
|
+ return executeDeviceCommand(macid, 'findCarCmd', callback, fail);
|
|
|
+}
|
|
|
|
|
|
module.exports = {
|
|
|
initBluetooth: initBluetooth,
|
|
@@ -1049,6 +1056,8 @@ module.exports = {
|
|
|
// 执行设备命令
|
|
|
executeDeviceCommand,
|
|
|
turnOnCar,
|
|
|
+ turnOffCar,
|
|
|
+ findCarCmd,
|
|
|
|
|
|
|
|
|
};
|