Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(readme): add more helpful readme references #933

Merged
merged 3 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,12 +235,14 @@ See more discussion [here](https://github.com/leikoilja/ha-google-home/issues/12

Due to authentication issues with google credentials alone it may be required to get the master token separately and provide it during the setup process. This can be done using [this script](https://gist.github.com/rithvikvibhu/952f83ea656c6782fbd0f1645059055d) or [glocaltokens](https://github.com/leikoilja/glocaltokens#quickstart) package.

Since there are several issues getting the token reliable on different environments, you can use a docker container which was created solely for this use: <https://hub.docker.com/r/breph/ha-google-home_get-token>. If you choose to use this container, run the following command:
Since there are several issues getting the token reliable on different environments, you can use a community created [docker image](https://hub.docker.com/r/breph/ha-google-home_get-token) which was created solely for helping to get a master token reliably. If you choose to use this docker container, run the following command:

```
$ docker run --rm -it breph/ha-google-home_get-token
```

You fill find more detailed instructions on how to run the docker container [here](https://github.com/leikoilja/ha-google-home/issues/890#issuecomment-2515002294).

### HACS Installation

You can find it in the default HACS repo. Just search `Google Home`.
Expand Down
3 changes: 1 addition & 2 deletions custom_components/google_home/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,7 @@ async def update_alarm_volume(
else:
assert volume is not None
_LOGGER.debug(
"Successfully set alarm volume to %d "
"on Google Home device %s",
"Successfully set alarm volume to %d on Google Home device %s",
volume,
device.name,
)
Expand Down
Loading
Loading