From 64031ab3d7c5a857d5bdaa975752112f2da38a49 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Fri, 24 Apr 2020 15:54:18 -0400 Subject: gcode: Rename respond() to respond_raw() Rename the method to make it more clear that it is a low-level call that should be rarely used. Also, change gcode_button.py, hall_filament_width_sensor.py, and tsl1401cl_filament_width_sensor.py to use respond_info() instead of respond_raw(). Signed-off-by: Kevin O'Connor --- klippy/extras/tsl1401cl_filament_width_sensor.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'klippy/extras/tsl1401cl_filament_width_sensor.py') diff --git a/klippy/extras/tsl1401cl_filament_width_sensor.py b/klippy/extras/tsl1401cl_filament_width_sensor.py index c9f5ab17..b54cd9bc 100644 --- a/klippy/extras/tsl1401cl_filament_width_sensor.py +++ b/klippy/extras/tsl1401cl_filament_width_sensor.py @@ -110,11 +110,11 @@ class FilamentWidthSensor: + str(self.lastFilamentWidthReading)) else: response += "Filament NOT present" - self.gcode.respond(response) + self.gcode.respond_info(response) def cmd_ClearFilamentArray(self, params): self.filament_array = [] - self.gcode.respond("Filament width measurements cleared!") + self.gcode.respond_info("Filament width measurements cleared!") # Set extrude multiplier to 100% self.gcode.run_script_from_command("M221 S100") @@ -127,7 +127,7 @@ class FilamentWidthSensor: # Start extrude factor update timer self.reactor.update_timer(self.extrude_factor_update_timer, self.reactor.NOW) - self.gcode.respond(response) + self.gcode.respond_info(response) def cmd_M406(self, params): response = "Filament width sensor Turned 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(response) + self.gcode.respond_info(response) def load_config(config): return FilamentWidthSensor(config) -- cgit v1.2.3-70-g09d2