Add function to pre-head bed

This makes a PUT-request to the printer with the new API function call.

Contributes to issue CURA-3161.
This commit is contained in:
Ghostkeeper 2017-02-07 13:18:41 +01:00
parent f24d778cc5
commit cfbcf56739
No known key found for this signature in database
GPG key ID: C5F96EE2BC0F7E75

View file

@ -240,6 +240,18 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
def ipAddress(self):
return self._address
## Pre-heats the heated bed of the printer.
#
# \param temperature The temperature to heat the bed to, in degrees
# Celsius.
# \param duration How long the bed should stay warm, in seconds.
def preheatBed(self, temperature, duration):
url = QUrl("http://" + self._address + self._api_prefix + "printer/bed/pre_heat")
data = """{"temperature": "{temperature}", "timeout": "{timeout}"}""".format(temperature=temperature, timeout=duration)
put_request = QNetworkRequest(url)
put_request.setHeader(QNetworkRequest.ContentTypeHeader, "application/json")
self._manager.put(put_request, data.encode())
def _stopCamera(self):
self._camera_timer.stop()
if self._image_reply: