Re: Extruder retracts before start of print
Cant see anything wrong in the start code. Can you post the beginning part of a actual sliced g-code,upto the 1st layer
View ArticleRe: Extruder retracts before start of print
Here you go: ;FLAVOR:Marlin ;TIME:7176 ;Filament used: 10.6086m ;Layer height: 0.2 ;Generated with Cura_SteamEngine 3.4.1 M190 S65 M104 S205 M109 S205 M82 ;absolute extrusion mode G21 ;metric values...
View ArticleMove an axis to a position when print is done?
Hi, I'd like one of my axes to go to it's home switch when a print is done. Is there already a function for this? I know it can be done using gcode but I really hope it is something that can be...
View ArticleRe: Move an axis to a position when print is done?
For what it is worth, I don't think this is possible. Reason being, the Marlin FW silently waits for a command (from a file/SD card/program) to execute. As far as I can tell there is no way for the FW...
View ArticleRe: Move an axis to a position when print is done?
I use the slicer to send a G-code. In your slicer select the END/G-Code Add a line to send the Axis to the position you desire, I wanted to send my model to the front for easy removal End/G-Code G91...
View ArticleRe: Move an axis to a position when print is done?
I'd think when Cura or Repetier sends a m104 and an M84 at the end of a print cycle it could be possible to execute a command within the firmware to send the printer bed to a forward position. The...
View ArticleMarlin 1.1.9 Bilinear not working on CR-10 Mini with MKS GEn L and Bltouch?...
Hi all, recently decided to upgrade my Cr-10 Mini to a Titan and V6 after just fed up with the original extruder slipping gears (and no tightening of the extruder available though I probably could...
View ArticleWeird parts fan behaviour
I am running into an issue with the fan speeding up and slowing down on Marlin 2.0.x bug fix. Even though it is set at 100%, it seems like it is being pulsed. It runs fine at first but then goes kind...
View ArticleMarlin 1.1.9 and Ramps 1.6
Hi, Thanks for letting me join the group. I want to use a Ramps 1.6 board when I build my second printer, question is Marlin only seems to list Ramps 1.4 board in the boards tab, can I still use the...
View ArticleRe: Marlin 1.1.9 and Ramps 1.6
anything over 1.4 (at this time) is Chinese marketing for their closed source derivative. Luckily so far they all seem to be ramps 1.4 compatible. So just set it to ramps 1.4
View ArticleRe: Extruder retracts before start of print
I dont see any retractions commands in your startup code, but noticed these Extrusion commands AFTER the pure lines have printed: G1 F3000 E-3 ;LAYER_COUNT:121 ;LAYER:0 M107 G0 F7200 X67.718 Y55.125...
View ArticleWhich file is the root file?
I know this my sound silly to people that know exactly how to program in C++ and for the Arduino but, which file is the head vampire so to speak? I'm guessing Marlin_main.cpp right? I'm starting to...
View ArticleRe: Which file is the root file?
yes start in Marlin_main.cpp Arduino expects, the following two constructs which is not standard in C and variants.. void setup() { // put your setup code here, to run once: } void loop() { // put...
View ArticleRe: Which file is the root file?
What I am attempting to accomplish is to remove anything I am not using in my particular setup in order to be able to learn what files my specific printer and setup is using. This way when I need to...
View ArticleRe: Which file is the root file?
Marlin already does that. The configuration options enable and disable different pieces of code. If some option is not enabled, the code for it will not be compiled into the image. That is what the...
View ArticleRe: Machine Parse-able configuration(_adv).h files
For the purpose of this post I will not share alternative solutions to yours (because I do not have any haha). The idea is good, and if this was implemented could be of value. The question is, do the...
View ArticleIs P.I.N.D.A 2 support built into Marlin at this point
Does anyone know if the temperature compensating P.I.N.D.A. 2 probe is supported in 1.1.9 and/or 2.x Marlin? Or is that only a feature that is available in the Prusa version of the Marlin firmware? I...
View ArticlePiezo20 merlin A8 configuration.
Hi Got marlin 1.1.8 and anet A8 (stock mainboard) Tatara. Today i got my piezo20 with printed parts but don't know how to "implement" them to marlin for A8. Anyone got working marlin on A8 with...
View ArticleRe: Which file is the root file?
If I may add my two cents. Removing code is not a good idea, in any way - this may well end up causing you more problems than solutions. Dust and Roxy gave good answers/advice, this is what I would...
View Article