25 lines
No EOL
766 B
JavaScript
25 lines
No EOL
766 B
JavaScript
const MessageManager = require("../MessageManager")
|
|
const PagerDevice = require("./Device")
|
|
const Str = require('@supercharge/strings')
|
|
const config = require('../../config.json')
|
|
|
|
// Birdy Slim (IoT) Device
|
|
class EMessage2Ways extends PagerDevice {
|
|
constructor () {
|
|
super()
|
|
this.duplex = true
|
|
this.supportBOSkrypt = false
|
|
this.name = "emessage2WayS"
|
|
}
|
|
RandID() {
|
|
return `E${ Str.random(8) }`
|
|
}
|
|
async formatTX(msg) {
|
|
msg.id = this.RandID()
|
|
await MessageManager.BindMsg(msg)
|
|
//msg.payload = msg.type === 'duplex' ? `${ msg.id }${ msg.payload }` : msg.payload // only if duplex wanted we add the id
|
|
}
|
|
async tryReceive(data, connector) {
|
|
}
|
|
}
|
|
module.exports = EMessage2Ways |