uci-i2c-device/src/device.js

50 lines
1.6 KiB
JavaScript

import Base from '@uci/base'
import commands from './bus-device-commands'
import logger from '@uci-utils/logger'
let log = {}
class I2CDevice extends Base {
constructor(opts) {
opts.bus = opts.bus || {}
if (opts.bus.host || opts.host) {
(opts.bus.host = opts.host || opts.bus.host),
(opts.bus.port = opts.bus.port || opts.port || 1776)
opts.sockets = (opts.sockets ? opts.sockets + ',' : '') + 'bus#c>t'
} else {
opts.bus.path = opts.bus.path || opts.path || 'i2c-bus'
opts.sockets = (opts.sockets ? opts.sockets + ',' : '') + 'bus#c>n'
}
super(opts)
log = logger({
file: 'src/device-packet.js',
class: 'Device',
name: 'i2c-device',
id: this.id
})
if (!opts.address) log.fatal({ opts: opts, method:'constructor', line:26, msg:'no i2c bus address supplied'})
this.address = +opts.address // make sure any passed number is number not a string
this.channel = +opts.channel // if using TAC9546A channel number on which device is attached
this.bus = this.bindFuncs(commands)
}
async init() {
await super.init()
let res = await this.bus.ack()
let socket = this.getSocket('bus').opts
let connection = socket.path || socket.host + ':' + socket.port
if (!res.ack) {
let err ={error:'ack', res:res, socket:socket, method:'init', line:38, connection:connection, address:this.address, msg:`no bus or device on bus at address ${this.address}=0x${this.address.toString(16)}`}
log.error(err)
return err
}
return res
}
// TODO enable mux board channel set
async _setChannel() {
}
} // end of i2c Device Class
export default I2CDevice