Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change Filament Feature #2926

Closed
wants to merge 111 commits into from
Closed

Change Filament Feature #2926

wants to merge 111 commits into from

Conversation

antonkopa
Copy link

I decided to test out the "Change Filament" feature, and before it continues the print, it pulls the filament completely back out again.

When I commented out #define AUTO_FILAMENT_CHANGE, it doesn't have this issue.

The issue here I believe is the current position of the extruder is not being restored from the remembered position.

FILE: Configuration_adv.h

// Add support for experimental filament exchange support M600; requires display
#if ENABLED(ULTIPANEL)
#define FILAMENTCHANGEENABLE
  #if ENABLED(FILAMENTCHANGEENABLE)
    #define FILAMENTCHANGE_XPOS 3
    #define FILAMENTCHANGE_YPOS 3
    #define FILAMENTCHANGE_ZADD 10
    #define FILAMENTCHANGE_FIRSTRETRACT -2
    #define FILAMENTCHANGE_FINALRETRACT -100
    #define AUTO_FILAMENT_CHANGE                //This extrude filament until you press the button on LCD
    #define AUTO_FILAMENT_CHANGE_LENGTH 0.04    //Extrusion length on automatic extrusion loop
    #define AUTO_FILAMENT_CHANGE_FEEDRATE 300   //Extrusion feedrate (mm/min) on automatic extrusion loop
  #endif
#endif

AnHardt and others added 30 commits December 3, 2015 00:38
Fix status LEDs update when reinitializing the display

By using the regular update function during init.

Fixing #2683
dx -> dsx
dy -> dsy
dz -> dsz
de -> dse
anything is long, we don't need float there
st_set_position takes long
```void st_set_position(const long& x, const long& y, const long& z, const long& e)```
Make the output of M105 more similar to Repetier.
Make the text-print pert of M105 an extra function to make it reusable. `print_heaterstates()`
Use `print_heaterstates()` in M019, M190 and M303
For some reason that I cannot determine, using a sub-function causes
the Tune sub-menu to act strangely, yet replacing the function call
with its code content works perfectly.
//100k 0603 SMD Vishay NTCS0603E3104FXT (4.7k pullup) (calibrated for Makibox hot bed)

Caveat Emptor —- 
I’m not sure that this really makes sense,
but why keep someone from using it?
• Removing trailing whitespace
• Adjusting indention for better readability
• Removing duplicated entries
Instead of changing SDEXTRASLOW variable to a slower speed,  the new
SDULTRASLOW is used for rigidbot panel.
silvio-didonna and others added 24 commits February 25, 2016 15:52
Fix crashes when the Z axis is moved via LCD
by calling `plan_buffer_line` only when there is enough room in the
planner buffer, to avoid endless recursion.
A brief description about what went wrong is in #1166
Fix GCode handling of spaces between command letter and first digit
Fix board type for Hephestos: RAMPS 1.4
Example configuration for Kossel XL
raise_z_after_probing() was only called if the printer type was set to a
DELTA or if the printer had a docking sled for the probe.
Temporary workaround for stack overflow
Fix Z_RAISE_AFTER_PROBING for non DELTA printers
Remove unused ALARM_PIN from all the Configuration.h's
Fix status LEDs update when reinitializing the display
Correct raise_z_for_servo for Z offsets below the nozzle
@thinkyhead
Copy link
Member

I will close this for now and we can continue to discuss this issue in a new topic around M600. Current topics of discussion are:

  • Integrating Josef Prusa's general implementation of M600
  • Adding keepalive and paused for input messages to keep hosts happy during long operations

See #3068 and #2933 for some background.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.