mirror of
https://github.com/nuttytree/ESPHome-Devices.git
synced 2024-08-30 18:12:19 +00:00
* Temporarily disable the heater * Shell of new garage fridge component * Core code should be mostly complete * Add power monitoring and freezer temp control * Wrap up core temperature management code * Add fixed InkBird component * The new fridge manages temp in the freezer better so we are able to greatly simplify things * Finish garage fridge Co-authored-by: Chris Nussbaum <chris.nussbaum@protolabs.com>
28 lines
782 B
YAML
28 lines
782 B
YAML
substitutions:
|
|
log_level: none
|
|
wifi_ssid: !secret wifi-ssid
|
|
wifi_password: !secret wifi-password
|
|
ip_subnet: !secret ip-subnet
|
|
ip_gateway: !secret ip-gateway
|
|
platform: esp8266
|
|
|
|
esphome:
|
|
name: ${device_id}
|
|
build_path: ../build/${device_id}
|
|
|
|
${platform}:
|
|
board: ${board}
|
|
|
|
packages:
|
|
wifi: !include wifi/wifi.yaml
|
|
api: !include api/api.yaml
|
|
ota: !include ota/ota.yaml
|
|
logger: !include logger/logger.yaml
|
|
status_sensor: !include binary_sensor/status.yaml
|
|
uptime_sensor: !include sensor/uptime.yaml
|
|
wifi_sensor: !include sensor/wifi.yaml
|
|
restart_button: !include button/restart.yaml
|
|
version_sensor: !include text_sensor/version.yaml
|
|
wifi_info_sensor: !include text_sensor/wifi_info.yaml
|
|
|