diff options
Diffstat (limited to 'docs/customservices.md')
-rw-r--r-- | docs/customservices.md | 12 |
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 | ||
37 | If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. | 37 | If 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 | ||
389 | The OctoPrint service only needs an `apikey` & `url` and optionally a `display` option. | 389 | The 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 | |||
391 | Moonraker'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 | ``` |