Mesh Editor for FTDI Eve Touch UI (#21381)

This commit is contained in:
Marcio T
2021-03-22 23:51:03 -06:00
committed by GitHub
parent 26db51fa9d
commit 3e7d830f57
9 changed files with 205 additions and 42 deletions

View File

@@ -162,6 +162,7 @@ namespace ExtUI {
bed_mesh_t& getMeshArray();
float getMeshPoint(const xy_uint8_t &pos);
void setMeshPoint(const xy_uint8_t &pos, const float &zval);
void moveToMeshPoint(const xy_uint8_t &pos, const float &z);
void onMeshLevelingStart();
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const float &zval);
inline void onMeshUpdate(const xy_int8_t &pos, const float &zval) { onMeshUpdate(pos.x, pos.y, zval); }