diff options
author | Gareth Farrington <gareth@waves.ky> | 2025-03-20 16:53:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-20 19:53:44 -0400 |
commit | 06d65ef5ac139e2c84e7381c190ee2b1e4ec4237 (patch) | |
tree | 757285e437b6d53673a3560d3b1cad18f7cc4e0c /klippy/extras/hx71x.py | |
parent | d886c1761bbdfd23833996489afba6b75f312a4a (diff) | |
download | kutter-06d65ef5ac139e2c84e7381c190ee2b1e4ec4237.tar.gz kutter-06d65ef5ac139e2c84e7381c190ee2b1e4ec4237.tar.xz kutter-06d65ef5ac139e2c84e7381c190ee2b1e4ec4237.zip |
load_cell: Load cell gram scale (#6729)
* Add gram scale features to load_cell
* Convert sensor counts to grams and make this available via unix socket and object status
* Basic GCodes for tearing and reading the load cell
* Guided Calibration
* Diagnostic gcode to check the health of the load cell
* Update load_cell Documentation
* Add API server load_cell/dump_force endpoint
* Update [load_cell] config with calibration fields
* Add G-Code commands for working with load cells
* Add status reference for load_cell objects
Signed-off-by: Gareth Farrington <gareth@waves.ky>
Diffstat (limited to 'klippy/extras/hx71x.py')
-rw-r--r-- | klippy/extras/hx71x.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/klippy/extras/hx71x.py b/klippy/extras/hx71x.py index 5c59ed0b..4ef90d6f 100644 --- a/klippy/extras/hx71x.py +++ b/klippy/extras/hx71x.py @@ -51,10 +51,6 @@ class HX71xBase: self.batch_bulk = bulk_sensor.BatchBulkHelper( self.printer, self._process_batch, self._start_measurements, self._finish_measurements, UPDATE_INTERVAL) - # publish raw samples to the socket - dump_path = "%s/dump_%s" % (sensor_type, sensor_type) - hdr = {'header': ('time', 'counts', 'value')} - self.batch_bulk.add_mux_endpoint(dump_path, "sensor", self.name, hdr) # Command Configuration self.query_hx71x_cmd = None mcu.add_config_cmd( |