Initial commit

This commit is contained in:
2025-12-27 20:24:47 +01:00
commit 7b6f164130
5573 changed files with 727178 additions and 0 deletions

15
test/GCode.test.js Normal 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);
});