@nebulaglitch/gcode
Version:
A library to generate gcode output
15 lines (10 loc) • 332 B
JavaScript
;
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
const command = require('../command.cjs');
class Dwell extends command.default {
constructor(time = 3){
super('G4X', time);
}
}
exports.default = Dwell;
//# sourceMappingURL=dwell.cjs.map