parent
d22afe8eb9
commit
a5ab27eaec
10
README.md
10
README.md
|
@ -51,6 +51,7 @@ If you've forgotten what items have been identified, you can ask Mycroft:
|
|||
- *"Hey Mycroft, list openhab items"*
|
||||
|
||||
## Versions Change Log
|
||||
* 1.2 addedd python 3 support
|
||||
* 1.1 added status request to Switchable items
|
||||
* 1.0 added support to item tagged as Thermostat, CurrentTemperature, CurrentHumidity
|
||||
* 0.9 added dimming command to item tagged as Lighting
|
||||
|
@ -58,6 +59,15 @@ If you've forgotten what items have been identified, you can ask Mycroft:
|
|||
|
||||
## Installation
|
||||
|
||||
From 18.2.5b mycroft-core release it is possible to install the skill using the voice command:
|
||||
- *"Hey Mycroft, install openhab"*
|
||||
|
||||
or via the [msm](https://mycroft.ai/documentation/msm/) command:
|
||||
```shell
|
||||
msm install openhab
|
||||
```
|
||||
|
||||
To manually install the skill:
|
||||
Clone this repository into your `~/.mycroft/skills` directory.
|
||||
Then install the dependencies inside your mycroft virtual environment:
|
||||
|
||||
|
|
14
USAGE.md
14
USAGE.md
|
@ -16,7 +16,17 @@ The skill currently supportes the English (U.S.) and English (U.K.) languages bu
|
|||
|
||||
### Skill Installation
|
||||
|
||||
The openHAB skill has to be installed on your Mycroft instance, please refer to the [official documentation](https://docs.mycroft.ai/skills.and.features/adding.skills) to learn how to install a skill.
|
||||
The openHAB skill has to be installed on your Mycroft instance, please refer to the [official documentation](https://mycroft.ai/documentation/msm/) to learn how to install a skill.
|
||||
|
||||
From 18.2.5b mycroft-core release it is possible to install the skill using the voice command:
|
||||
- *"Hey Mycroft, install openhab"*
|
||||
|
||||
or via the [msm](https://mycroft.ai/documentation/msm/) command:
|
||||
```shell
|
||||
msm install openhab
|
||||
```
|
||||
|
||||
To manually install the skill:
|
||||
|
||||
Clone the [skill repository](https://github.com/openhab/openhab-mycroft.git) into the Mycroft skills directory,
|
||||
then trigger installation of needed dependencies:
|
||||
|
@ -29,7 +39,7 @@ cd skill-openhab
|
|||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
If on [picroft](https://docs.mycroft.ai/development/installation/raspberry.pi), use the skills directory `/opt/mycroft/skills` and skip the `workon mycroft` command.
|
||||
If on [picroft](https://mycroft.ai/documentation/picroft/), use the skills directory `/opt/mycroft/skills` and skip the `workon mycroft` command.
|
||||
|
||||
### Skill Configuration
|
||||
|
||||
|
|
Reference in New Issue