Latest work on e-stop button

This commit is contained in:
Gregory Diaz 2015-02-25 16:14:32 -08:00
parent 6e762940d6
commit 866729a20f
8 changed files with 65 additions and 0 deletions

View file

@ -233,6 +233,11 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
return GetActiveValue("has_fan") == "1";
}
public bool HasEmergencyStop()
{
return GetActiveValue("has_emergency_stop") == "1";
}
public bool HasHardwareLeveling()
{
return GetActiveValue("has_hardware_leveling") == "1";

View file

@ -211,6 +211,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
new NotPassedItem("", "has_heated_bed"),
new NotPassedItem("", "has_sd_card_reader"),
new NotPassedItem("", "z_can_be_negative"),
new NotPassedItem("", "has_emergency_stop"),
//retractionOnExtruderSwitch=14.5
new MapItem("retractionOnExtruderSwitch", "retract_length_tool_change"),