aboutsummaryrefslogtreecommitdiffhomepage
path: root/dummy-data/octoprint/api/printer
diff options
context:
space:
mode:
authorZach Russell <zachatrocity@gmail.com>2023-05-02 01:27:27 -0600
committerGitHub <noreply@github.com>2023-05-02 09:27:27 +0200
commit6d2d9baf35b1772409162e86f6d4b7f9374edb2e (patch)
tree4c843a75f992a360b5cf0ba4fd84afe681e087d3 /dummy-data/octoprint/api/printer
parent1707f5adaddb90a126be4b60284921facb6d37ff (diff)
downloadhomer-6d2d9baf35b1772409162e86f6d4b7f9374edb2e.tar.gz
homer-6d2d9baf35b1772409162e86f6d4b7f9374edb2e.tar.zst
homer-6d2d9baf35b1772409162e86f6d4b7f9374edb2e.zip
Fixed OctoPrint ‘text’ display when idle. (#607)
* Added moonraker support and temperature when idle * removed config change * Delete package-lock.json
Diffstat (limited to 'dummy-data/octoprint/api/printer')
-rw-r--r--dummy-data/octoprint/api/printer27
1 files changed, 27 insertions, 0 deletions
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 @@
1{
2 "temperature": {
3 "bed": {
4 "actual": 20.52,
5 "offset": 0,
6 "target": 0.0
7 },
8 "tool0": {
9 "actual": 20.44,
10 "offset": 0,
11 "target": 0.0
12 }
13 },
14 "state": {
15 "text": "Operational",
16 "flags": {
17 "operational": true,
18 "paused": false,
19 "printing": false,
20 "cancelling": false,
21 "pausing": false,
22 "error": false,
23 "ready": true,
24 "closedOrError": false
25 }
26 }
27} \ No newline at end of file