(self)
| 718 | return None |
| 719 | |
| 720 | def capabilities(self): |
| 721 | ppm = printerProfileManager() |
| 722 | capabilities = ['remotePrint', # Indicates whether this device supports starting a print job remotely |
| 723 | 'multiExtruders', # Support for multiple extruders |
| 724 | 'allowPrintFile', # Support for printing a printfile not belonging to any design |
| 725 | 'acceptPrintJobId' # Accept created print job from cloud, |
| 726 | ] |
| 727 | if ppm.data['check_clear_bed']: |
| 728 | capabilities.append('cleanState') # Support bed not clean state |
| 729 | return capabilities |
no test coverage detected