2018-01-02 06:15:29 +00:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const SerialPort = require('serialport')
|
2018-01-23 16:35:39 +00:00
|
|
|
const Readline = SerialPort.parsers.Readline
|
2018-01-02 06:15:29 +00:00
|
|
|
const exec = require('child_process').exec
|
2018-01-23 16:35:39 +00:00
|
|
|
const parser = new Readline('')
|
|
|
|
const newlineRe = new RegExp('\n', 'g')
|
2018-01-23 16:41:42 +00:00
|
|
|
const returnRe = new RegExp('\r', 'g')
|
2018-01-02 06:15:29 +00:00
|
|
|
let eventEmitter
|
|
|
|
|
|
|
|
const mcopy = {}
|
2016-04-12 03:05:05 +00:00
|
|
|
|
2019-02-22 21:31:53 +00:00
|
|
|
/**
|
|
|
|
* Pause the process for X milliseconds in async/await functions
|
|
|
|
*
|
|
|
|
* @param {integer} ms milliseconds
|
|
|
|
*
|
|
|
|
* @returns {Promise} Resolves after wait
|
|
|
|
**/
|
2018-03-03 03:42:15 +00:00
|
|
|
async function delay (ms) {
|
|
|
|
return new Promise(resolve => {
|
|
|
|
return setTimeout(resolve, ms)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-02-22 21:31:53 +00:00
|
|
|
/**
|
|
|
|
* Send a command to an Arduino using async/await
|
|
|
|
*
|
|
|
|
* @param {string} device Arduino identifier
|
|
|
|
* @param {string} cmd Single character command to send
|
|
|
|
*
|
|
|
|
* @returns {Promise} Resolves after sending
|
|
|
|
**/
|
2018-03-03 03:42:15 +00:00
|
|
|
async function send (device, cmd) {
|
|
|
|
return new Promise ((resolve, reject) => {
|
2018-03-03 05:27:49 +00:00
|
|
|
mcopy.arduino.queue[cmd] = (ms) => {
|
|
|
|
return resolve(ms)
|
|
|
|
}
|
|
|
|
return mcopy.arduino.serial[device].write(cmd, (err, results) => {
|
2018-03-03 03:42:15 +00:00
|
|
|
if (err) {
|
|
|
|
//console.error(err)
|
|
|
|
return reject(err)
|
|
|
|
}
|
2018-03-03 05:27:49 +00:00
|
|
|
//
|
2018-03-03 03:42:15 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-02-22 21:31:53 +00:00
|
|
|
/**
|
|
|
|
* Send a string to an Arduino using async/await
|
|
|
|
*
|
|
|
|
* @param {string} device Arduino identifier
|
|
|
|
* @param {string} str String to send
|
|
|
|
*
|
|
|
|
* @returns {Promise} Resolves after sending
|
|
|
|
**/
|
2018-03-03 03:42:15 +00:00
|
|
|
async function write (device, str) {
|
|
|
|
return new Promise ((resolve, reject) => {
|
|
|
|
mcopy.arduino.serial[device].write(str, function (err, results) {
|
|
|
|
if (err) {
|
|
|
|
return reject(err)
|
|
|
|
}
|
|
|
|
//console.log('sent: ' + str)
|
|
|
|
return resolve(results)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-02-22 21:31:53 +00:00
|
|
|
/**
|
|
|
|
* Connect to an Arduino using async/await
|
|
|
|
*
|
|
|
|
* @param {string} device Arduino identifier
|
|
|
|
*
|
|
|
|
* @returns {Promise} Resolves after opening
|
|
|
|
**/
|
2018-03-03 03:42:15 +00:00
|
|
|
async function open (device) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
return mcopy.arduino.serial[device].open(error => {
|
|
|
|
if (error) {
|
|
|
|
return reject(error)
|
|
|
|
}
|
|
|
|
return resolve(true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-02-22 21:31:53 +00:00
|
|
|
/**
|
|
|
|
* Close a connection to an Arduino using async/await
|
|
|
|
*
|
|
|
|
* @param {string} device Arduino identifier
|
|
|
|
*
|
|
|
|
* @returns {Promise} Resolves after closing
|
|
|
|
**/
|
2018-03-03 03:42:15 +00:00
|
|
|
async function close (device) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
return mcopy.arduino.serial[device].close((err) => {
|
|
|
|
if (err) {
|
|
|
|
return reject(err)
|
|
|
|
}
|
|
|
|
return resolve(true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-04-12 03:05:05 +00:00
|
|
|
/******
|
|
|
|
Arduino handlers
|
|
|
|
*******/
|
|
|
|
mcopy.arduino = {
|
2016-04-19 01:26:45 +00:00
|
|
|
path : {},
|
2016-04-12 03:05:05 +00:00
|
|
|
known: [
|
|
|
|
'/dev/tty.usbmodem1a161',
|
|
|
|
'/dev/tty.usbserial-A800f8dk',
|
|
|
|
'/dev/tty.usbserial-A900cebm',
|
|
|
|
'/dev/tty.usbmodem1a131',
|
|
|
|
'/dev/tty.usbserial-a900f6de',
|
2018-01-02 06:15:29 +00:00
|
|
|
'/dev/tty.usbmodem1a141',
|
2018-01-30 09:07:52 +00:00
|
|
|
'/dev/ttyACM0',
|
|
|
|
'COM3'
|
2016-04-12 03:05:05 +00:00
|
|
|
],
|
2018-01-02 06:15:29 +00:00
|
|
|
alias : {
|
|
|
|
|
|
|
|
},
|
2016-04-19 01:26:45 +00:00
|
|
|
serial : {
|
|
|
|
connect : {},
|
|
|
|
projector : {},
|
2018-01-02 06:15:29 +00:00
|
|
|
camera : {},
|
|
|
|
light : {}
|
2016-04-19 01:26:45 +00:00
|
|
|
},
|
2016-04-12 03:05:05 +00:00
|
|
|
baud : 57600,
|
|
|
|
queue : {},
|
|
|
|
timer : 0,
|
|
|
|
lock : false
|
2018-01-02 06:15:29 +00:00
|
|
|
}
|
|
|
|
|
2018-03-03 03:42:15 +00:00
|
|
|
mcopy.arduino.enumerate = async function () {
|
|
|
|
return new Promise( (resolve, reject) => {
|
|
|
|
return SerialPort.list((err, ports) => {
|
|
|
|
let matches = []
|
|
|
|
if (err) {
|
|
|
|
return reject(err)
|
|
|
|
}
|
|
|
|
ports.forEach(port => {
|
|
|
|
if (mcopy.arduino.known.indexOf(port.comName) !== -1) {
|
|
|
|
matches.push(port.comName)
|
|
|
|
} else if ((port.manufacturer + '').toLowerCase().indexOf('arduino') !== -1) {
|
|
|
|
matches.push(port.comName)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if (matches.length === 0) {
|
|
|
|
return reject('No USB devices found');
|
|
|
|
} else if (matches.length > 0) {
|
|
|
|
return resolve(matches)
|
2016-04-12 03:05:05 +00:00
|
|
|
}
|
2018-01-02 06:15:29 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-04-12 03:05:05 +00:00
|
|
|
//commands which respond to a sent char
|
2018-03-03 03:42:15 +00:00
|
|
|
mcopy.arduino.send = async function (serial, cmd, res) {
|
2018-01-02 06:15:29 +00:00
|
|
|
const device = mcopy.arduino.alias[serial]
|
2018-03-03 03:42:15 +00:00
|
|
|
let results
|
|
|
|
if (mcopy.arduino.lock) {
|
|
|
|
return false
|
2016-04-12 03:05:05 +00:00
|
|
|
}
|
2018-03-03 03:42:15 +00:00
|
|
|
mcopy.arduino.lock = true
|
|
|
|
await delay(mcopy.cfg.arduino.serialDelay)
|
|
|
|
try {
|
|
|
|
results = await send(device, cmd)
|
|
|
|
} catch (e) {
|
|
|
|
return console.error(e)
|
|
|
|
}
|
|
|
|
mcopy.arduino.lock = false
|
|
|
|
mcopy.arduino.timer = new Date().getTime()
|
|
|
|
return await eventEmitter.emit('arduino_send', cmd)
|
|
|
|
}
|
|
|
|
|
2016-04-12 03:05:05 +00:00
|
|
|
//send strings, after char triggers firmware to accept
|
2018-03-03 03:42:15 +00:00
|
|
|
mcopy.arduino.string = async function (serial, str) {
|
2018-01-02 06:15:29 +00:00
|
|
|
const device = mcopy.arduino.alias[serial]
|
2018-03-03 03:42:15 +00:00
|
|
|
let writeSuccess
|
|
|
|
await delay(mcopy.cfg.arduino.serialDelay)
|
|
|
|
if (typeof mcopy.arduino.serial[device].fake !== 'undefined'
|
|
|
|
&& mcopy.arduino.serial[device].fake) {
|
|
|
|
return mcopy.arduino.serial[device].string(str)
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
writeSuccess = await write(device, str)
|
|
|
|
} catch (e) {
|
|
|
|
return console.error(e)
|
2016-04-19 01:26:45 +00:00
|
|
|
}
|
2018-03-03 03:42:15 +00:00
|
|
|
return writeSuccess
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-19 01:26:45 +00:00
|
|
|
//respond with same char over serial when done
|
2018-03-03 05:27:49 +00:00
|
|
|
mcopy.arduino.end = async function (data) {
|
|
|
|
const end = new Date().getTime()
|
|
|
|
const ms = end - mcopy.arduino.timer
|
|
|
|
let complete
|
2016-04-12 03:05:05 +00:00
|
|
|
if (mcopy.arduino.queue[data] !== undefined) {
|
|
|
|
mcopy.arduino.lock = false;
|
2016-04-19 01:52:38 +00:00
|
|
|
//console.log('Command ' + data + ' took ' + ms + 'ms');
|
2018-03-03 05:27:49 +00:00
|
|
|
complete = mcopy.arduino.queue[data](ms) //execute callback
|
2018-03-03 03:42:15 +00:00
|
|
|
eventEmitter.emit('arduino_end', data)
|
|
|
|
delete mcopy.arduino.queue[data]
|
2016-04-12 03:05:05 +00:00
|
|
|
} else {
|
2018-03-03 03:42:15 +00:00
|
|
|
//console.log('Received stray "' + data + '"'); //silent to user
|
2016-04-12 03:05:05 +00:00
|
|
|
}
|
2018-03-03 05:27:49 +00:00
|
|
|
return complete
|
2016-04-12 03:05:05 +00:00
|
|
|
};
|
2018-01-02 06:15:29 +00:00
|
|
|
mcopy.arduino.alias = function (serial, device) {
|
|
|
|
console.log(`Making "${serial}" an alias of ${device}`)
|
|
|
|
mcopy.arduino.alias[serial] = device
|
|
|
|
}
|
2018-03-03 03:42:15 +00:00
|
|
|
mcopy.arduino.connect = async function (serial, device, confirm) {
|
|
|
|
return new Promise(async (resolve, reject) => {
|
|
|
|
let connectSuccess
|
|
|
|
mcopy.arduino.path[serial] = device;
|
|
|
|
mcopy.arduino.alias[serial] = device;
|
|
|
|
mcopy.arduino.serial[device] = new SerialPort(mcopy.arduino.path[serial], {
|
|
|
|
autoOpen : false,
|
|
|
|
baudRate: mcopy.cfg.arduino.baud,
|
|
|
|
parser: parser
|
|
|
|
})
|
|
|
|
try {
|
|
|
|
connectSuccess = await open(device)
|
|
|
|
} catch (e) {
|
|
|
|
console.error('failed to open: ' + e)
|
|
|
|
return reject(e)
|
|
|
|
}
|
|
|
|
console.log(`Opened connection with ${mcopy.arduino.path[serial]} as ${serial}`);
|
|
|
|
if (!confirm) {
|
2018-03-03 05:27:49 +00:00
|
|
|
mcopy.arduino.serial[device].on('data', async (data) => {
|
2018-03-03 03:42:15 +00:00
|
|
|
let d = data.toString('utf8')
|
|
|
|
d = d.replace(newlineRe, '').replace(returnRe, '')
|
2018-03-03 05:27:49 +00:00
|
|
|
return await mcopy.arduino.end(d)
|
2018-03-03 03:42:15 +00:00
|
|
|
})
|
2016-04-12 03:05:05 +00:00
|
|
|
} else {
|
2018-03-03 05:27:49 +00:00
|
|
|
mcopy.arduino.serial[device].on('data', async (data) => {
|
2018-03-03 03:42:15 +00:00
|
|
|
let d = data.toString('utf8')
|
|
|
|
d = d.replace(newlineRe, '').replace(returnRe, '')
|
2018-03-03 05:27:49 +00:00
|
|
|
return await mcopy.arduino.confirmEnd(d)
|
2018-03-03 03:42:15 +00:00
|
|
|
})
|
2016-04-12 03:05:05 +00:00
|
|
|
}
|
2018-03-03 03:42:15 +00:00
|
|
|
return resolve(mcopy.arduino.path[serial])
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
2016-04-12 03:05:05 +00:00
|
|
|
|
2016-04-19 01:26:45 +00:00
|
|
|
mcopy.arduino.confirmExec = {};
|
|
|
|
mcopy.arduino.confirmEnd = function (data) {
|
2018-01-23 16:41:42 +00:00
|
|
|
//console.dir(data)
|
2016-04-19 01:26:45 +00:00
|
|
|
if (data === mcopy.cfg.arduino.cmd.connect
|
|
|
|
|| data === mcopy.cfg.arduino.cmd.proj_identifier
|
2018-01-02 06:15:29 +00:00
|
|
|
|| data === mcopy.cfg.arduino.cmd.cam_identifier
|
|
|
|
|| data === mcopy.cfg.arduino.cmd.light_identifier
|
|
|
|
|| data === mcopy.cfg.arduino.cmd.proj_light_identifier
|
|
|
|
|| data === mcopy.cfg.arduino.cmd.proj_cam_light_identifier
|
|
|
|
|| data === mcopy.cfg.arduino.cmd.proj_cam_identifier ) {
|
2016-04-19 01:26:45 +00:00
|
|
|
mcopy.arduino.confirmExec(null, data);
|
|
|
|
mcopy.arduino.confirmExec = {};
|
|
|
|
}
|
2018-03-03 03:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mcopy.arduino.verify = async function () {
|
|
|
|
return new Promise(async (resolve, reject) => {
|
|
|
|
const device = mcopy.arduino.alias['connect']
|
|
|
|
let writeSuccess
|
|
|
|
mcopy.arduino.confirmExec = function (err, data) {
|
|
|
|
if (data === mcopy.cfg.arduino.cmd.connect) {
|
|
|
|
return resolve(true)
|
|
|
|
} else {
|
|
|
|
return reject('Wrong data returned')
|
2016-04-19 01:26:45 +00:00
|
|
|
}
|
2018-03-03 03:42:15 +00:00
|
|
|
}
|
|
|
|
await delay(mcopy.cfg.arduino.serialDelay)
|
|
|
|
try {
|
|
|
|
writeSuccess = await send(device, mcopy.cfg.arduino.cmd.connect)
|
|
|
|
} catch (e) {
|
|
|
|
return reject(e)
|
|
|
|
}
|
|
|
|
return resolve(writeSuccess)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-03-03 05:27:49 +00:00
|
|
|
mcopy.arduino.distinguish = async function () {
|
|
|
|
return new Promise(async (resolve, reject) => {
|
|
|
|
const device = mcopy.arduino.alias['connect']
|
|
|
|
let writeSuccess
|
|
|
|
let type
|
|
|
|
mcopy.arduino.confirmExec = function (err, data) {
|
|
|
|
if (data === mcopy.cfg.arduino.cmd.proj_identifier) {
|
|
|
|
type = 'projector'
|
|
|
|
} else if (data === mcopy.cfg.arduino.cmd.cam_identifier) {
|
|
|
|
type = 'camera'
|
|
|
|
} else if (data === mcopy.cfg.arduino.cmd.light_identifier) {
|
|
|
|
type = 'light'
|
|
|
|
} else if (data === mcopy.cfg.arduino.cmd.proj_light_identifier) {
|
|
|
|
type = 'projector,light'
|
|
|
|
} else if (data === mcopy.cfg.arduino.cmd.proj_cam_light_identifier) {
|
|
|
|
type = 'projector,camera,light'
|
|
|
|
} else if (data === mcopy.cfg.arduino.cmd.proj_cam_identifier) {
|
|
|
|
type = 'projector,camera'
|
2019-02-25 23:14:19 +00:00
|
|
|
} else if (data === mcopy.cfg.ardino.cmd.proj_second_identifier) {
|
|
|
|
type = 'projector_second'
|
2018-03-03 05:27:49 +00:00
|
|
|
}
|
|
|
|
return resolve(type)
|
2016-04-19 01:26:45 +00:00
|
|
|
}
|
2018-03-03 05:27:49 +00:00
|
|
|
await delay(mcopy.cfg.arduino.serialDelay)
|
|
|
|
try {
|
|
|
|
writeSuccess = await send(device, mcopy.cfg.arduino.cmd.mcopy_identifier)
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e)
|
|
|
|
return reject(e)
|
|
|
|
}
|
|
|
|
})
|
2018-01-02 06:15:29 +00:00
|
|
|
}
|
2016-04-19 01:26:45 +00:00
|
|
|
|
2018-03-03 03:42:15 +00:00
|
|
|
mcopy.arduino.close = async function (callback) {
|
|
|
|
const device = mcopy.arduino.alias['connect']
|
|
|
|
let closeSuccess
|
|
|
|
try {
|
|
|
|
closeSuccess = await close(device)
|
|
|
|
} catch (e) {
|
|
|
|
return console.error(e)
|
|
|
|
}
|
|
|
|
return closeSuccess
|
2016-04-19 01:26:45 +00:00
|
|
|
};
|
|
|
|
|
2018-03-03 03:42:15 +00:00
|
|
|
mcopy.arduino.fakeConnect = async function (serial) {
|
2016-04-19 01:52:38 +00:00
|
|
|
//console.log('Connecting to fake arduino...');
|
2018-01-02 06:15:29 +00:00
|
|
|
const device = '/dev/fake'
|
|
|
|
mcopy.arduino.alias[serial] = device
|
|
|
|
mcopy.arduino.serial[device] = {
|
2018-03-03 05:27:49 +00:00
|
|
|
write : function (cmd, cb) {
|
|
|
|
const t = {
|
|
|
|
c : mcopy.cfg.arduino.cam.time + mcopy.cfg.arduino.cam.delay,
|
|
|
|
p : mcopy.cfg.arduino.proj.time + mcopy.cfg.arduino.proj.delay
|
|
|
|
}
|
|
|
|
let timeout = t[cmd]
|
|
|
|
let end
|
|
|
|
if (typeof timeout === 'undefined') timeout = 10
|
|
|
|
mcopy.arduino.timer = +new Date()
|
2018-03-05 03:35:21 +00:00
|
|
|
setTimeout(() => {
|
2018-03-03 05:27:49 +00:00
|
|
|
mcopy.arduino.end(cmd)
|
|
|
|
return cb()
|
|
|
|
}, timeout)
|
2018-03-05 03:35:21 +00:00
|
|
|
|
2016-04-14 04:17:42 +00:00
|
|
|
},
|
2018-03-03 03:42:15 +00:00
|
|
|
string : async function (str) {
|
2016-04-14 04:17:42 +00:00
|
|
|
//do nothing
|
2018-01-02 06:15:29 +00:00
|
|
|
return true
|
2016-04-19 01:26:45 +00:00
|
|
|
},
|
|
|
|
fake : true
|
2016-04-14 04:17:42 +00:00
|
|
|
};
|
2016-04-19 01:52:38 +00:00
|
|
|
//console.log('Connected to fake arduino! Not real! Doesn\'t exist!');
|
2018-03-03 03:42:15 +00:00
|
|
|
return true
|
2018-01-02 06:15:29 +00:00
|
|
|
}
|
2016-04-14 04:17:42 +00:00
|
|
|
|
2016-04-12 06:19:35 +00:00
|
|
|
if (typeof module !== 'undefined' && module.parent) {
|
2016-06-21 16:12:14 +00:00
|
|
|
module.exports = function (cfg, ee) {
|
2018-01-02 06:15:29 +00:00
|
|
|
eventEmitter = ee
|
|
|
|
mcopy.cfg = cfg
|
|
|
|
return mcopy.arduino
|
2016-04-12 03:05:05 +00:00
|
|
|
}
|
|
|
|
}
|