Select Git revision

Jake Read authored
dummies.js 804 B
var gcodeDummy = {
name: 'gcode',
id: 12,
state: {
mode: 'G0',
flavor: 'sensible',
speeds: {
G0: 1200,
G1: 400
}
},
inputs: {
lineIn: {
type: 'string',
description: 'single line to parse'
}
},
outputs: {
instruction: {
type: 'object',
class: 'MoveInstruction',
description: 'parsed move instruction'
}
}
}
var terminalDummy = {
name: 'terminal',
id: 13,
state: {
width: 64,
height: 48
},
inputs: {
lineIn: {
type: 'object'
}
},
outputs: {
lineOut: {
type: 'string',
description: 'line from terminal'
}
}
}