File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -71,8 +71,7 @@ class Controller {
71
71
settings = { } ;
72
72
state = { } ;
73
73
workflow = {
74
- state : 'idle' , // running|paused|idle
75
- context : { }
74
+ state : 'idle' // running|paused|idle
76
75
} ;
77
76
78
77
// @param {object } io The socket.io-client module.
@@ -120,7 +119,6 @@ class Controller {
120
119
}
121
120
if ( eventName === 'workflow:state' ) {
122
121
this . workflow . state = args [ 0 ] ;
123
- this . workflow . context = { ...args [ 1 ] } ;
124
122
}
125
123
if ( eventName === 'controller:settings' ) {
126
124
this . type = args [ 0 ] ;
@@ -227,6 +225,11 @@ class Controller {
227
225
// controller.command('gcode:pause')
228
226
// - Resume
229
227
// controller.command('gcode:resume')
228
+ // - Feeder
229
+ // controller.command('feeder:feed')
230
+ // controller.command('feeder:start')
231
+ // controller.command('feeder:stop')
232
+ // controller.command('feeder:clear')
230
233
// - Feed Hold
231
234
// controller.command('feedhold')
232
235
// - Cycle Start
You can’t perform that action at this time.
0 commit comments