Initial commit

This commit is contained in:
CChen616
2024-03-19 15:48:17 +08:00
parent 2ae601ba66
commit 1023fb5796
82 changed files with 43002 additions and 1 deletions

20
include/MakerbasePanel.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef MAKERBASE_PANEL_H
#define MAKERBASE_PANEL_H
#include <iostream>
#include "nlohmann/json.hpp"
#define AXIS_X "X"
#define AXIS_Y "Y"
#define AXIS_Z "Z"
std::string home();
std::string homexy();
std::string z_tilt();
std::string quad_gantry_level();
std::string move(std::string axis, std::string dist, int speed);
std::string get_printer_object_status();
#endif