klipper/src/load_cell_probe.h
Gareth Farrington 42c9031c81 load_cell_probe: Create load_cell_probe MCU object
Implement MCU features that enable using an adc to stop an axis

Signed-off-by: Gareth Farrington <gareth@waves.ky>
2025-05-29 19:06:48 -04:00

11 lines
289 B
C

#ifndef __LOAD_CELL_PROBE_H
#define __LOAD_CELL_PROBE_H
#include <stdint.h> // uint8_t
struct load_cell_probe *load_cell_probe_oid_lookup(uint8_t oid);
void load_cell_probe_report_sample(struct load_cell_probe *lce
, int32_t sample);
#endif // load_cell_probe.h