Disables a set of axes on the bot
(self, codes, flags, comment)
| 248 | ) |
| 249 | |
| 250 | def disable_axes(self, codes, flags, comment): |
| 251 | """Disables a set of axes on the bot |
| 252 | """ |
| 253 | self.s3g.toggle_axes(makerbot_driver.Gcode.parse_out_axes(flags), False) |
| 254 | |
| 255 | def display_message(self, codes, flags, comment): |
| 256 | """Given a comment, displays a message on the bot. |
nothing calls this directly
no test coverage detected