INNER CODE UNIT · JavaScript
onQuit
ob-f/OpenBot · controller/node-js/client/index.js:23
const onQuit = () => {
connection.stop()
}
await connection.start(onData)
const onKeyPress = (key) => {
// Send keypress to server
connection.send(JSON.stringify({ KEYPRESS: key }))
}
keyboard.start(onKeyPress, onQuit)
})()