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 <kevin@koconnor.net>
This commit is contained in:
parent
61524542d2
commit
64031ab3d7
|
@ -187,7 +187,8 @@ class BedMesh:
|
||||||
self.gcode.respond_info("Bed has not been probed")
|
self.gcode.respond_info("Bed has not been probed")
|
||||||
else:
|
else:
|
||||||
self.bmc.print_probed_positions(self.gcode.respond_info)
|
self.bmc.print_probed_positions(self.gcode.respond_info)
|
||||||
self.z_mesh.print_mesh(self.gcode.respond, self.horizontal_move_z)
|
self.z_mesh.print_mesh(self.gcode.respond_raw,
|
||||||
|
self.horizontal_move_z)
|
||||||
cmd_BED_MESH_MAP_help = "Serialize mesh and output to terminal"
|
cmd_BED_MESH_MAP_help = "Serialize mesh and output to terminal"
|
||||||
def cmd_BED_MESH_MAP(self, params):
|
def cmd_BED_MESH_MAP(self, params):
|
||||||
if self.z_mesh is not None:
|
if self.z_mesh is not None:
|
||||||
|
@ -196,8 +197,7 @@ class BedMesh:
|
||||||
'mesh_min': (params['min_x'], params['min_y']),
|
'mesh_min': (params['min_x'], params['min_y']),
|
||||||
'mesh_max': (params['max_x'], params['max_y']),
|
'mesh_max': (params['max_x'], params['max_y']),
|
||||||
'z_positions': self.bmc.probed_matrix}
|
'z_positions': self.bmc.probed_matrix}
|
||||||
self.gcode.respond(
|
self.gcode.respond_raw("mesh_map_output " + json.dumps(outdict))
|
||||||
"mesh_map_output " + json.dumps(outdict))
|
|
||||||
else:
|
else:
|
||||||
self.gcode.respond_info("Bed has not been probed")
|
self.gcode.respond_info("Bed has not been probed")
|
||||||
cmd_BED_MESH_CLEAR_help = "Clear the Mesh so no z-adjusment is made"
|
cmd_BED_MESH_CLEAR_help = "Clear the Mesh so no z-adjusment is made"
|
||||||
|
|
|
@ -26,7 +26,7 @@ class GCodeButton:
|
||||||
cmd_QUERY_BUTTON_help = "Report on the state of a button"
|
cmd_QUERY_BUTTON_help = "Report on the state of a button"
|
||||||
|
|
||||||
def cmd_QUERY_BUTTON(self, params):
|
def cmd_QUERY_BUTTON(self, params):
|
||||||
self.gcode.respond(self.name + ": " + self.get_status()['state'])
|
self.gcode.respond_info(self.name + ": " + self.get_status()['state'])
|
||||||
|
|
||||||
def button_callback(self, eventtime, state):
|
def button_callback(self, eventtime, state):
|
||||||
self.last_state = state
|
self.last_state = state
|
||||||
|
|
|
@ -134,11 +134,11 @@ class HallFilamentWidthSensor:
|
||||||
+ str(self.diameter))
|
+ str(self.diameter))
|
||||||
else:
|
else:
|
||||||
response += "Filament NOT present"
|
response += "Filament NOT present"
|
||||||
self.gcode.respond(response)
|
self.gcode.respond_info(response)
|
||||||
|
|
||||||
def cmd_ClearFilamentArray(self, params):
|
def cmd_ClearFilamentArray(self, params):
|
||||||
self.filament_array = []
|
self.filament_array = []
|
||||||
self.gcode.respond("Filament width measurements cleared!")
|
self.gcode.respond_info("Filament width measurements cleared!")
|
||||||
# Set extrude multiplier to 100%
|
# Set extrude multiplier to 100%
|
||||||
self.gcode.run_script_from_command("M221 S100")
|
self.gcode.run_script_from_command("M221 S100")
|
||||||
|
|
||||||
|
@ -151,7 +151,7 @@ class HallFilamentWidthSensor:
|
||||||
# Start extrude factor update timer
|
# Start extrude factor update timer
|
||||||
self.reactor.update_timer(self.extrude_factor_update_timer,
|
self.reactor.update_timer(self.extrude_factor_update_timer,
|
||||||
self.reactor.NOW)
|
self.reactor.NOW)
|
||||||
self.gcode.respond(response)
|
self.gcode.respond_info(response)
|
||||||
|
|
||||||
def cmd_M406(self, params):
|
def cmd_M406(self, params):
|
||||||
response = "Filament width sensor Turned Off"
|
response = "Filament width sensor Turned Off"
|
||||||
|
@ -166,7 +166,7 @@ class HallFilamentWidthSensor:
|
||||||
self.filament_array = []
|
self.filament_array = []
|
||||||
# Set extrude multiplier to 100%
|
# Set extrude multiplier to 100%
|
||||||
self.gcode.run_script_from_command("M221 S100")
|
self.gcode.run_script_from_command("M221 S100")
|
||||||
self.gcode.respond(response)
|
self.gcode.respond_info(response)
|
||||||
|
|
||||||
def cmd_Get_Raw_Values(self, params):
|
def cmd_Get_Raw_Values(self, params):
|
||||||
response = "ADC1="
|
response = "ADC1="
|
||||||
|
@ -175,7 +175,7 @@ class HallFilamentWidthSensor:
|
||||||
response += (" RAW="+
|
response += (" RAW="+
|
||||||
str(self.lastFilamentWidthReading
|
str(self.lastFilamentWidthReading
|
||||||
+self.lastFilamentWidthReading2))
|
+self.lastFilamentWidthReading2))
|
||||||
self.gcode.respond(response)
|
self.gcode.respond_info(response)
|
||||||
def get_status(self, eventtime):
|
def get_status(self, eventtime):
|
||||||
return {'Diameter': self.diameter,
|
return {'Diameter': self.diameter,
|
||||||
'Raw':(self.lastFilamentWidthReading+
|
'Raw':(self.lastFilamentWidthReading+
|
||||||
|
|
|
@ -27,7 +27,7 @@ class QueryEndstops:
|
||||||
msg = " ".join(["%s:%s" % (name, ["open", "TRIGGERED"][not not t])
|
msg = " ".join(["%s:%s" % (name, ["open", "TRIGGERED"][not not t])
|
||||||
for name, t in self.last_state])
|
for name, t in self.last_state])
|
||||||
gcode = self.printer.lookup_object('gcode')
|
gcode = self.printer.lookup_object('gcode')
|
||||||
gcode.respond(msg)
|
gcode.respond_raw(msg)
|
||||||
|
|
||||||
def load_config(config):
|
def load_config(config):
|
||||||
return QueryEndstops(config)
|
return QueryEndstops(config)
|
||||||
|
|
|
@ -32,7 +32,7 @@ class HostResponder:
|
||||||
msg = msg[5:]
|
msg = msg[5:]
|
||||||
else:
|
else:
|
||||||
msg = ''
|
msg = ''
|
||||||
self.gcode.respond("%s %s" % (self.default_prefix, msg))
|
self.gcode.respond_raw("%s %s" % (self.default_prefix, msg))
|
||||||
def cmd_RESPOND(self, params):
|
def cmd_RESPOND(self, params):
|
||||||
respond_type = self.gcode.get_str('TYPE', params, None)
|
respond_type = self.gcode.get_str('TYPE', params, None)
|
||||||
prefix = self.default_prefix
|
prefix = self.default_prefix
|
||||||
|
@ -46,7 +46,7 @@ class HostResponder:
|
||||||
" of 'echo', 'command', or 'error'" % (respond_type,))
|
" of 'echo', 'command', or 'error'" % (respond_type,))
|
||||||
prefix = self.gcode.get_str('PREFIX', params, prefix)
|
prefix = self.gcode.get_str('PREFIX', params, prefix)
|
||||||
msg = self.gcode.get_str('MSG', params, '')
|
msg = self.gcode.get_str('MSG', params, '')
|
||||||
self.gcode.respond("%s %s" %(prefix, msg))
|
self.gcode.respond_raw("%s %s" %(prefix, msg))
|
||||||
|
|
||||||
def load_config(config):
|
def load_config(config):
|
||||||
return HostResponder(config)
|
return HostResponder(config)
|
||||||
|
|
|
@ -110,11 +110,11 @@ class FilamentWidthSensor:
|
||||||
+ str(self.lastFilamentWidthReading))
|
+ str(self.lastFilamentWidthReading))
|
||||||
else:
|
else:
|
||||||
response += "Filament NOT present"
|
response += "Filament NOT present"
|
||||||
self.gcode.respond(response)
|
self.gcode.respond_info(response)
|
||||||
|
|
||||||
def cmd_ClearFilamentArray(self, params):
|
def cmd_ClearFilamentArray(self, params):
|
||||||
self.filament_array = []
|
self.filament_array = []
|
||||||
self.gcode.respond("Filament width measurements cleared!")
|
self.gcode.respond_info("Filament width measurements cleared!")
|
||||||
# Set extrude multiplier to 100%
|
# Set extrude multiplier to 100%
|
||||||
self.gcode.run_script_from_command("M221 S100")
|
self.gcode.run_script_from_command("M221 S100")
|
||||||
|
|
||||||
|
@ -127,7 +127,7 @@ class FilamentWidthSensor:
|
||||||
# Start extrude factor update timer
|
# Start extrude factor update timer
|
||||||
self.reactor.update_timer(self.extrude_factor_update_timer,
|
self.reactor.update_timer(self.extrude_factor_update_timer,
|
||||||
self.reactor.NOW)
|
self.reactor.NOW)
|
||||||
self.gcode.respond(response)
|
self.gcode.respond_info(response)
|
||||||
|
|
||||||
def cmd_M406(self, params):
|
def cmd_M406(self, params):
|
||||||
response = "Filament width sensor Turned Off"
|
response = "Filament width sensor Turned Off"
|
||||||
|
@ -142,7 +142,7 @@ class FilamentWidthSensor:
|
||||||
self.filament_array = []
|
self.filament_array = []
|
||||||
# Set extrude multiplier to 100%
|
# Set extrude multiplier to 100%
|
||||||
self.gcode.run_script_from_command("M221 S100")
|
self.gcode.run_script_from_command("M221 S100")
|
||||||
self.gcode.respond(response)
|
self.gcode.respond_info(response)
|
||||||
|
|
||||||
def load_config(config):
|
def load_config(config):
|
||||||
return FilamentWidthSensor(config)
|
return FilamentWidthSensor(config)
|
||||||
|
|
|
@ -72,13 +72,13 @@ class VirtualSD:
|
||||||
def cmd_M20(self, params):
|
def cmd_M20(self, params):
|
||||||
# List SD card
|
# List SD card
|
||||||
files = self.get_file_list()
|
files = self.get_file_list()
|
||||||
self.gcode.respond("Begin file list")
|
self.gcode.respond_raw("Begin file list")
|
||||||
for fname, fsize in files:
|
for fname, fsize in files:
|
||||||
self.gcode.respond("%s %d" % (fname, fsize))
|
self.gcode.respond_raw("%s %d" % (fname, fsize))
|
||||||
self.gcode.respond("End file list")
|
self.gcode.respond_raw("End file list")
|
||||||
def cmd_M21(self, params):
|
def cmd_M21(self, params):
|
||||||
# Initialize SD card
|
# Initialize SD card
|
||||||
self.gcode.respond("SD card ok")
|
self.gcode.respond_raw("SD card ok")
|
||||||
def cmd_M23(self, params):
|
def cmd_M23(self, params):
|
||||||
# Select SD file
|
# Select SD file
|
||||||
if self.work_timer is not None:
|
if self.work_timer is not None:
|
||||||
|
@ -108,8 +108,8 @@ class VirtualSD:
|
||||||
except:
|
except:
|
||||||
logging.exception("virtual_sdcard file open")
|
logging.exception("virtual_sdcard file open")
|
||||||
raise self.gcode.error("Unable to open file")
|
raise self.gcode.error("Unable to open file")
|
||||||
self.gcode.respond("File opened:%s Size:%d" % (filename, fsize))
|
self.gcode.respond_raw("File opened:%s Size:%d" % (filename, fsize))
|
||||||
self.gcode.respond("File selected")
|
self.gcode.respond_raw("File selected")
|
||||||
self.current_file = f
|
self.current_file = f
|
||||||
self.file_position = 0
|
self.file_position = 0
|
||||||
self.file_size = fsize
|
self.file_size = fsize
|
||||||
|
@ -132,9 +132,9 @@ class VirtualSD:
|
||||||
def cmd_M27(self, params):
|
def cmd_M27(self, params):
|
||||||
# Report SD print status
|
# Report SD print status
|
||||||
if self.current_file is None:
|
if self.current_file is None:
|
||||||
self.gcode.respond("Not SD printing.")
|
self.gcode.respond_raw("Not SD printing.")
|
||||||
return
|
return
|
||||||
self.gcode.respond("SD printing byte %d/%d" % (
|
self.gcode.respond_raw("SD printing byte %d/%d" % (
|
||||||
self.file_position, self.file_size))
|
self.file_position, self.file_size))
|
||||||
# Background work timer
|
# Background work timer
|
||||||
def work_handler(self, eventtime):
|
def work_handler(self, eventtime):
|
||||||
|
@ -162,7 +162,7 @@ class VirtualSD:
|
||||||
self.current_file.close()
|
self.current_file.close()
|
||||||
self.current_file = None
|
self.current_file = None
|
||||||
logging.info("Finished SD card print")
|
logging.info("Finished SD card print")
|
||||||
self.gcode.respond("Done printing file")
|
self.gcode.respond_raw("Done printing file")
|
||||||
break
|
break
|
||||||
lines = data.split('\n')
|
lines = data.split('\n')
|
||||||
lines[0] = partial_input + lines[0]
|
lines[0] = partial_input + lines[0]
|
||||||
|
|
|
@ -316,7 +316,7 @@ class GCodeParser:
|
||||||
except os.error:
|
except os.error:
|
||||||
logging.exception("Write g-code ack")
|
logging.exception("Write g-code ack")
|
||||||
self.need_ack = False
|
self.need_ack = False
|
||||||
def respond(self, msg):
|
def respond_raw(self, msg):
|
||||||
if self.is_fileinput:
|
if self.is_fileinput:
|
||||||
return
|
return
|
||||||
try:
|
try:
|
||||||
|
@ -327,13 +327,13 @@ class GCodeParser:
|
||||||
if log:
|
if log:
|
||||||
logging.info(msg)
|
logging.info(msg)
|
||||||
lines = [l.strip() for l in msg.strip().split('\n')]
|
lines = [l.strip() for l in msg.strip().split('\n')]
|
||||||
self.respond("// " + "\n// ".join(lines))
|
self.respond_raw("// " + "\n// ".join(lines))
|
||||||
def _respond_error(self, msg):
|
def _respond_error(self, msg):
|
||||||
logging.warning(msg)
|
logging.warning(msg)
|
||||||
lines = msg.strip().split('\n')
|
lines = msg.strip().split('\n')
|
||||||
if len(lines) > 1:
|
if len(lines) > 1:
|
||||||
self.respond_info("\n".join(lines), log=False)
|
self.respond_info("\n".join(lines), log=False)
|
||||||
self.respond('!! %s' % (lines[0].strip(),))
|
self.respond_raw('!! %s' % (lines[0].strip(),))
|
||||||
if self.is_fileinput:
|
if self.is_fileinput:
|
||||||
self.printer.request_exit('error_exit')
|
self.printer.request_exit('error_exit')
|
||||||
def _respond_state(self, state):
|
def _respond_state(self, state):
|
||||||
|
@ -407,7 +407,7 @@ class GCodeParser:
|
||||||
eventtime = self.reactor.monotonic()
|
eventtime = self.reactor.monotonic()
|
||||||
while self.is_printer_ready and heater.check_busy(eventtime):
|
while self.is_printer_ready and heater.check_busy(eventtime):
|
||||||
print_time = self.toolhead.get_last_move_time()
|
print_time = self.toolhead.get_last_move_time()
|
||||||
self.respond(self._get_temp(eventtime))
|
self.respond_raw(self._get_temp(eventtime))
|
||||||
eventtime = self.reactor.pause(eventtime + 1.)
|
eventtime = self.reactor.pause(eventtime + 1.)
|
||||||
# G-Code special command handlers
|
# G-Code special command handlers
|
||||||
def cmd_default(self, params):
|
def cmd_default(self, params):
|
||||||
|
@ -533,7 +533,7 @@ class GCodeParser:
|
||||||
def cmd_M114(self, params):
|
def cmd_M114(self, params):
|
||||||
# Get Current Position
|
# Get Current Position
|
||||||
p = self._get_gcode_position()
|
p = self._get_gcode_position()
|
||||||
self.respond("X:%.3f Y:%.3f Z:%.3f E:%.3f" % tuple(p))
|
self.respond_raw("X:%.3f Y:%.3f Z:%.3f E:%.3f" % tuple(p))
|
||||||
def cmd_M220(self, params):
|
def cmd_M220(self, params):
|
||||||
# Set speed factor override percentage
|
# Set speed factor override percentage
|
||||||
value = self.get_float('S', params, 100., above=0.) / (60. * 100.)
|
value = self.get_float('S', params, 100., above=0.) / (60. * 100.)
|
||||||
|
@ -609,7 +609,7 @@ class GCodeParser:
|
||||||
if self.need_ack:
|
if self.need_ack:
|
||||||
self.ack(msg)
|
self.ack(msg)
|
||||||
else:
|
else:
|
||||||
self.respond(msg)
|
self.respond_raw(msg)
|
||||||
cmd_M112_when_not_ready = True
|
cmd_M112_when_not_ready = True
|
||||||
def cmd_M112(self, params):
|
def cmd_M112(self, params):
|
||||||
# Emergency Stop
|
# Emergency Stop
|
||||||
|
|
Loading…
Reference in New Issue