diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2024-07-31 21:31:22 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-07-31 21:31:22 -0400 |
commit | 13c75ea876ae66d5f33d79afe4e30dffed3e999c (patch) | |
tree | 53da10348aa61ab0c02965cb89d8f9a62c8201c5 /docs/Config_Reference.md | |
parent | cb15d0fec69317ed2023dd8aad19f749f527fe77 (diff) | |
download | kutter-13c75ea876ae66d5f33d79afe4e30dffed3e999c.tar.gz kutter-13c75ea876ae66d5f33d79afe4e30dffed3e999c.tar.xz kutter-13c75ea876ae66d5f33d79afe4e30dffed3e999c.zip |
docs: Fix heading hierarchy for load_cell in Config_Reference.md
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Config_Reference.md')
-rw-r--r-- | docs/Config_Reference.md | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/docs/Config_Reference.md b/docs/Config_Reference.md index 63779df9..f19f0ebc 100644 --- a/docs/Config_Reference.md +++ b/docs/Config_Reference.md @@ -4654,18 +4654,14 @@ scale. ``` [load_cell] sensor_type: -# This must be one of the supported Sensor types, see `Load Cell Sensors` +# This must be one of the supported sensor types, see below. ``` -### Load Cell Sensors - -Load Cell supports dedicated Analog to Digital Converter (ADC) chips that sample -at a high data rate. - #### XH711 This is a 24 bit low sample rate chip using "bit-bang" communications. It is suitable for filament scales. ``` +[load_cell] sensor_type: hx711 sclk_pin: # The pin connected to the HX711 clock line. This parameter must be provided. @@ -4683,9 +4679,10 @@ dout_pin: # in software. ``` -### HX717 +#### HX717 This is the 4x higher sample rate version of the HX711, suitable for probing. ``` +[load_cell] sensor_type: hx717 sclk_pin: # The pin connected to the HX717 clock line. This parameter must be provided. @@ -4703,10 +4700,11 @@ dout_pin: # in software. ``` -### ADS1220 +#### ADS1220 The ADS1220 is a 24 bit ADC supporting up to a 2Khz sample rate configurable in software. ``` +[load_cell] sensor_type: ads1220 cs_pin: # The pin connected to the ADS1220 chip select line. This parameter must |