Add handling of BLTouch error state

This commit is contained in:
Scott Lahteine
2016-09-18 18:02:53 -05:00
parent c4dcfa254e
commit f38a33a5d8
4 changed files with 28 additions and 0 deletions

View File

@ -124,6 +124,15 @@ enum TempState {
};
#endif
#if ENABLED(BLTOUCH)
enum BLTouchState {
BLTouchState_Deploy = 10,
BLTouchState_Stow = 90,
BLTouchState_Selftest = 120,
BLTouchState_Error = 160
};
#endif
#if ENABLED(FILAMENT_CHANGE_FEATURE)
enum FilamentChangeMenuResponse {
FILAMENT_CHANGE_RESPONSE_WAIT_FOR,