bradcfisher / OctoPrint-ExcludeRegionPlugin

OctoPrint plugin that adds the ability to prevent printing within rectangular or circular regions of the currently active gcode file.
GNU Affero General Public License v3.0
55 stars 5 forks source link

Temperature commands are filtered out wrongly #68

Closed DanielYWoo closed 1 year ago

DanielYWoo commented 1 year ago

Hi,

I have some gcode commands to warm up the extruder and bed before the auto-leveling. The code starts like this

M82 ;absolute extrusion mode
M140 S70 ; Set Heat Bed temperature
M104 S160; start warming extruder to 160
G28 ; Home all axes
G29 ; Auto bed-level (BL-Touch)
....

But the M140 and M104 commands are filtered out with this plugin on my Ender3S/Marlin printer. Do you have a document about the filtering?

Thanks, Daniel