aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/filament_switch_sensor.py
Commit message (Collapse)AuthorAgeFilesLines
* filament_switch_sensor: Add a delay between dispatch of pause and execution ↵Arksine2019-09-081-0/+2
| | | | | | of pause gcode Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* filament_switch_sensor: add SET_FILAMENT_SENSOR gcodeArksine2019-07-101-2/+13
| | | | Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* filament_switch_sensor: postfix M400 to scriptArksine2019-07-101-1/+1
| | | | | | Finish Moves needs be a hard requirement for the event gcodes, as it eliminates the possiblility of an event firing while the gcode is executing. Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* filament_switch_sensor: remove stale _hande_ready call in the BaseSensorArksine2019-07-101-3/+0
| | | | | | The toolhead attribute is no longer required by the BaseSensor class Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* filament_switch_sensor: Use template evaluation on gcodeKevin O'Connor2019-06-071-10/+14
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* filament_runout_sensor: Auto load pause_resume module if pause_on_runout enabledKevin O'Connor2019-06-071-2/+3
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* filament_switch_sensor: initial implementation of switch based filament ↵Arksine2019-03-011-0/+124
runout/insert sensor This implementation includes a BaseSensor class that all underlying sensor implementations should subclass. Signed-off-by: Eric Callahan <arksine.code@gmail.com>