Initial commit

This commit is contained in:
ChK
2026-02-01 13:25:03 +01:00
commit b20d92535b
39 changed files with 6260 additions and 0 deletions

15
test/GCode.test.js Executable file
View File

@@ -0,0 +1,15 @@
const GCode = require('../robot/GCode.js');
test('G91 ist ein GCode Command', () => {
var x = GCode.containsCommand("G91") ;
expect(x).toBe(true);
});
test('G28 ist ein GCode Command', () => {
var x = GCode.containsCommand("G28") ;
expect(x).toBe(true);
});