mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
First steps to ensure that the Discover UM3 action works with new architecture
CL-541
This commit is contained in:
parent
1b8caa7a21
commit
4197f18fc1
4 changed files with 65 additions and 27 deletions
|
@ -1,8 +1,11 @@
|
|||
from cura.PrinterOutput.NetworkedPrinterOutputDevice import NetworkedPrinterOutputDevice
|
||||
|
||||
|
||||
class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice):
|
||||
def __init__(self, device_id, address, properties, parent = None):
|
||||
super().__init__(device_id = device_id, address = address, parent = parent)
|
||||
super().__init__(device_id = device_id, address = address, properties=properties, parent = parent)
|
||||
|
||||
def _update(self):
|
||||
super()._update()
|
||||
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue