编写 G 代码:打印结束时发出声音警报

3D打印 ultimaker-cura g代码
2021-04-24 12:03:29

通常,预先生成的 G 代码足以开始和结束。然而,有时我们想要一些不同的东西。在这种情况下:如何在打印结束时、将打印机置于最终位置后以及当床达到“安全”30°C 时生成类似 4 声哔哔声的声音警报?

2个回答

让我们一一放上部分:

  • 等待床温达到 30 °C: M190 R30
  • 播放 1/5 秒的哔哔声: M300 S440 P200
  • 等待 1/5 秒: G4 P200

这给出了:

M190 R30
M140 S0
M300 S440 P200
G4 P200
M300 S440 P200
G4 P200
M300 S440 P200
G4 P200
M300 S440 P200
G4 P200

仅针对 0scar:

M300 S1396.91 P400 ;f7
G4 P400
M300 S1661.22 P600 ;as7
M300 S1396.91 P400 ;f7
M300 S1396.91 P200 ;f7
M300 S1864.66 P400 ;b7
M300 S1244.51 P400 ;es7
M300 S1396.91 P400 ;f7
G4 P400
M300 S2093.00 P400 ;c8
M300 S1396.91 P400 ;f7
M300 S1396.91 P200 ;f7
M300 S2217.46 P400 ;des8
M300 S2093.00 P400 ;c8
M300 S1661.22 P400 ;as7
M300 S1396.91 P400 ;f7
M300 S2093.00 P400 ;c8
M300 S2793.83 P400 ;f8
M300 S1244.51 P400 ;es7
M300 S1244.51 P200 ;es7
M300 S1046.50 P400 ;c7
M300 S1567.98 P400 ;g7
M300 S1396.91 P1600 ;f7

Trish 的版本很好,但要等待床温达到 30 °C ( M190 R30),然后再将温度设置为 0 °C ( M140 S0)

所以这是我的版本:

M104 S0 ;extruder heater off
M140 S0 ;heated bed heater off 
G91 ;relative positioning
G1 E-1 F300  ;retract the filament a bit before lifting the nozzle, to release some of the pressure
G1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more
G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way
G1 Y150 F5000 ;move completed part out
M84 ;steppers off
G90 ;absolute positioning
M190 R30 ;waits until cooling to 30 °C
M300 S300 P1000 ;beep
M300 S300 P1000 ;beep
M300 S300 P1000 ;beep
M300 S300 P1000 ;beep