Commit f1c7a17c authored by 曾思程's avatar 曾思程

设备配置bluetoothTone改为true开启蓝牙提示音

parent eec67a6e
...@@ -810,7 +810,7 @@ Jensen.prototype.setBluetoothPromptPlay = function (enable, seconds) { ...@@ -810,7 +810,7 @@ Jensen.prototype.setBluetoothPromptPlay = function (enable, seconds) {
// h1 5.1.4 327940 // h1 5.1.4 327940
if (this.model === 'hidock-h1e' && this.versionNumber < 393476) return { result: false } if (this.model === 'hidock-h1e' && this.versionNumber < 393476) return { result: false }
if (this.model === 'hidock-h1' && this.versionNumber < 327940) return { result: false } if (this.model === 'hidock-h1' && this.versionNumber < 327940) return { result: false }
return this.send(new Command(SET_SETTINGS).body([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, enable ? 1 : 2]), seconds); return this.send(new Command(SET_SETTINGS).body([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, enable ? 2 : 1]), seconds);
} }
Jensen.prototype.getCardInfo = function (seconds) { Jensen.prototype.getCardInfo = function (seconds) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment