Skip to content

Commit

Permalink
updated README with simplified config
Browse files Browse the repository at this point in the history
updated configuration with 0.61 requirements (no entity_id in templates)
  • Loading branch information
elric91 committed Jan 22, 2018
1 parent 2a1d12f commit 55f1d43
Showing 1 changed file with 1 addition and 34 deletions.
35 changes: 1 addition & 34 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,10 @@
# Custom components for Home Assistant
Custom components for Home Assistant

## Component ZiGate : ZiGate interface
### /!\ still beta stage ... for developpers /!\
A new component which enable to grab Zigbee data through the ZiGate (http://zigate.fr)

To install, copy the following files in your hass configuration folder, under 'custom\_components':
- zigate/\_\_init\_\_.py
- zigate/const.py
- sensor/zigate.py
- switch/zigate.py

Install pyzigate pip package which is a requirement :
```
pip3 install pyzigate
```
if you get a 'bd_wheel' error, do this before installing pyzigate :
```
pip3 install wheel
```
To install, simply copy all the files in your hass configuration folder, under 'custom\_components' and adapt your configuration.yaml


To pair a new device, go in developer/services (the little remote in the menu) and call the 'zigate.permit\_join' service.
Expand Down Expand Up @@ -46,7 +32,6 @@ sensor:
sensors:
pressure1:
friendly_name: 'LivingRoom Atmospheric Pressure'
entity_id: sensor.livingroom_sensor
unit_of_measurement: 'mb'
value_template: '{{ states.sensor.livingroom_sensor.attributes.pressure }}'
Expand All @@ -56,21 +41,3 @@ switch:
address: c3d401
default_state: 'event'
```


## Component : Rotel TCP (roteltcp.py)
A media_player platform that can be used through HASS to :
- turn on and off the amplifier
- adjust volume
- change source
- check status

To install, copy rotel.py in your hass configuration folder, under 'custom\_components/media\_player'
i.e. /home/user/.homeassistant/custom\_components/media\_player/rotel.py

Example minimal config (in configuration.yaml, dummy IP to be updated) :
```
media_player:
- platform: roteltcp
host: 192.168.1.12
```

0 comments on commit 55f1d43

Please sign in to comment.