Files
2023-08-01 14:21:39 +02:00

8 lines
360 B
JavaScript

!(async function main () {
const coordinator = new NetworkConnection({ port: 9000, host: '192.168.178.95' })
await coordinator.connect()
const [message, crc, fullMessage] = await coordinator.sendCommand(Buffer.from('fd00030001009e03', 'hex'))
console.log([message, crc, fullMessage])
coordinator.__emitter.on('event', console.log.bind(console))
}())