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

Update BBL configs to include support for air filtration by default for X1, X1C, X1E, and P1S #6964

Closed
wants to merge 42 commits into from

Conversation

ichisaur
Copy link

@ichisaur ichisaur commented Sep 30, 2024

Description

OrcaSlicer includes exhaust fan settings for each filaments, however these settings do not take effect on Bambu Labs machines that include chamber temperature regulation fans.
image

Further investigation into the g-code files produced reveals that the filament start g-code is responsible for using the air filtration setting and sending the appropriate M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} command to the printer. However, this command, even with the setting enabled, is never written to the final g-code file.

By default, Bambu Lab's filament profiles wrap this command up in {if activate_air_filtration[current_extruder] && support_air_filtration} clause, which always evaluates to false. As it turns out, the printer's have the support_air_filtration flag set to 0 in the fdm_machine_common.json file.

This change updates that value to 1 in the .json files for the X1, X1C, X1E, and P1S 0.4mm nozzles. This is then inherited to other nozzle sizes and user generated profiles. This is done by simply adding a line "support_air_filtration": "1", to the .json to override the inherited setting.

Fixes #6066

Screenshots/Recordings/Graphs

N/A

Tests

Updated this flag in a custom user config for the printer than tried generating the code file with Air Filtration enabled and set to 70%

The appropriate M106 P3 S178 appears in the filament start gcode section of the file.

@@ -24,6 +24,7 @@
"extruder_offset": [
"0x2"
],
"support_air_filtration": "1",
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is duplicated.
X1E already defined it

ichisaur and others added 27 commits October 12, 2024 10:14
* Fix wipe tower issues with SEMM and ramming turned off

* Purge tower last layer collision potential fix (for SEMM)

* Revert "Purge tower last layer collision potential fix (for SEMM)"

This reverts commit 9fc465c.
…lygon (SoftFever#6955)

Fix issue that `z` is not properly set in some cases when clipping the polygon (SoftFever#6933)

Apply the patch from https://sourceforge.net/p/polyclipping/bugs/160/
* Update OrcaSlicer_es.po
* Russian translation update

The next russian translation update OrcaSlicer V2.1.1 Official Release.
The work done to improve translation, corrected errors.
Thx.

* Russian translation update

The next russian translation update OrcaSlicer v2.2.0-beta2.
The work done to improve translation, corrected errors.
Thx.

* Russian translation update

The next russian translation update OrcaSlicer V2.2.0-beta2 + 3 lines in text.js
The work done to improve translation, corrected errors.
Thx.
…oftFever#6952)

* Qidi.json

* Qidi.json

* Qidi.json

* new change

new change
… be changed after parsing get_last_z_from_gcode
*Some max speeds/accelerations changes for the 0.4 nozzle was left out as none of the other nozzles had these max speeds/accelerations
@ichisaur
Copy link
Author

Uh I definitely screwed something up here... closing and recreating pull request

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

Successfully merging this pull request may close these issues.

Filament Setting: Exhaust Fan - Overridden by Start G-code