You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,22 +19,22 @@ pipx install poetry
19
19
pipx ensurepath
20
20
```
21
21
22
-
You will need to log out and log back in for the PATh chnages to take effect.
22
+
You will need to log out and log back in for the PATH changes to take effect.
23
23
You can then install the necessary Python dependencies:
24
24
25
25
```sh
26
26
cd mqtt-bed
27
27
poetry install
28
28
```
29
29
30
-
This will automatically istall all of the necessary dependencies outlined in the `pyproject.toml` file. If you prefer not to use Poetry, you can still do the typical `pip3 install .` but will need to maintain your own virtual environment.
30
+
This will automatically install all of the necessary dependencies outlined in the `pyproject.toml` file. If you prefer not to use Poetry, you can still do the typical `pip3 install .` but will need to maintain your own virtual environment.
31
31
32
32
33
33
## Configuration
34
-
To configure all of the setting sused in the program, such as the MQTT credentials, bluetooth address of your bed, etc, you will need to modify the values in `config.yaml`. This setp is **essential** to getting your integration functional.
34
+
To configure all of the settings used in the program, such as the MQTT credentials, bluetooth address of your bed, etc, you will need to modify the values in `config.yaml`. This setup is **essential** to getting your integration functional.
35
35
36
36
### Bed address
37
-
There are numerous ways to get ther address for your bed. If you can already control the bed via your phone, check the list of paired bluetooth devices, and find the address for your bed's connection in the format `00:00:00:00:00:00`.
37
+
There are numerous ways to get the address for your bed. If you can already control the bed via your phone, check the list of paired bluetooth devices, and find the address for your bed's connection in the format `00:00:00:00:00:00`.
38
38
39
39
If you have a Serta bed, and are using the [Serta MP Remote app](https://apk-dl.com/serta-mp-remote/), you can find the mac address there.
40
40
@@ -154,7 +154,7 @@ If your adjustable bed is not integrated into this repository yet, and you creat
154
154
155
155
To integrate your own bed, you should follow the examples in `controllers/dewertokin.py` and `controllers/linak.py` utilizing the bluepy package rather than the deprecated pygatt/gatttool integrations.
156
156
157
-
Just cretae your own controller class with an `__init__` function to kick off the connection to your bed, and add your contorller to the list of valid controllers in the `main()` function of `mqtt-bed.py`.
157
+
Just create your own controller class with an `__init__` function to kick off the connection to your bed, and add your controller to the list of valid controllers in the `main()` function of `mqtt-bed.py`.
0 commit comments