Closed jpcurti closed 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))
Gcode command is M140, not M104. Reopening PR
Go fast and break things :)