Got basic arduino functionality working. Can enumerate devices.

This commit is contained in:
mmcwilliams 2019-02-24 08:45:13 -05:00
parent bee40965b1
commit 48b86ebc93
1 changed files with 31 additions and 5 deletions

View File

@ -3,10 +3,15 @@
const program = require('commander') const program = require('commander')
const uuid = require('uuid') const uuid = require('uuid')
const moment = require('moment') const moment = require('moment')
const events = require('events')
const ee = new events.EventEmitter()
const cfg = require('../app/data/cfg.json')
const pkg = require('./package.json')
const delay = require('delay') const delay = require('delay')
const intval = require('intval') const intval = require('intval')
const arduino = require('arduino') const arduino = require('arduino')(cfg, ee)
const Mscript = require('mscript') const Mscript = require('mscript')
const mscript = new Mscript() const mscript = new Mscript()
@ -14,8 +19,6 @@ const dev = require('device')
let log let log
let readline let readline
const cfg = require('../app/data/cfg.json')
const pkg = require('./package.json')
async function command () { async function command () {
return new Promise ((resolve, reject) => { return new Promise ((resolve, reject) => {
@ -40,15 +43,38 @@ async function live () {
try { try {
await command() await command()
} catch (err) { } catch (err) {
log.error('Error executing command') log.error('Error executing command', err)
} }
} }
} }
function parsePattern () {
}
async function main (arg) { async function main (arg) {
log = require('log')(arg) log = require('log')(arg)
log.info('mcopy-cli') log.info('mcopy-cli')
try {
await arduino.enumerate()
} catch (err) {
log.error('Error enumerating devices')
log.error(err)
}
if (arg.pattern) {
}
if (arg.live) {
try {
await live() await live()
} catch (err) {
log.error('Error running in live control mode', err)
}
}
} }
program program