diff --git a/atom.xml b/atom.xml index 92f866cb95..1f33c01f87 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
Here the name is 0b11000102ef9f210010f70 and you can verify that it works from the frontend.
-Then you should update your configuration to:
-yaml
-light:
- platform: rfxtrx
- devices:
- 0b11000102ef9f210010f70:
- name: device_name
-
Example configuration:
-yaml
-# Example configuration.yaml entry
-light:
- platform: rfxtrx
- devices:
- 0b11000f10e9e5660b010f70:
- name: Light1
- 0b1100100f29e5660c010f70:
- name: Light_TV
-
light: + platform: rfxtrx + devices: + 0b11000102ef9f210010f70: + name: device_name +
Example configuration:
+ +# Example configuration.yaml entry +light: + platform: rfxtrx + devices: + 0b11000f10e9e5660b010f70: + name: Light1 + 0b1100100f29e5660c010f70: + name: Light_TV +
Configuration variables:
diff --git a/components/zwave/index.html b/components/zwave/index.html index e636b49ea8..19c43cfb05 100644 --- a/components/zwave/index.html +++ b/components/zwave/index.html @@ -119,15 +119,15 @@$ git clone https://github.com/OpenZWave/python-openzwave.git $ cd python-openzwave $ git checkout python3 -$ PYTHON_EXEC=`which python3` make build -$ sudo PYTHON_EXEC=`which python3` make install +$ PYTHON_EXEC=$(which python3) make build +$ sudo PYTHON_EXEC=$(which python3) make install
Instead of make install
, you can alternatively build your own python-openzwave package which can be easily uninstalled:
-$ sudo PYTHON_EXEC=`which python3` checkinstall --pkgname python-openzwave --pkgversion 1.0 --provides python-openzwave
+$ sudo PYTHON_EXEC=$(which python3) checkinstall --pkgname python-openzwave --pkgversion 1.0 --provides python-openzwave
make install
, you can alternatively build your own pytho
-Depending on what’s plugged into your USB ports, the name found above may change. You an lock in a name, such as /dev/zwave
, by following these instructions.
+Depending on what’s plugged into your USB ports, the name found above may change. You can lock in a name, such as /dev/zwave
, by following these instructions.