Interface ICoolantDef
Coolant state (M07 mist / M08 flood / M09 off). Written by CoolantSyntax. Modal — persists until changed.
IsOn is the on/off convenience flag (true for M07 and M08, false for M09). Mode carries the abstract kind (Flood / Mist / Off) for consumers that need to distinguish flood vs mist.
public interface ICoolantDef
- Extension Methods
Examples
"Coolant": { "IsOn": true, "Mode": "Flood" }
"Coolant": { "IsOn": true, "Mode": "Mist" }
"Coolant": { "IsOn": false, "Mode": "Off" }
Properties
IsOn
Whether any coolant is currently active.
bool IsOn { get; set; }
Property Value
Mode
string Mode { get; set; }