From 6d2d9baf35b1772409162e86f6d4b7f9374edb2e Mon Sep 17 00:00:00 2001 From: Zach Russell Date: Tue, 2 May 2023 01:27:27 -0600 Subject: =?UTF-8?q?Fixed=20OctoPrint=20=E2=80=98text=E2=80=99=20display=20?= =?UTF-8?q?when=20idle.=20(#607)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added moonraker support and temperature when idle * removed config change * Delete package-lock.json --- dummy-data/octoprint/api/printer | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 dummy-data/octoprint/api/printer (limited to 'dummy-data/octoprint/api') diff --git a/dummy-data/octoprint/api/printer b/dummy-data/octoprint/api/printer new file mode 100644 index 0000000..b8bbe98 --- /dev/null +++ b/dummy-data/octoprint/api/printer @@ -0,0 +1,27 @@ +{ + "temperature": { + "bed": { + "actual": 20.52, + "offset": 0, + "target": 0.0 + }, + "tool0": { + "actual": 20.44, + "offset": 0, + "target": 0.0 + } + }, + "state": { + "text": "Operational", + "flags": { + "operational": true, + "paused": false, + "printing": false, + "cancelling": false, + "pausing": false, + "error": false, + "ready": true, + "closedOrError": false + } + } +} \ No newline at end of file -- cgit v1.2.3