Move Filament Width Sensor to Configuration_adv.h
This commit is contained in:
@@ -1697,38 +1697,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1717,38 +1717,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1697,38 +1697,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1856,38 +1856,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1705,38 +1705,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1688,38 +1688,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1698,38 +1698,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 2.00 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.60 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1263,6 +1263,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 2.00 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.60 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1688,38 +1688,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1696,38 +1696,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1707,41 +1707,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#define DEFAULT_STDDEV_FILAMENT_DIA 0.05 // Typical estimate for cheap filament
|
|
||||||
//#define DEFAULT_STDDEV_FILAMENT_DIA 0.02 // Typical advertised for higher quality filament
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT (DEFAULT_NOMINAL_FILAMENT_DIA+4*DEFAULT_STDDEV_FILAMENT_DIA) // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT (DEFAULT_NOMINAL_FILAMENT_DIA-4*DEFAULT_STDDEV_FILAMENT_DIA) // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,43 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#define DEFAULT_STDDEV_FILAMENT_DIA 0.05 // Typical estimate for cheap filament
|
||||||
|
//#define DEFAULT_STDDEV_FILAMENT_DIA 0.02 // Typical advertised for higher quality filament
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT (DEFAULT_NOMINAL_FILAMENT_DIA+4*DEFAULT_STDDEV_FILAMENT_DIA) // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT (DEFAULT_NOMINAL_FILAMENT_DIA-4*DEFAULT_STDDEV_FILAMENT_DIA) // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1679,38 +1679,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1679,38 +1679,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1702,38 +1702,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
#define DEACTIVATE_SERVOS_AFTER_MOVE
|
#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1712,40 +1712,6 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Customize common displays for GT2560
|
* Customize common displays for GT2560
|
||||||
*/
|
*/
|
||||||
|
@@ -1697,38 +1697,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1701,38 +1701,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1725,38 +1725,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1263,6 +1263,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1701,38 +1701,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1701,38 +1701,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1270,6 +1270,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1697,38 +1697,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1697,38 +1697,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1709,38 +1709,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1728,38 +1728,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1233,6 +1233,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1753,38 +1753,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1727,38 +1727,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1274,6 +1274,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1697,38 +1697,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1697,38 +1697,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1697,38 +1697,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1831,38 +1831,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 1.95 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.20 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1268,6 +1268,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 1.95 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.20 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1824,38 +1824,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1268,6 +1268,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1819,38 +1819,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1268,6 +1268,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1822,38 +1822,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1268,6 +1268,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1822,38 +1822,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1273,6 +1273,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1831,38 +1831,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1268,6 +1268,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1711,38 +1711,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1700,38 +1700,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1692,38 +1692,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1266,6 +1266,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
@@ -1702,38 +1702,4 @@
|
|||||||
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
// With this option servos are powered only during movement, then turned off to prevent jitter.
|
||||||
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
//#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
|
||||||
/**
|
|
||||||
* Filament Width Sensor
|
|
||||||
*
|
|
||||||
* Measures the filament width in real-time and adjusts
|
|
||||||
* flow rate to compensate for any irregularities.
|
|
||||||
*
|
|
||||||
* Also allows the measured filament diameter to set the
|
|
||||||
* extrusion rate, so the slicer only has to specify the
|
|
||||||
* volume.
|
|
||||||
*
|
|
||||||
* Only a single extruder is supported at this time.
|
|
||||||
*
|
|
||||||
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
|
||||||
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
|
||||||
* 301 RAMBO : Analog input 3
|
|
||||||
*
|
|
||||||
* Note: May require analog pins to be defined for other boards.
|
|
||||||
*/
|
|
||||||
//#define FILAMENT_WIDTH_SENSOR
|
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
|
||||||
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
|
||||||
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
|
||||||
|
|
||||||
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
|
||||||
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
|
||||||
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
|
||||||
|
|
||||||
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
|
||||||
|
|
||||||
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
|
||||||
//#define FILAMENT_LCD_DISPLAY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@@ -1253,6 +1253,40 @@
|
|||||||
//#define SPEED_POWER_MAX 100 // 0-100%
|
//#define SPEED_POWER_MAX 100 // 0-100%
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filament Width Sensor
|
||||||
|
*
|
||||||
|
* Measures the filament width in real-time and adjusts
|
||||||
|
* flow rate to compensate for any irregularities.
|
||||||
|
*
|
||||||
|
* Also allows the measured filament diameter to set the
|
||||||
|
* extrusion rate, so the slicer only has to specify the
|
||||||
|
* volume.
|
||||||
|
*
|
||||||
|
* Only a single extruder is supported at this time.
|
||||||
|
*
|
||||||
|
* 34 RAMPS_14 : Analog input 5 on the AUX2 connector
|
||||||
|
* 81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
|
||||||
|
* 301 RAMBO : Analog input 3
|
||||||
|
*
|
||||||
|
* Note: May require analog pins to be defined for other boards.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_WIDTH_SENSOR
|
||||||
|
|
||||||
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
||||||
|
#define FILAMENT_SENSOR_EXTRUDER_NUM 0 // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
|
||||||
|
#define MEASUREMENT_DELAY_CM 14 // (cm) The distance from the filament sensor to the melting chamber
|
||||||
|
|
||||||
|
#define MEASURED_UPPER_LIMIT 3.30 // (mm) Upper limit used to validate sensor reading
|
||||||
|
#define MEASURED_LOWER_LIMIT 1.90 // (mm) Lower limit used to validate sensor reading
|
||||||
|
#define MAX_MEASUREMENT_DELAY 20 // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
|
||||||
|
|
||||||
|
#define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
|
||||||
|
|
||||||
|
// Display filament width on the LCD status line. Status messages will expire after 5 seconds.
|
||||||
|
//#define FILAMENT_LCD_DISPLAY
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CNC Coordinate Systems
|
* CNC Coordinate Systems
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user