eukatree / Bambu_CustomGCode

Custom g-code for Bambu Studio
GNU General Public License v3.0
90 stars 14 forks source link

wrong positions for A1 mini #10

Open Hillbilly-Phil opened 2 months ago

Hillbilly-Phil commented 2 months ago

Found some issues on the A1 mini code and patched them as good as I could. Runs smooth for me now:

-flushing takes place on wrong side of the bed --> added the right x coordinate -extruder doesn't move far enough to the right to succesfully cut the filament --> added a slow move to cut the filament

Instructions for changing the filament with this modified gcode:

;===== Instructions: ===== ; when print has paused, go into control ; set the nozzel temp to the temp you were printing with ; unload the filament by pushing on the upper extruder-button ; load the new filament by pushing on the lower extruder-button ; resume the print (flushing will happen next, flushing volumes can be set in Bambu Studio as if using an AMS)

;===Bambu Lab A1 mini 0.4 GITHUB NO.txt

pakonambawan commented 1 month ago

i polished it right here. now after it cuts and goes back to it's place to poop, now it retracts the filament so just pull it out then just place another filament back in.

A1 mini MMS auto pause.txt

khristangrey commented 1 month ago

Will this work on the A1?

pakonambawan commented 1 month ago

Will this work on the A1?

I haven't tried yet but I think no. A1 mini have a smaller build plate so the gcode positions to where the cutter and poop ejector are different.

khristangrey commented 1 month ago

Got it. I want it to work on the A1. Can you point on what line I should change for the cutter positions and cutter? I have no experience on working on gcodes.

Hillbilly-Phil commented 1 month ago

Take a look at these lines:

[…] G1 X0 Y90 F18000 G1 X-13.5 F9000 G1 E-13.5 F900

; pause for user to load and press resume M400 U1 […]

Meaning: G1 = linear move to Position X Y Z with speed F G1 E-… = Retract Filament by … mm M400 U1 = Pauses the print till user resumes

So copy paste the whole code open in an text editor and play Around with the Coordinates X Y Z till you are satisfied with the positions. XYZ corespond to the xyz in the shown in the slicer. cheers

Hillbilly-Phil commented 1 month ago

Uff sorry, also take a look at these lines (a bit above the previous ones): […] G1 X180 F18000 G1 X197 F500 G1 X180 F500 […]

These are there to move the toolhead to the cutting position! so take your max printable X distance and add 17~19mm to that.

khristangrey commented 1 month ago

I got it to work! I got the coordinates from the original gcode of Bambu A1. Thank you so much! A1 No AMS.txt

Dennis-Q commented 3 weeks ago

@Hillbilly-Phil @pakonambawan and @eukatree thank you for sharing all of this.

The instructions in the gcode was really useful (to not use the 'unload' / 'load' option). Also the finetuning done look great. I took the time to use your modifications and combine them with the latest version that is supplied with the latest Bambu Studio.

I have put your names in the gcode file and README.md since you are the contributors to the file as well. The code on the github has been tested many times and works great for me with the latest Bambu Studio and A1 Mini firmware. Still, I am open to any suggestions for improvements if you have any.

My approach with the gcode file is to stay with the original code as much as possible and only change what is really mandatory to change (e.g. the gcode that causes the printer to crash). Also I tried to document what has been removed, added or moved, within the file. That could help later to understand the changes and why they were done. :)

You can find the code (for the A1 mini) here: https://github.com/Dennis-Q/bambu

wundergeu commented 2 weeks ago

Thanks for your input concerning the necessary changes for the A1 (mini).

Out of curiosity: Could I also just edit the 'Change Filament G-Code' section to a single line of 'M400 U1' and then load/unload the filament manually with the menu buttons on the display?

Dennis-Q commented 2 weeks ago

Thanks for your input concerning the necessary changes for the A1 (mini).

Out of curiosity: Could I also just edit the 'Change Filament G-Code' section to a single line of 'M400 U1' and then load/unload the filament manually with the menu buttons on the display?

Nope, that's what I thought but things will not work as expected. One of the reasons is that an important part of the code is only executed when the AMS is connected and responding, which it is not.

Unload en load should not be used. Use Control, Raise Temp and Extruder buttons as in the gcode instructions...

wundergeu commented 2 weeks ago

Nope, that's what I thought but things will not work as expected. One of the reasons is that an important part of the code is only executed when the AMS is connected and responding, which it is not.

Unload en load should not be used. Use Control, Raise Temp and Extruder buttons as in the gcode instructions...

Alright, thanks for the quick response. Gonna adapt the code for the A1. Your comments in the gcode make it way more understandable, so thanks for that.

Joseluisuuj commented 1 week ago

¡Lo hice funcionar! Obtuve las coordenadas del código G original de Bambu A1. ¡Muchas gracias! A1 No AMS.txt

hola, me he dado cuenta que la pausa la hace bien pero cuando se desplaza a la esquina a cortar el filamento no llega a cortarlo ya que no la presiona lo suficiende. seria cosa de modificarlo para que avance mas y por ello la presione un poco mas y corte el filamento. por lo demas el gcode para la bambulab A1 va bien

english: Hello, I have realized that the pause works well but when you move to the corner to cut the filament, it does not cut it because you do not press it hard enough. It would be a matter of modifying it so that it advances more and therefore press it a little more and cut the filament. Otherwise the gcode for the bambulab A1 works fine

wundergeu commented 1 week ago

english: Hello, I have realized that the pause works well but when you move to the corner to cut the filament, it does not cut it because you do not press it hard enough.

Same for me. It doesn't seem to be "strong" enough to push the cutting lever. I don't know why it seems to work for others, but not for some. I deleted the gcode for the cutting motion and just use the menu buttons to unload/load when it is paused.

Also: In the gcode of @khristangrey the cutting motion starts at X256 (line 17), whereas it it needs to start at X267 for my A1. Might be the same for you. So you might need to change that line.

Joseluisuuj commented 1 week ago

@khristangrey Could you modify the gcode so that it would push the lever well and cut the filament? thanks in advance

khristangrey commented 1 week ago

@Joseluisuuj Yes. I have not tried it again. But you are correct, it does not cut the filament. Will adjust it and will repost it here.

Joseluisuuj commented 9 hours ago

@khristangrey you ajust the gcode??

khristangrey commented 4 hours ago

Hi I just got my hands on it. Been busy this week. Working on it now.

khristangrey commented 3 hours ago

So I tried to adjust the cutting motion but it won't work. The maximum movement I can do is 283 in this line:

[…] G1 X256 F18000 G1 X283 F500 //here G1 X256 F500 […]

What happens if I add more, it grinds. Don't know why I can't make it to cut. For now, I would be manually pushing the cutting lever to cut the filament.