├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature_request.yml ├── labels.yml ├── release-drafter.yml └── workflows │ ├── ci.yaml │ ├── deploy.yaml │ ├── labels.yaml │ ├── pr-labels.yaml │ └── release-drafter.yaml ├── .gitignore ├── .vscode └── tasks.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── blog │ ├── 2024-10-22-placeholder.md │ └── authors.yml ├── docs │ ├── advanced │ │ └── firmware_changes.mdx │ ├── configuration │ │ └── rename.mdx │ ├── faq │ │ └── faq_nr1.md │ ├── getting-started.mdx │ └── introduction.md ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ ├── ESPWebTools.tsx │ │ ├── FirmwareInstallTabs.tsx │ │ └── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ ├── custom.css │ │ └── navbar.css │ ├── pages │ │ ├── index.module.css │ │ └── index.tsx │ └── theme │ │ └── MDXComponents.js ├── static │ ├── .nojekyll │ └── img │ │ ├── brand-github-inverted.svg │ │ ├── brand-github.svg │ │ ├── configuration │ │ └── rename-device.png │ │ ├── customization │ │ └── adopt-esphome.png │ │ ├── docusaurus-social-card.jpg │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── google-nest-mini.png │ │ ├── installation │ │ ├── auto-discovery.png │ │ └── my-link.png │ │ ├── logo.svg │ │ ├── satellite-antenna.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg └── tsconfig.json ├── esphome ├── .gitignore ├── onju-voice-microwakeword.yaml └── onju-voice.yaml └── res ├── error.mp3 ├── timer_finished.mp3 └── wakeup.mp3 /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.github/workflows/labels.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.github/workflows/pr-labels.yaml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.github/workflows/release-drafter.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .pio -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/blog/2024-10-22-placeholder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/blog/2024-10-22-placeholder.md -------------------------------------------------------------------------------- /docs/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/blog/authors.yml -------------------------------------------------------------------------------- /docs/docs/advanced/firmware_changes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/docs/advanced/firmware_changes.mdx -------------------------------------------------------------------------------- /docs/docs/configuration/rename.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/docs/configuration/rename.mdx -------------------------------------------------------------------------------- /docs/docs/faq/faq_nr1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/docs/faq/faq_nr1.md -------------------------------------------------------------------------------- /docs/docs/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/docs/getting-started.mdx -------------------------------------------------------------------------------- /docs/docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/docs/introduction.md -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/ESPWebTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/src/components/ESPWebTools.tsx -------------------------------------------------------------------------------- /docs/src/components/FirmwareInstallTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/src/components/FirmwareInstallTabs.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/css/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/src/css/navbar.css -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/theme/MDXComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/src/theme/MDXComponents.js -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/brand-github-inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/brand-github-inverted.svg -------------------------------------------------------------------------------- /docs/static/img/brand-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/brand-github.svg -------------------------------------------------------------------------------- /docs/static/img/configuration/rename-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/configuration/rename-device.png -------------------------------------------------------------------------------- /docs/static/img/customization/adopt-esphome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/customization/adopt-esphome.png -------------------------------------------------------------------------------- /docs/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/google-nest-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/google-nest-mini.png -------------------------------------------------------------------------------- /docs/static/img/installation/auto-discovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/installation/auto-discovery.png -------------------------------------------------------------------------------- /docs/static/img/installation/my-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/installation/my-link.png -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/satellite-antenna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/satellite-antenna.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /esphome/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/esphome/.gitignore -------------------------------------------------------------------------------- /esphome/onju-voice-microwakeword.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/esphome/onju-voice-microwakeword.yaml -------------------------------------------------------------------------------- /esphome/onju-voice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/esphome/onju-voice.yaml -------------------------------------------------------------------------------- /res/error.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/res/error.mp3 -------------------------------------------------------------------------------- /res/timer_finished.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/res/timer_finished.mp3 -------------------------------------------------------------------------------- /res/wakeup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetele/onju-voice-satellite/HEAD/res/wakeup.mp3 --------------------------------------------------------------------------------