@nebulaglitch/shopbot
Version:
A library to generate shopbot output
19 lines (16 loc) • 620 B
JavaScript
import Command from '../command.js';
class ValComm extends Command {
constructor(commPortNum = null, obsolete2 = null, obsolete3 = null, driverChan1 = null, driverChan2 = null, driverChan3 = null, driverChan4 = null, speed = null){
super('VI');
this.args.push(commPortNum);
this.args.push(obsolete2);
this.args.push(obsolete3);
this.args.push(driverChan1);
this.args.push(driverChan2);
this.args.push(driverChan3);
this.args.push(driverChan4);
this.args.push(speed);
}
}
export { ValComm as default };
//# sourceMappingURL=valcomm.js.map