Skip to content

Commit

Permalink
Have virtual printer report back with "B:" in line
Browse files Browse the repository at this point in the history
Similar to Marlin with enabled COREXY. Useful for testing
parser behaviour.
  • Loading branch information
foosel committed Jun 15, 2016
1 parent 0bb467e commit 0274b0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/octoprint/plugins/virtual_printer/virtual.py
Expand Up @@ -254,7 +254,7 @@ def _processIncoming(self):
self._deleteSdFile(filename)
elif "M114" in data:
# send dummy position report
output = "C: X:10.00 Y:3.20 Z:5.20 E:1.24"
output = "X:10.00 Y:3.20 Z:5.20 E:1.24 Count: A:1000 B:320 C:1040"
if not self._okBeforeCommandOutput:
output = "ok " + output
self.outgoing.put(output)
Expand Down

0 comments on commit 0274b0f

Please sign in to comment.