chiark / gitweb /
Update config wizard steps to reflect schema in M3
[cura.git] / Cura / serialCommunication.py
index efc6e72d38f0836722117a5cca9effd2348faa53..4add5f2314d8c1efd58ac48055ecc5fae0d08a05 100644 (file)
@@ -68,6 +68,10 @@ class serialComm(object):
                                self._comm.sendCommand(line[1])
                        elif line[0] == 'START':
                                self._comm.printGCode(self._gcodeList)
+                       elif line[0] == 'PAUSE':
+                               self._comm.setPause(True)
+                       elif line[0] == 'RESUME':
+                               self._comm.setPause(False)
                        else:
                                sys.stderr.write(str(line))