filament runout sensor September 12, 2017 06:07AM |
Registered: 7 years ago Posts: 35 |
Re: filament runout sensor September 12, 2017 10:01AM |
Registered: 7 years ago Posts: 1,885 |
Re: filament runout sensor September 14, 2017 05:46AM |
Registered: 7 years ago Posts: 35 |
Re: filament runout sensor September 16, 2017 05:58PM |
Registered: 13 years ago Posts: 862 |
Re: filament runout sensor September 16, 2017 06:00PM |
Registered: 13 years ago Posts: 862 |
Quote
Roberts_Clif
I wired my Filament run-out sensor to X-Max and changed in pins. As the pin they suggested did not work for me.
I made the Filament run out sensor using a lighted end stop circuit board.
You could make it with just a switch, I wanted a Lighted verification that filament was enabled. I designed and 3D Printed a small case that does not require nuts and bolts.
Pins.Ramps.h
//#ifndef X_MAX_PIN
//#define X_MAX_PIN 2 // This is my X-Max pin, you should yours
//#endif
// define X_MAX_PIN 2 for the filament runout sensor.
#define FIL_RUNOUT_PIN 2
Configuration_adv.h
#define FILAMENT_CHANGE_FEATURE
Configuration.h
#define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
#define FILAMENT_RUNOUT_SENSOR // Uncomment for defining a filament runout sensor such as a mechanical or opto endstop to check the existence of filament
Re: filament runout sensor September 16, 2017 09:43PM |
Registered: 7 years ago Posts: 1,885 |
Quote
Replace
What does the printer do , when this pin gets high ?
I would like to have Repetier-Host go into pause mode .......
Re: filament runout sensor September 17, 2017 02:44AM |
Registered: 13 years ago Posts: 862 |
Re: filament runout sensor September 17, 2017 08:59AM |
Registered: 7 years ago Posts: 1,885 |
Quote
Replace
so, filament-runout is a standard feature already, but now connected to a endstop for choice ?
Re: filament runout sensor September 23, 2017 09:00AM |
Registered: 13 years ago Posts: 862 |
Re: filament runout sensor September 23, 2017 12:57PM |
Registered: 7 years ago Posts: 1,885 |
Re: filament runout sensor October 02, 2017 07:56PM |
Registered: 7 years ago Posts: 262 |
Quote
Roberts_Clif
The normally closed switch I am using is high until filament is present then goes to ground.
The circuit shown is just the way I decided to wire the Filament run out sensor as I wanted a light when filament present.
#define X_MAX_ENDSTOP_INVERTING false // Unused X-Max :: set to False for Filament Run-out Sensor.
#define FIL_RUNOUT_PIN 2 // Changed to X-Max pin 2 from #define FIL_RUNOUT_PIN 4
When triggered LCD Displays :: Filament not present LED on sensor out
"PRINT PAUSED"
" Insert filament "
"and press button"
" to continue . . ."
Re: filament runout sensor October 02, 2017 09:05PM |
Registered: 7 years ago Posts: 1,885 |