-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: BREAKING CHANGE rename 'variable engine' 'progressive engine'
- Loading branch information
1 parent
d2a9462
commit 2168f7c
Showing
15 changed files
with
92 additions
and
21 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# ---------------------------------------------------------------------------------------------------- | ||
# ESPHome configuration - This part depends on your hardware target | ||
# ---------------------------------------------------------------------------------------------------- | ||
|
||
esphome: | ||
name: "esp8266" | ||
friendly_name: ESP8266 | ||
|
||
esp8266: | ||
board: esp01_1m | ||
restore_from_flash: true | ||
|
||
# Enable logging | ||
logger: | ||
baud_rate: 115200 | ||
level: INFO | ||
logs: | ||
component: ERROR | ||
http_request.arduino: ERROR | ||
|
||
# Enable Home Assistant API | ||
api: | ||
encryption: | ||
key: !secret proxy_api_encryption_key | ||
|
||
# WiFi connection | ||
wifi: | ||
ssid: !secret wifi_ssid | ||
password: !secret wifi_password | ||
# If you have a WiFi activity plannification, you may have to update the reboot timeout (Default: 15min) | ||
reboot_timeout: 24h | ||
|
||
# ---------------------------------------------------------------------------------------------------- | ||
# Customisation | ||
# ---------------------------------------------------------------------------------------------------- | ||
|
||
# This part of the script is designed to be use for customisation. It shouldn't be necessary to | ||
# edit other part of the script to perform configuration. | ||
substitutions: | ||
# Power meter source ----------------------------------------------------------- | ||
# Define ip address of Proxy Power Meter | ||
power_meter_ip_address: "192.168.1.28" | ||
|
||
# Regulator configuration | ||
# Define GPIO pin connected to AC Dimmer for gate and zero crossing detection. | ||
regulator_gate_pin: GPIO4 | ||
|
||
# LEDs ------------------------------------------------------------------------- | ||
# Green LED is reflecting regulation status | ||
# Yellow LED is reflecting power meter status | ||
green_led_pin: GPIO1 | ||
yellow_led_pin: GPIO2 | ||
|
||
relay_regulator_gate_pin: GPIO0 | ||
bypass_timer_threshold: "30" | ||
|
||
packages: | ||
power_meter: | ||
url: https://github.com/XavierBerger/Solar-Router-for-ESPHome/ | ||
file: solar_router/power_meter_proxy_client.yaml | ||
refresh: 1d | ||
engine: | ||
url: https://github.com/XavierBerger/Solar-Router-for-ESPHome/ | ||
file: solar_router/engine_progressive_with_bypass.yaml | ||
refresh: 1d | ||
regulator: | ||
url: https://github.com/XavierBerger/Solar-Router-for-ESPHome/ | ||
file: solar_router/regulator_solid_state_relay.yaml | ||
refresh: 1d | ||
bypass: | ||
url: https://github.com/XavierBerger/Solar-Router-for-ESPHome/ | ||
file: solar_router/regulator_mecanical_relay.yaml | ||
refresh: 1d |
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
File renamed without changes.
File renamed without changes.
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