UNPKG
@nebulaglitch/gcode
Version:
latest (0.0.2)
0.0.2
0.0.1
A library to generate gcode output
github.com/CrimsonBastille/gcode
CrimsonBastille/gcode
@nebulaglitch/gcode
/
dist
/
commands
/
macrocall.js
11 lines
(8 loc)
•
209 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Command
from
'../command.js'
;
class
MacroCall
extends
Command
{
constructor
(
number
=
0
){
super
(
'M'
,
number
); } }
export
{
MacroCall
as
default
};
//# sourceMappingURL=macrocall.js.map