* Update sensor.fritzbox_callmonitor.markdown
Added a configuration example for callmonitor push notifications
* Update sensor.fritzbox_callmonitor.markdown
Added raw/endraw as suggested by @fabaff. Elaborated notification text a bit more.
The docs previously suggested a "generalized" service name for updating flux manually, when the name is actually determined by the name of the switch in the config.
The "state" used to be an alias for "to" but this was deprecated to make the
meaning more clear.
This commit updates the examples to no longer use the deprecated name.
* Update light.markdown
I had a hard time setting up attributes to entities until I research for some other user's examples and saw they were using "data:". I feel like this should be mentioned or at least exposed with an example. I saw being used in 2 different ways:
```yaml
action:
service: light.turn_on
data:
entity_id: light.kitchen_lights
brightness: 200
```
```yaml
action:
- service: light.turn_on
entity_id: light.kitchen_lights
data:
brightness: 200
```
I'm not sure which one is the best/correct way but tried with both and they work
* Fix typos
I had to explicitly set `listen_port: 80` for Google Home to work properly. It was defaulting to port 8300 without that declaration.
Also the docs should be more explicit in the Troubleshooting section because the URLs you need to confirm for Google Home are actually
- http://<HA IP Address>:80/description.xml
- http://<HA IP Address>:80/api/pi/lights
* Update remote.itach.markdown
add links to API. note that GC devices use same IR instructions accross other products and this componenet works on gc-100 as well as itach. service call example
* Make list
* fixing typo in rest switch template example
* adding example with template to docs
* adding generic info about response JSON
* making requested changes
* changing file mode, removing response parsing information
* updating docs with generic info and link to specific topic
* fixing file permissions
In details it is properly stated to use `071a0000` prefix but in sample it was `070a0000`, this caused me a few hesitations during my initial setup, fixing it for others ;)