Import work from mcopyJK

This commit is contained in:
Matt 2016-04-11 10:49:57 -04:00
parent 5ca261f15d
commit d902c26a70
5 changed files with 187 additions and 38 deletions

35
app/cfg.json Normal file
View File

@ -0,0 +1,35 @@
{
"version" : "0.0.7",
"ext_port" : 1111,
"arduino" : {
"baud" : 57600,
"board" : "uno",
"serialDelay" : 20,
"sequenceDelay" : 100,
"cam" : {
"time" : 750,
"delay" : 50,
"momentary" : 300
},
"proj" : {
"time" : 1300,
"delay" : 50,
"momentary" : 300
},
"black" : {
"before" : 250,
"after" : 250
},
"cmd" : {
"debug" : "d",
"connect": "i",
"camera" : "c",
"projector" : "p",
"black" : "b",
"cam_forward" : "e",
"cam_backward" : "f",
"proj_forward" : "g",
"proj_backward" : "h"
}
}
}

View File

@ -9,5 +9,7 @@
We are using node <script>document.write(process.versions.node)</script>, We are using node <script>document.write(process.versions.node)</script>,
Chromium <script>document.write(process.versions.chrome)</script>, Chromium <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>. and Electron <script>document.write(process.versions.electron)</script>.
<script src="./js/index.js"></script>
</body> </body>
</html> </html>

10
app/js/index.js Normal file
View File

@ -0,0 +1,10 @@
var ipcRenderer = require('electron').ipcRenderer,
light = {};
//console.log(ipcRenderer.sendSync('light', { 'fuck' : true }) );
light.set = function (color) {
'use strict';
console.log('color: ' + color.join(','));
ipcRenderer.sendSync('light', color);
};

View File

@ -1,51 +1,152 @@
'use strict'; 'use strict';
const electron = require('electron'),
fs = require('fs'),
Menu = require('menu'),
ipcMain = require('electron').ipcMain,
app = electron.app,
BrowserWindow = electron.BrowserWindow,
uuid = require('node-uuid'),
serialport = require('serialport'),
SerialPort = serialport.SerialPort,
mcopy = {};
const electron = require('electron');
// Module to control application life.
const app = electron.app;
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow;
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow; let mainWindow;
function createWindow () { var init = function () {
// Create the browser window. mcopy.cfg = JSON.parse(fs.readFileSync('./cfg.json', 'utf8'));
createWindow();
};
var createMenu = function () {
};
var createWindow = function () {
mainWindow = new BrowserWindow({width: 800, height: 600}); mainWindow = new BrowserWindow({width: 800, height: 600});
// and load the index.html of the app.
mainWindow.loadURL('file://' + __dirname + '/index.html'); mainWindow.loadURL('file://' + __dirname + '/index.html');
// Open the DevTools.
mainWindow.webContents.openDevTools(); mainWindow.webContents.openDevTools();
// Emitted when the window is closed.
mainWindow.on('closed', function() { mainWindow.on('closed', function() {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null; mainWindow = null;
}); });
} }
// This method will be called when Electron has finished app.on('ready', init);
// initialization and is ready to create browser windows.
app.on('ready', createWindow);
// Quit when all windows are closed.
app.on('window-all-closed', function () { app.on('window-all-closed', function () {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') { if (process.platform !== 'darwin') {
app.quit(); app.quit();
} }
}); });
app.on('activate', function () { app.on('activate', function () {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) { if (mainWindow === null) {
createWindow(); createWindow();
} }
}); });
ipcMain.on('light', function(event, arg) {
//
event.returnValue = true;
});
/******
Arduino handlers
*******/
mcopy.arduino = {
path : '',
known: [
'/dev/tty.usbmodem1a161',
'/dev/tty.usbserial-A800f8dk',
'/dev/tty.usbserial-A900cebm',
'/dev/tty.usbmodem1a131',
'/dev/tty.usbserial-a900f6de',
'/dev/tty.usbmodem1a141'
],
serial : {},
baud : 57600,
queue : {},
timer : 0,
lock : false
};
mcopy.arduino.init = function (callback) {
mcopy.log('Searching for devices...');
var cmd = 'ls /dev/tty.*';
exec(cmd, function (e, std) {
var devices = std.split('\n'),
matches = [];
devices.pop();
for (var i = 0; i < devices.length; i++) {
if (devices[i].indexOf('usbserial') !== -1
||devices[i].indexOf('usbmodem') !== -1){
matches.push(devices[i]);
}
}
if (matches.length === 0) {
mcopy.log('No devices found.');
mcopy.gui.spinner(false);
mcopy.gui.overlay(true);
if (callback) { callback(false); }
} else if (matches.length > 0) {
mcopy.log('Found ' + matches[0]);
mcopy.arduino.path = matches[0];
//once connected to the arduino
//start user interface
if (callback) { callback(true); }
}
});
};
//commands which respond to a sent char
mcopy.arduino.send = function (cmd, res) {
if (!mcopy.arduino.lock) {
mcopy.arduino.lock = true;
mcopy.arduino.queue[cmd] = res;
setTimeout(function () {
mcopy.arduino.serial.write(cmd, function (err, results) {
if (err) { mcopy.log(err, 0); }
mcopy.arduino.lock = false;
mcopy.arduino.timer = new Date().getTime();
});
}, mcopy.cfg.arduino.serialDelay);
}
};
//with same over serial when done
mcopy.arduino.end = function (data) {
var end = new Date().getTime(),
ms = end - mcopy.arduino.timer;
if (mcopy.arduino.queue[data] !== undefined) {
mcopy.arduino.lock = false;
mcopy.log('Command ' + data + ' took ' + ms + 'ms');
mcopy.arduino.queue[data](ms);
mcopy.arduino.queue = {};
} else {
//console.log('Received stray "' + data + '" from ' + mcopy.arduino.path); //silent to user
}
};
mcopy.arduino.connect = function (callback) {
mcopy.log('Connecting to ' + mcopy.arduino.path + '...');
mcopy.state.arduino = mcopy.arduino.path;
mcopy.arduino.serial = new SerialPort(mcopy.arduino.path, {
baudrate: mcopy.cfg.arduino.baud,
parser: sp.parsers.readline("\n")
});
mcopy.arduino.serial.open(function (error) {
if ( error ) {
return mcopy.log('failed to open: '+ error, 0);
} else {
mcopy.log('Opened connection with ' + mcopy.arduino.path);
mcopy.arduino.serial.on('data', function (data) {
data = data.replace('\r', '');
mcopy.arduino.end(data);
});
setTimeout(function () {
mcopy.log('Verifying firmware...');
mcopy.arduino.send(mcopy.cfg.arduino.cmd.connect, function () {
mcopy.log('Firmware verified');
mcopy.log('Optical printer ready!');
if (callback) { callback(); }
});
}, 2000);
}
});
};

View File

@ -29,6 +29,7 @@
}, },
"dependencies": { "dependencies": {
"node-notifier": "^4.5.0", "node-notifier": "^4.5.0",
"node-uuid": "^1.4.7" "node-uuid": "^1.4.7",
"serialport": "^2.1.0"
} }
} }