@nebulaglitch/gcode
Version:
A library to generate gcode output
16 lines (13 loc) • 392 B
JavaScript
import Command from '../command.js';
import Argument from '../argument.js';
class Question extends Command {
constructor(text = null){
super('G', 5);
this.args.push(new Argument('T', 0));
if (text !== null) {
this.args.push(new Argument('m', ' "' + text + '"'));
}
}
}
export { Question as default };
//# sourceMappingURL=question.js.map