Add Coolant Control M7/M8/M9 (#10745)

This commit is contained in:
mb300sd
2019-06-13 19:43:11 -04:00
committed by Scott Lahteine
parent 648a91bce8
commit bf8bfb5c66
86 changed files with 1314 additions and 9 deletions

View File

@ -2114,6 +2114,21 @@
//#define SPEED_POWER_MAX 100 // 0-100%
#endif
/**
* Coolant Control
*
* Add the M7, M8, and M9 commands to turn mist or flood coolant on and off.
*
* Note: COOLANT_MIST_PIN and/or COOLANT_FLOOD_PIN must also be defined.
*/
//#define COOLANT_CONTROL
#if ENABLED(COOLANT_CONTROL)
#define COOLANT_MIST // Enable if mist coolant is present
#define COOLANT_FLOOD // Enable if flood coolant is present
#define COOLANT_MIST_INVERT false // Set "true" if the on/off function is reversed
#define COOLANT_FLOOD_INVERT false // Set "true" if the on/off function is reversed
#endif
/**
* Filament Width Sensor
*