diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-04-24 22:18:27 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-05-05 11:08:11 -0400 |
commit | 1d2bb5a412e8ba1996c6ad399763e5f15933fb4f (patch) | |
tree | 605f56d8565393b51e8563deb3a58d5f4a500b62 /klippy | |
parent | 19abe2b9749094fc2c991a4d59d76fccf28248c1 (diff) | |
download | kutter-1d2bb5a412e8ba1996c6ad399763e5f15933fb4f.tar.gz kutter-1d2bb5a412e8ba1996c6ad399763e5f15933fb4f.tar.xz kutter-1d2bb5a412e8ba1996c6ad399763e5f15933fb4f.zip |
tsl1401cl_filament_width_sensor: Use new GCodeCommand wrappers
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy')
-rw-r--r-- | klippy/extras/tsl1401cl_filament_width_sensor.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/klippy/extras/tsl1401cl_filament_width_sensor.py b/klippy/extras/tsl1401cl_filament_width_sensor.py index b54cd9bc..fc624440 100644 --- a/klippy/extras/tsl1401cl_filament_width_sensor.py +++ b/klippy/extras/tsl1401cl_filament_width_sensor.py @@ -103,22 +103,22 @@ class FilamentWidthSensor: self.filament_array = [] return eventtime + 1 - def cmd_M407(self, params): + def cmd_M407(self, gcmd): response = "" if self.lastFilamentWidthReading > 0: response += ("Filament dia (measured mm): " + str(self.lastFilamentWidthReading)) else: response += "Filament NOT present" - self.gcode.respond_info(response) + gcmd.respond_info(response) - def cmd_ClearFilamentArray(self, params): + def cmd_ClearFilamentArray(self, gcmd): self.filament_array = [] - self.gcode.respond_info("Filament width measurements cleared!") + gcmd.respond_info("Filament width measurements cleared!") # Set extrude multiplier to 100% self.gcode.run_script_from_command("M221 S100") - def cmd_M405(self, params): + def cmd_M405(self, gcmd): response = "Filament width sensor Turned On" if self.is_active: response = "Filament width sensor is already On" @@ -127,9 +127,9 @@ class FilamentWidthSensor: # Start extrude factor update timer self.reactor.update_timer(self.extrude_factor_update_timer, self.reactor.NOW) - self.gcode.respond_info(response) + gcmd.respond_info(response) - def cmd_M406(self, params): + def cmd_M406(self, gcmd): response = "Filament width sensor Turned Off" if not self.is_active: response = "Filament width sensor is already Off" @@ -142,7 +142,7 @@ class FilamentWidthSensor: self.filament_array = [] # Set extrude multiplier to 100% self.gcode.run_script_from_command("M221 S100") - self.gcode.respond_info(response) + gcmd.respond_info(response) def load_config(config): return FilamentWidthSensor(config) |