jpcurti / ender3-v3-se-klipper-with-display

Modified klipper for ender3-v3 se with stock display support.
GNU General Public License v3.0
74 stars 10 forks source link

fix typo on bed temp command that caused a crash when setting a bed temp #37

Closed jpcurti closed 6 months ago

jpcurti commented 6 months ago

Go fast and break things :)

    def setExtTemp(self, target, toolnum=0):
        self.sendGCode("M104 T%s S%s" % (toolnum, str(target)))

    def setExtTemp(self, target): # This should be setBedTemp
        self.sendGCode('M104 S' + str(target))
jpcurti commented 6 months ago

Gcode command is M140, not M104. Reopening PR