Fix indentation for numeric list
To not break the display as a list.
This commit is contained in:
@@ -80,25 +80,32 @@ Detailed steps for a manual installation can be found in the guide [Installing E
|
|||||||
|
|
||||||
Follow these steps to add a new device in the ESPHome Dashboard:
|
Follow these steps to add a new device in the ESPHome Dashboard:
|
||||||
1. Click the **+ New Device** button.
|
1. Click the **+ New Device** button.
|
||||||
|
|
||||||
2. Enter a unique name for your new ESPHome device.
|
2. Enter a unique name for your new ESPHome device.
|
||||||

|

|
||||||
|
|
||||||
3. Select **ESP32** as the device type.
|
3. Select **ESP32** as the device type.
|
||||||

|

|
||||||
|
|
||||||
4. Click **Skip** as we're not starting the installation yet.
|
4. Click **Skip** as we're not starting the installation yet.
|
||||||

|

|
||||||
|
|
||||||
5. Locate your newly created device in the ESPHome Dashboard and click **Edit**.
|
5. Locate your newly created device in the ESPHome Dashboard and click **Edit**.
|
||||||

|

|
||||||
|
|
||||||
6. (Optional) For enhanced security, consider copying the `api:` entry to your panel's yaml file while adding the key itself to the secrets file
|
6. (Optional) For enhanced security, consider copying the `api:` entry to your panel's yaml file while adding the key itself to the secrets file
|
||||||

|

|
||||||
|
|
||||||
which can be edited clicking `secrets` at the top right of your ESPHome menu.
|
which can be edited clicking `secrets` at the top right of your ESPHome menu.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
7. Note the device name at the beginning of the file under `esphome`.
|
7. Note the device name at the beginning of the file under `esphome`.
|
||||||

|

|
||||||
|
|
||||||
8. Clear all existing content and paste the following YAML configuration:
|
8. Clear all existing content and paste the following YAML configuration:
|
||||||
```yaml
|
```yaml
|
||||||
substitutions:
|
substitutions:
|
||||||
# Settings - Editable values
|
# Settings - Editable values
|
||||||
device_name: "YOUR_NSPANEL_NAME"
|
device_name: "YOUR_NSPANEL_NAME"
|
||||||
friendly_name: "Your panel's friendly name"
|
friendly_name: "Your panel's friendly name"
|
||||||
@@ -108,12 +115,12 @@ substitutions:
|
|||||||
# Add-on configuration (if needed)
|
# Add-on configuration (if needed)
|
||||||
# heater_relay: "1" # Possible values: "1" or "2"
|
# heater_relay: "1" # Possible values: "1" or "2"
|
||||||
|
|
||||||
# Customization area
|
# Customization area
|
||||||
##### My customization - Start #####
|
##### My customization - Start #####
|
||||||
##### My customization - End #####
|
##### My customization - End #####
|
||||||
|
|
||||||
# Core and optional configurations
|
# Core and optional configurations
|
||||||
packages:
|
packages:
|
||||||
remote_package:
|
remote_package:
|
||||||
url: https://github.com/Blackymas/NSPanel_HA_Blueprint
|
url: https://github.com/Blackymas/NSPanel_HA_Blueprint
|
||||||
ref: main
|
ref: main
|
||||||
@@ -125,13 +132,16 @@ packages:
|
|||||||
# - nspanel_esphome_addon_climate_heat.yaml
|
# - nspanel_esphome_addon_climate_heat.yaml
|
||||||
# - nspanel_esphome_addon_climate_dual.yaml
|
# - nspanel_esphome_addon_climate_dual.yaml
|
||||||
refresh: 300s
|
refresh: 300s
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
9. Modify the **Settings** section with your device name (as noted in step 7) and Wi-Fi details.
|
9. Modify the **Settings** section with your device name (as noted in step 7) and Wi-Fi details.
|
||||||

|

|
||||||
|
|
||||||
10. For Wi-Fi credentials, use `!secret` for added security or input them directly.
|
10. For Wi-Fi credentials, use `!secret` for added security or input them directly.
|
||||||
Learn about secrets in ESPHome: [Home Assistant Secrets in ESPHome](https://www.youtube.com/watch?v=eW4vKDeHh7Y).
|
Learn about secrets in ESPHome: [Home Assistant Secrets in ESPHome](https://www.youtube.com/watch?v=eW4vKDeHh7Y).
|
||||||
|
|
||||||
11. (Optional) Adjust `nextion_update_url` to the URL of a TFT file hosted on an HTTP or HTTPS server,
|
11. (Optional) Adjust `nextion_update_url` to the URL of a TFT file hosted on an HTTP or HTTPS server,
|
||||||
ensuring that the file is accessible to the NSPanel.
|
ensuring that the file is accessible to the NSPanel.
|
||||||
This URL will be used by ESPHome to download the TFT file to your panel.
|
This URL will be used by ESPHome to download the TFT file to your panel.
|
||||||
@@ -142,9 +152,11 @@ Learn about secrets in ESPHome: [Home Assistant Secrets in ESPHome](https://www.
|
|||||||
> it is strongly recommended to use HTTP, especially when employing the `arduino` framework.
|
> it is strongly recommended to use HTTP, especially when employing the `arduino` framework.
|
||||||
> The support for HTTPS in this context can be unstable,
|
> The support for HTTPS in this context can be unstable,
|
||||||
> often leading to issues with file transfers.
|
> often leading to issues with file transfers.
|
||||||
|
|
||||||
12. (Optional) Enhance security with API encryption by adding the copied key from step 6 to the **My Customization** area.
|
12. (Optional) Enhance security with API encryption by adding the copied key from step 6 to the **My Customization** area.
|
||||||
> [!TIP]
|
> [!TIP]
|
||||||
> You can get a new randomly generated valid key from [ESPHome Native API Component](https://esphome.io/components/api.html#configuration-variables) page.
|
> You can get a new randomly generated valid key from [ESPHome Native API Component](https://esphome.io/components/api.html#configuration-variables) page.
|
||||||
|
|
||||||
13. After finalizing settings, click **Save** and close the YAML window.
|
13. After finalizing settings, click **Save** and close the YAML window.
|
||||||
|
|
||||||
Your NSPanel is now configured in your ESPHome Dashboard.
|
Your NSPanel is now configured in your ESPHome Dashboard.
|
||||||
|
|||||||
Reference in New Issue
Block a user