intval.status() not intval.state.
This commit is contained in:
parent
76fcc95327
commit
3e9f560db0
8
index.js
8
index.js
|
@ -289,14 +289,12 @@ function index (req, res, next) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function bleGetState () {
|
|
||||||
return intval.state
|
|
||||||
}
|
|
||||||
|
|
||||||
function init () {
|
function init () {
|
||||||
createServer()
|
createServer()
|
||||||
intval.init()
|
intval.init()
|
||||||
ble = new BLE(bleGetState)
|
ble = new BLE(() => {
|
||||||
|
return intval.status()
|
||||||
|
})
|
||||||
ble.on('data', (str) => {
|
ble.on('data', (str) => {
|
||||||
console.log(str)
|
console.log(str)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue