Filament width sensor February 24, 2015 01:35PM |
Registered: 10 years ago Posts: 77 |
Re: Filament width sensor February 26, 2015 03:21PM |
Registered: 12 years ago Posts: 210 |
Re: Filament width sensor March 02, 2015 11:25AM |
Registered: 10 years ago Posts: 77 |
Re: Filament width sensor March 04, 2015 01:36AM |
Registered: 12 years ago Posts: 210 |
Re: Filament width sensor April 06, 2015 08:55AM |
Registered: 11 years ago Posts: 23 |
Re: Filament width sensor April 06, 2015 01:37PM |
Registered: 10 years ago Posts: 77 |
Re: Filament width sensor April 07, 2015 10:07AM |
Registered: 11 years ago Posts: 23 |
Re: Filament width sensor April 07, 2015 01:02PM |
Registered: 10 years ago Posts: 77 |
Thanks for you interest. I also prefer Arduino like microcontrollersQuote
parto
Thanks for that Zasf. I like this sensor because of your choice of the AT tiny a micro that can be programmed with arduino hardware compared to Filip Mulier's microcontroller.
Quote
parto
1) Could you elaborate a little on the proceedure for calibration of your sensor as set out in the code. You have a line :
if (reading > 600) button_now_pressed = true; What's the significance of 600???
Quote
parto
Is there a requirement for a calibration rod as with Filip Mulier's sensor?
Quote
parto
2) Your code also mentions serial debug. How does this work with the Tiny? From your fritzing schematic I don't see any reference to a serial line.
Quote
parto
Any help would be great.
Re: Filament width sensor April 09, 2015 07:46AM |
Registered: 11 years ago Posts: 23 |
Re: Filament width sensor April 09, 2015 02:39PM |
Registered: 10 years ago Posts: 77 |
Quote
parto
I will try uploading the code to the Uno first in order to better understand what's going on in the sketch using the serial debug. It would be great if you could send me a pcb. Since I'm relatively new to reprap forum how do you set about securely exchanging contact details or email adresses???
Re: Filament width sensor May 02, 2015 05:53PM |
Registered: 11 years ago Posts: 23 |
Re: Filament width sensor May 03, 2015 11:45PM |
Registered: 11 years ago Posts: 3 |
Re: Filament width sensor May 04, 2015 10:24AM |
Registered: 11 years ago Posts: 23 |
Quote
When you printed the cone the first time was it by itself or with other items on the bed?
Quote
Before 13 cm passes through the code uses the first reading in the buffer (first filament measurement).
Re: Filament width sensor May 04, 2015 03:06PM |
Registered: 10 years ago Posts: 77 |
Quote
flipper
M221 is a separate factor, (extrudemultiply) and independent of the factor controlled by the sensor (volumetric_multiplier[active_extruder]).
case 407: //M407 Display measured filament diameter { SERIAL_PROTOCOLPGM("Filament dia (measured mm): "); SERIAL_PROTOCOL(filament_width_meas); SERIAL_PROTOCOLPGM(", extrusion ratio(%): "); SERIAL_PROTOCOLLN(volumetric_multiplier[active_extruder]); } break
Re: Filament width sensor May 07, 2015 12:55PM |
Registered: 10 years ago Posts: 77 |
Re: Filament width sensor September 03, 2015 11:38AM |
Registered: 11 years ago Posts: 23 |
Quote
flipper
Here is some info on how Marlin uses the filament sensor readings:
M221 is a separate factor, (extrudemultiply) and independent of the factor controlled by the sensor (volumetric_multiplier[active_extruder]).
I am not sure why turning on the filament sensor control would cause the issues in your prints, especially if you are simulating it with a constant voltage at 3v. When you printed the cone the first time was it by itself or with other items on the bed?
Before 13 cm passes through the code uses the first reading in the buffer (first filament measurement).
Re: Filament width sensor October 02, 2015 09:13PM |
Registered: 11 years ago Posts: 3 |
Re: Filament width sensor December 30, 2015 07:11AM |
Registered: 9 years ago Posts: 21 |