EXTENSIBLE_UI Joystick support (#15303)
This commit is contained in:
committed by
Scott Lahteine
parent
12e0581f24
commit
7f117bfc60
@ -45,6 +45,11 @@
|
||||
#include "../../inc/MarlinConfig.h"
|
||||
|
||||
namespace ExtUI {
|
||||
|
||||
#if ENABLED(JOYSTICK)
|
||||
extern float norm_jog[];
|
||||
#endif
|
||||
|
||||
// The ExtUI implementation can store up to this many bytes
|
||||
// in the EEPROM when the methods onStoreSettings and
|
||||
// onLoadSettings are called.
|
||||
@ -79,6 +84,8 @@ namespace ExtUI {
|
||||
void enableHeater(const heater_t);
|
||||
void enableHeater(const extruder_t);
|
||||
|
||||
void jog(float dx, float dy, float dz);
|
||||
|
||||
/**
|
||||
* Getters and setters
|
||||
* Should be used by the EXTENSIBLE_UI to query or change Marlin's state.
|
||||
|
Reference in New Issue
Block a user