aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
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 /docs
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 'docs')
-rw-r--r--docs/customservices.md12
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/customservices.md b/docs/customservices.md
index 31d302b..665c6f5 100644
--- a/docs/customservices.md
+++ b/docs/customservices.md
@@ -31,7 +31,7 @@ within Homer:
31 - [Speedtest Tracker](#SpeedtestTracker) 31 - [Speedtest Tracker](#SpeedtestTracker)
32 - [What's Up Docker](#whats-up-docker) 32 - [What's Up Docker](#whats-up-docker)
33 - [SABnzbd](#sabnzbd) 33 - [SABnzbd](#sabnzbd)
34 - [OctoPrint](#sabnzbd) 34 - [OctoPrint](#octoprint)
35 - [Tdarr](#tdarr) 35 - [Tdarr](#tdarr)
36 36
37If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. 37If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page.
@@ -384,15 +384,17 @@ the "Config" > "General" section of the SABnzbd config in the SABnzbd web UI.
384 downloadInterval: 5000 # (Optional) Interval (in ms) for updating the download count 384 downloadInterval: 5000 # (Optional) Interval (in ms) for updating the download count
385``` 385```
386 386
387## OctoPrint 387## OctoPrint/Moonraker
388 388
389The OctoPrint service only needs an `apikey` & `url` and optionally a `display` option. 389The OctoPrint/Moonraker service only needs an `apikey` & `endpoint` and optionally a `display` or `url` option. `url` can be used when you click on the service it will launch the `url`
390
391Moonraker's API mimmicks a few of OctoPrint's endpoints which makes these services compatible. See https://moonraker.readthedocs.io/en/latest/web_api/#octoprint-api-emulation for details.
390 392
391```yaml 393```yaml
392- name: "Octoprint" 394- name: "Octoprint"
393 logo: "https://cdn-icons-png.flaticon.com/512/3112/3112529.png" 395 logo: "https://cdn-icons-png.flaticon.com/512/3112/3112529.png"
394 apikey: "xxxxxxxxxxxx" # insert your own API key here. Request one from https://openweathermap.org/api. 396 apikey: "xxxxxxxxxxxx" # insert your own API key here.
395 url: "http://192.168.0.151:8080" 397 endpoint: "http://192.168.0.151:8080"
396 display: "text" # 'text' or 'bar'. Default to `text`. 398 display: "text" # 'text' or 'bar'. Default to `text`.
397 type: "OctoPrint" 399 type: "OctoPrint"
398``` 400```