aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Hall_Filament_Width_Sensor.md
diff options
context:
space:
mode:
authorYifei Ding <dingyifeiair@gmail.com>2021-12-27 09:41:31 -0800
committerGitHub <noreply@github.com>2021-12-27 12:41:31 -0500
commit98af5dffe61476200d1215afbd00b0d809ad0474 (patch)
tree0afb9a03195ea2e2d073cea1f0a2130933f1e832 /docs/Hall_Filament_Width_Sensor.md
parent634ae08df6fbd962bd034ac434539c5d02eb5dfa (diff)
downloadkutter-98af5dffe61476200d1215afbd00b0d809ad0474.tar.gz
kutter-98af5dffe61476200d1215afbd00b0d809ad0474.tar.xz
kutter-98af5dffe61476200d1215afbd00b0d809ad0474.zip
docs: Improve filament width sensor documentation (#5058)
Add Filament Width Sensor to G-Codes.md Remove Redundant Filament Width Sensor Entries Remove Duplicate Status Reference In Hall Filament Width Sensor Fix Indentation For Filament Width Sensors Signed-off-by: Yifei Ding<yifeiding@protonmail.com>
Diffstat (limited to 'docs/Hall_Filament_Width_Sensor.md')
-rw-r--r--docs/Hall_Filament_Width_Sensor.md116
1 files changed, 23 insertions, 93 deletions
diff --git a/docs/Hall_Filament_Width_Sensor.md b/docs/Hall_Filament_Width_Sensor.md
index 02336e32..2b859a66 100644
--- a/docs/Hall_Filament_Width_Sensor.md
+++ b/docs/Hall_Filament_Width_Sensor.md
@@ -1,100 +1,26 @@
# Hall filament width sensor
-This document describes Filament Width Sensor host module. Hardware used for developing this host module is based on Two Hall liniar sensors (ss49e for example). Sensors in the body are located opposite sides. Principle of operation : two hall sensors work in differential mode, temperature drift same for sensor. Special temperature compensation not needed. You can find designs at [Thingiverse](https://www.thingiverse.com/thing:4138933)
+This document describes Filament Width Sensor host module. Hardware used for
+developing this host module is based on two Hall linear sensors (ss49e for
+example). Sensors in the body are located opposite sides. Principle of operation:
+two hall sensors work in differential mode, temperature drift same for sensor.
+Special temperature compensation not needed.
-[Hall based filament width sensor assembly video](https://www.youtube.com/watch?v=TDO9tME8vp4)
+You can find designs at [Thingiverse](https://www.thingiverse.com/thing:4138933),
+an assembly video is also available on [Youtube](https://www.youtube.com/watch?v=TDO9tME8vp4)
-## How does it work?
-
-Sensor generates two analog output based on calculated filament width. Sum of output voltage always equals to detected filament width . Host module monitors voltage changes and adjusts extrusion multiplier. I use aux2 connector on ramps-like board analog11 and analog12 pins. You can use different pins and differenr boards
-
-## Configuration
-
-```
-[hall_filament_width_sensor]
-
-adc1: analog11
-adc2: analog12
-# adc1 and adc2 channels select own pins Analog input pins on 3d printer board
-# Sensor power supply can be 3.3v or 5v
-
-Cal_dia1: 1.50 # Reference diameter point 1 (mm)
-Cal_dia2: 2.00 # Reference diameter point 2 (mm)
-
-# The measurement principle provides for two-point calibration
-# In calibration process you must use rods of known diameter
-# I use drill rods as the base diameter.
-# nominal filament diameter must be between Cal_dia1 and Cal_dia2
-# Your size may differ from the indicated ones, for example 2.05
-
-Raw_dia1:10630 # Raw sensor value for reference point 1
-Raw_dia2:8300 # Raw sensor value for reference point 2
-
-# Raw value of sensor in units
-# can be readed by command QUERY_RAW_FILAMENT_WIDTH
-
-default_nominal_filament_diameter: 1.75 # This parameter is in millimeters (mm)
-
-max_difference: 0.15
-# Maximum allowed filament diameter difference in millimeters (mm)
-# If difference between nominal filament diameter and sensor output is more
-# than +- max_difference, extrusion multiplier set back to %100
-
-measurement_delay: 70
-# The distance from sensor to the melting chamber/hot-end in millimeters (mm).
-# The filament between the sensor and the hot-end will be treated as the default_nominal_filament_diameter.
-# Host module works with FIFO logic. It keeps each sensor value and position in
-# an array and POP them back in correct position.
-
-#enable:False
-# Sensor enabled or disabled after power on. Disabled by default
+To use Hall filament width sensor, read
+[Config Reference](Config_Reference.md#hall_filament_width_sensor) and
+[G-Code documentation](G-Codes.md#Hall_Filament_Width_Sensor_Commands).
-# measurement_interval:10
-# Sensor readings done with 10 mm intervals by default. If necessary you are free to change this setting
-#logging: False
-# Out diameter to terminal and klipper.log
-# can be turn on|of by command
-
-#Virtual filament_switch_sensor suppurt. Create sensor named hall_filament_width_sensor.
-#
-#min_diameter:1.0
-#Minimal diameter for trigger virtual filament_switch_sensor.
-#use_current_dia_while_delay: False
-# Use the current diameter instead of the nominal diamenter while the measurement delay has not run through.
-#
-#Values from filament_switch_sensor. See the "filament_switch_sensor" section for information on these parameters.
-#
-#pause_on_runout: True
-#runout_gcode:
-#insert_gcode:
-#event_delay: 3.0
-#pause_delay: 0.5
-```
-
-## G-Code Commands
-
-**QUERY_FILAMENT_WIDTH** - Return the current measured filament width as result
-
-**RESET_FILAMENT_WIDTH_SENSOR** - Clear all sensor readings. Can be used after filament change.
-
-**DISABLE_FILAMENT_WIDTH_SENSOR** - Turn off the filament width sensor and stop using it to do flow control
-
-**ENABLE_FILAMENT_WIDTH_SENSOR** - Turn on the filament width sensor and start using it to do flow control
-
-**QUERY_RAW_FILAMENT_WIDTH** Return the current ADC channel values and RAW sensor value for calibration points
-
-**ENABLE_FILAMENT_WIDTH_LOG** - Turn on diameter logging
-
-**DISABLE_FILAMENT_WIDTH_LOG** - Turn off diameter logging
-
-## Menu variables
-
-**hall_filament_width_sensor.Diameter** current measured filament width in mm
-
-**hall_filament_width_sensor.Raw** current raw measured filament width in units
+## How does it work?
-**hall_filament_width_sensor.is_active** Sensor on or off
+Sensor generates two analog output based on calculated filament width. Sum of
+output voltage always equals to detected filament width. Host module monitors
+voltage changes and adjusts extrusion multiplier. I use aux2 connector on
+ramps-like board analog11 and analog12 pins. You can use different pins and
+differenr boards.
## Template for menu variables
@@ -114,7 +40,8 @@ index: 1
## Calibration procedure
-To get raw sensor value you can use menu item or **QUERY_RAW_FILAMENT_WIDTH** command in terminal
+To get raw sensor value you can use menu item or **QUERY_RAW_FILAMENT_WIDTH**
+command in terminal.
1. Insert first calibration rod (1.5 mm size) get first raw sensor value
@@ -126,12 +53,15 @@ To get raw sensor value you can use menu item or **QUERY_RAW_FILAMENT_WIDTH** co
By default, the sensor is disabled at power-on.
-To enable the sensor, issue **ENABLE_FILAMENT_WIDTH_SENSOR** command or set the `enable` parameter to `true.`
+To enable the sensor, issue **ENABLE_FILAMENT_WIDTH_SENSOR** command or
+set the `enable` parameter to `true.`
## Logging
By default, diameter logging is disabled at power-on.
-Issue **ENABLE_FILAMENT_WIDTH_LOG** command to start logging and issue **DISABLE_FILAMENT_WIDTH_LOG** command to stop logging. To enable logging at power-on, set the `logging` parameter to `true`.
+Issue **ENABLE_FILAMENT_WIDTH_LOG** command to start logging and issue
+**DISABLE_FILAMENT_WIDTH_LOG** command to stop logging. To enable logging
+at power-on, set the `logging` parameter to `true`.
Filament diameter is logged on every measurement interval (10 mm by default).