BCN3D / BCN3DSigma-Firmware

Custom Marlin version for the brand new BCN3D Sigma from BCN3D Technologies
https://bcn3d.com
GNU General Public License v3.0
89 stars 74 forks source link

"Serial print job" screen should only show when printer is actually printing #216

Closed JanneMantyharju closed 5 years ago

JanneMantyharju commented 5 years ago

I'm using Sigma in combination with Octoprint. The newest firmware introduced the "Serial Print Job" screen which is visible when printer is printing from usb. The only problem is that this screen shows up as soon as the external device opens connection and after that it's not possible to use the printers screen to command filament change etc.

I'd like to have this changed that the screen is visible only when the gcode is streaming from external device

AlejandroGarcia92 commented 5 years ago

Hi @JanneMantyharju,

Configure Octoprint with the following mods:

; disable motors
M84

;disable all heaters
{% snippet 'disable_hotends' %}
{% snippet 'disable_bed' %}
;disable fan
M106 S0
;Remove printing by serial message (debug)
M84

Tell me if it works for you.

JanneMantyharju commented 5 years ago

Thanks, this seems to work! It would be great to document this somewhere

AlejandroGarcia92 commented 5 years ago

Wiki could be a good place.