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

feat: add optional wifi ap pw #56

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ In a valiant attempt to free a Google Nest Mini (2nd generation) from its privac

The purpose of this [ESPHome](https://www.esphome.io/) config is to be able to use such a modded Nest Mini as a voice satellite in Home Assistant. Here's a small demo:

https://youtu.be/fuX6IYa79gA
[![Watch the demo](https://i.ytimg.com/vi/fuX6IYa79gA/hqdefault.jpg)](https://www.youtube.com/watch?v=fuX6IYa79gA)

## License

Expand Down
5 changes: 5 additions & 0 deletions esphome/onju-voice-microwakeword.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ substitutions:
friendly_name: "Onju Voice Satellite"
project_version: "1.0.0"
device_description: "Onju Voice Satellite with ESPHome software and microWakeWord"
# If you configure an ap pw and forget it you need to open up your device again to flash it.
# Tip: Therfore you can configure the "Setup code" of your Mini as your ap password.
wifi_ap_password: ""

external_components:
- source:
type: git
Expand Down Expand Up @@ -82,6 +86,7 @@ wifi:
# Set up a wifi access point
ap:
ssid: "${friendly_name}"
password: "${wifi_ap_password}"

# In combination with the `ap` this allows the user
# to provision wifi credentials to the device via WiFi AP.
Expand Down
4 changes: 4 additions & 0 deletions esphome/onju-voice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ substitutions:
friendly_name: "Onju Voice Satellite"
project_version: "1.0.0"
device_description: "Onju Voice Satellite with ESPHome software"
# If you configure an ap pw and forget it you need to open up your device again to flash it.
# Tip: Therfore you can configure the "Setup code" of your Mini as your ap password.
wifi_ap_password: ""

esphome:
name: "${name}"
Expand Down Expand Up @@ -71,6 +74,7 @@ wifi:
# Set up a wifi access point
ap:
ssid: "${friendly_name}"
password: "${wifi_ap_password}"

# In combination with the `ap` this allows the user
# to provision wifi credentials to the device via WiFi AP.
Expand Down