-
-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Completion of information on docs website (#333)
* Add introduction page * Add getting started docs page * Update sidebars and add configuration doc page * Add diagram page on reference category * Add hardware shopping table * Add instructions for firmware install and connect to HA * Update the last steps for getting started * Add cases page under reference * Update case descriptions and add request for contributions * Move FAQ to github pages * Remove unused configuration file * Update FAQ and Introduction documentation * Refactor readme and update project description * Delete unused files and update sidebar configuration * Add advanced part to customize firmware * Configuration page for renaming device * Delete unnecessary files and add first blog post * Update link to 3D printed case in readme * Remove the blog for now * Enable push trigger for main branch in build-firmware.yaml
- Loading branch information
1 parent
1fca587
commit 17e40b3
Showing
54 changed files
with
524 additions
and
776 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,5 @@ | ||
endi: | ||
name: Endilie Yacop Sucipto | ||
title: Maintainer of Docusaurus | ||
url: https://github.com/endiliey | ||
image_url: https://github.com/endiliey.png | ||
|
||
yangshun: | ||
name: Yangshun Tay | ||
title: Front End Engineer @ Facebook | ||
url: https://github.com/yangshun | ||
image_url: https://github.com/yangshun.png | ||
|
||
slorber: | ||
name: Sébastien Lorber | ||
title: Docusaurus maintainer | ||
url: https://sebastienlorber.com | ||
image_url: https://github.com/slorber.png | ||
klaas: | ||
name: Klaas Schoute | ||
title: Founder of Glow | ||
url: https://github.com/klaasnicolaas | ||
image_url: https://github.com/klaasnicolaas.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
id: firmware_customization | ||
title: Customizing the Firmware | ||
description: How to adopt and customize the firmware for your own needs. | ||
--- | ||
|
||
Since the Home Assistant Glow's firmware is based on [ESPHome](https://esphome.io), making | ||
customizations to the firmware is as easy as editing some YAML. The best way to modify the | ||
firmware config is by installing the [ESPHome Dashboard](https://esphome.io/guides/getting_started_hassio.html) | ||
(or using it [via cli](https://esphome.io/guides/getting_started_command_line.html)). | ||
|
||
## Adopting the Device | ||
|
||
Once ESPHome Dashboard is running, and your Home Assistant Glow is connected to your network, | ||
it should prompt you to adopt it. | ||
|
||
<p align="left"> | ||
<img src={require('@site/static/img/customization/adopt.png').default} /> | ||
</p> | ||
|
||
|
||
Go through the adoption flow; it will do these things: | ||
|
||
1. Create an ESPHome configuration file | ||
2. Set an API encryption key (used by Home Assistant or other native API consumers) | ||
3. Bake the Wi-Fi credentials into the firmware | ||
4. Install the new firmware to the device | ||
|
||
## Understanding the Configuration | ||
|
||
### Components | ||
|
||
To keep things maintainable and to make it easier to build firmware for different board types, | ||
each large part of the configuration is broken up into its own "components". There are currently | ||
three components, all of which are included in the base config: | ||
|
||
- `basis.yaml`: Entities related to the basic functionality of the device | ||
- `pulse_meter.yaml`: Entities related to the pulse meter | ||
- `status_led.yaml`: Entities related to the status LED | ||
|
||
You can see the source for all the components [here](https://github.com/klaasnicolaas/home-assistant-glow/tree/main/components). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
id: configuration | ||
title: Configuration | ||
--- | ||
|
||
## Renaming the Device | ||
|
||
By default, the name of your Home Assistant Glow in Home Assistant is `home-assistant-glow-XXXXXX`, where `XXXXXX` | ||
is derived from the MAC address of the device. This is not very descriptive, so you can change it to something more | ||
meaningful. | ||
|
||
In the Home Assistant UI, navigate to your Home Assistant Glow by going to [**Settings** > **Devices & Services** > **ESPHome**][esphome-devices], | ||
then select your Home Assistant Glow. You can also click the my badge below to go directly to your ESPHome devices overview page: | ||
|
||
[![Open your Home Assistant instance and show an integration.](https://my.home-assistant.io/badges/integration.svg)][esphome-devices] | ||
|
||
On the device's page, press the pencil icon in the top-right to edit the name. | ||
|
||
<p align="left"> | ||
<img src={require('@site/static/img/configuration/rename-device.png').default} /> | ||
</p> | ||
|
||
After you've changed the name, click on **Update** to save the changes. | ||
|
||
:::info | ||
Home Assistant may ask if you want to rename the entity IDs as well. If you don't already have automations, | ||
dashboards, etc. using the entity IDs, it's probably a good idea to do that now so the entity IDs are more | ||
readable. But if you already are using the entity IDs in other places, you can opt not to rename them, and | ||
just change the name of the device. | ||
::: | ||
|
||
[esphome-devices]: https://my.home-assistant.io/redirect/integration/?domain=esphome |
Oops, something went wrong.