2018-02-08 09:19:46 -08:00
|
|
|
// import Base from '@uci/base'
|
|
|
|
import Base from '../../uci-base/src/base'
|
2018-02-10 15:28:51 -08:00
|
|
|
import { pin, chip } from './commands'
|
2018-02-08 09:19:46 -08:00
|
|
|
|
|
|
|
import logger from '../../uci-logger/src/logger'
|
|
|
|
let log = {}
|
|
|
|
const LOG_OPTS = {
|
|
|
|
repo:'uci-mcp',
|
|
|
|
npm:'@uci/mcp',
|
|
|
|
file:'src/mcp230xx-packet.mjs',
|
|
|
|
class:'MCP230XX',
|
|
|
|
id:this.id,
|
|
|
|
instance_created:new Date().getTime()
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class MCP230XX extends Base {
|
|
|
|
constructor(opts) {
|
|
|
|
log = logger.child(LOG_OPTS)
|
|
|
|
if (opts.bus) {
|
|
|
|
if (opts.bus.host) {
|
|
|
|
opts.bus.socket = 'bus#c>t'
|
|
|
|
opts.bus.port = opts.bus.port || 1776
|
|
|
|
}
|
|
|
|
if (opts.bus.path) opts.bus.socket = 'bus#c>n'
|
|
|
|
} else {
|
|
|
|
opts.bus = { path : (process.env.SOCKETS_DIR || __dirname) + '/i2c-bus.sock' }
|
|
|
|
opts.bus.socket = 'bus#c>n'
|
|
|
|
}
|
|
|
|
opts.nmcp = opts.nmcp || {path: (process.env.SOCKETS_DIR || __dirname) + '/mcp.sock'}
|
|
|
|
opts.sockets = 'nmcp#s>n,tmcp#s>t,'+ opts.bus.socket
|
|
|
|
console.log(opts)
|
|
|
|
super(opts)
|
|
|
|
if (!opts.address) log.fatal({opts:opts},'no i2c bus address supplied' )
|
|
|
|
this.address = opts.address
|
2018-02-13 18:18:03 -08:00
|
|
|
this.chip17 = opts.chip17
|
2018-02-08 09:19:46 -08:00
|
|
|
this.pin = pin
|
2018-02-10 15:28:51 -08:00
|
|
|
this.chip = chip
|
2018-02-13 18:18:03 -08:00
|
|
|
// this.busSend = this.busSend.bind(this)
|
2018-02-08 09:19:46 -08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
async init(){
|
|
|
|
await super.init()
|
2018-02-11 19:56:44 -08:00
|
|
|
let res = await this.chip.ack.bind(this)() // move this to device class
|
|
|
|
if (!res.ack) throw `no device on this bus at address ${this.address}=0x${this.address.toString(16)}`
|
|
|
|
res = await this.chip.cfg.bind(this)({})
|
2018-02-13 18:18:03 -08:00
|
|
|
let cfg = this.chip17 ?'10100010':'00100010'
|
|
|
|
if (res.response !==cfg ) throw `could not configure mcp chip at ${this.address}=0x${this.address.toString(16)}`
|
2018-02-08 09:19:46 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-10 15:28:51 -08:00
|
|
|
// this services the reply from the bus
|
|
|
|
reply (bus_packet) {
|
|
|
|
this.emit(bus_packet.id, bus_packet)
|
|
|
|
}
|
|
|
|
|
2018-02-08 09:19:46 -08:00
|
|
|
} // end of MCP230XX Class
|