"
@@ -237,7 +237,7 @@ media_player:
-This example and the following requires to have the [script.json-cec](https://github.com/joshjowen/script.json-cec) plugin installed on your kodi player. It'll also expose the endpoints standby, toggle and activate without authentication on your kodi player. Use this with caution.
+This example and the following requires to have the [script.json-cec](https://github.com/joshjowen/script.json-cec) plugin installed on your Kodi player. It'll also expose the endpoints standby, toggle and activate without authentication on your Kodi player. Use this with caution.
@@ -340,7 +340,7 @@ port:
default: 8080
type: integer
proxy_ssl:
- description: Connect to kodi with HTTPS. Useful if Kodi is behind an SSL proxy.
+ description: Connect to Kodi with HTTPS. Useful if Kodi is behind an SSL proxy.
required: false
default: "`false`"
type: boolean
diff --git a/source/_integrations/onkyo.markdown b/source/_integrations/onkyo.markdown
index 7641cd3515e..11ed3559705 100644
--- a/source/_integrations/onkyo.markdown
+++ b/source/_integrations/onkyo.markdown
@@ -55,32 +55,32 @@ sources:
List of source names:
-- video1
-- video2
-- video3
-- video4
-- video5
-- video6
-- video7
-- dvd
-- bd-dvd
-- tape1
-- tv-tape
-- tape2
-- phono
-- cd
-- tv-cd
-- fm
-- am
-- tuner
-- dlna
-- internet-radio
-- usb
-- network
-- universal-port
-- multi-ch
-- xm
-- sirius
+- `video1`
+- `video2`
+- `video3`
+- `video4`
+- `video5`
+- `video6`
+- `video7`
+- `dvd`
+- `bd-dvd`
+- `tape1`
+- `tv-tape`
+- `tape2`
+- `phono`
+- `cd`
+- `tv-cd`
+- `fm`
+- `am`
+- `tuner`
+- `dlna`
+- `internet-radio`
+- `usb`
+- `network`
+- `universal-port`
+- `multi-ch`
+- `xm`
+- `sirius`
If your source is not listed above, and you want to figure out how to format that source name so you can map its entry, you can use the `onkyo-eiscp` Python module to discover the exact naming needed. First, change your receiver's source to the one that you need to define, and then run:
diff --git a/source/_integrations/squeezebox.markdown b/source/_integrations/squeezebox.markdown
index cf50b3435fc..c47723a0615 100644
--- a/source/_integrations/squeezebox.markdown
+++ b/source/_integrations/squeezebox.markdown
@@ -60,7 +60,7 @@ transporter_toslink:
### Service `call_method`
-Call a custom Squeezebox JSONRPC API.
+Call a custom Squeezebox JSON-RPC API.
See documentation for this interface on `http://HOST:PORT/html/docs/cli-api.html?player=` where HOST and PORT are the host name and port for your Logitech Media Server.
@@ -72,10 +72,10 @@ See documentation for this interface on `http://HOST:PORT/html/docs/cli-api.html
This service can be used to integrate any Squeezebox action to an automation.
-It can also be used to target a Squeezebox from IFTT (or DialogFlow, Alexa...).
+It can also be used to target a Squeezebox from IFTTT (or Dialogflow, Alexa...).
-For example, to play an album from your collection, create an IFTT applet like this:
+For example, to play an album from your collection, create an IFTTT applet like this:
- Trigger: Google assistant, with sentence: `I want to listen to album $`
- Action: JSON post query with such JSON body:
`{ "entity_id": "media_player.squeezebox_radio", "command": "playlist", "parameters": ["loadtracks", "album.titlesearch={{TextField}}"] }`
-This can work with title search and basically any thing. The same wouldn't have worked by calling directly Squeezebox server as IFTT cannot escape the text field.
+This can work with title search and basically any thing. The same wouldn't have worked by calling directly Squeezebox server as IFTTT cannot escape the text field.
diff --git a/source/_integrations/universal.markdown b/source/_integrations/universal.markdown
index 74fd4128e1d..6a0a7ba1635 100644
--- a/source/_integrations/universal.markdown
+++ b/source/_integrations/universal.markdown
@@ -135,7 +135,7 @@ media_player:
#### Kodi CEC-TV control
-In this example, a [Kodi Media Player](/integrations/kodi) runs in a CEC capable device (OSMC/OpenElec running in a Raspberry Pi 24/7, for example), and, with the JSON-CEC Kodi addon installed, it can turn on and off the attached TV.
+In this example, a [Kodi Media Player](/integrations/kodi) runs in a CEC capable device (OSMC/OpenElec running in a Raspberry Pi 24/7, for example), and, with the JSON-CEC Kodi add-on installed, it can turn on and off the attached TV.
We store the state of the attached TV in a hidden [input boolean](/integrations/input_boolean/), so we can differentiate the TV being on or off, while Kodi is always 'idle', and use the universal media player to render its state with a template. We can hide the Kodi Media Player too, and only show the universal one, which now can differentiate between the 'idle' and the 'off' state (being the second when it is idle and the TV is off).