From 54c32c52f6e7dcbc0acdb695d73fd8ead1528643 Mon Sep 17 00:00:00 2001 From: Ian Paschal Date: Mon, 23 Apr 2018 11:22:11 +0200 Subject: [PATCH] CURA-5221 Added S5 ID code --- cura/PrinterOutput/NetworkedPrinterOutputDevice.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py index 9da57a812e..86af368a86 100644 --- a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py +++ b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py @@ -59,7 +59,8 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice): printer_type = self._properties.get(b"machine", b"").decode("utf-8") printer_type_identifiers = { "9066": "ultimaker3", - "9511": "ultimaker3_extended" + "9511": "ultimaker3_extended", + "9051": "ultimaker_s5" } self._printer_type = "Unknown" for key, value in printer_type_identifiers.items():