various tidyups and esphome adds

This commit is contained in:
root
2026-02-23 21:01:07 +13:00
parent 83e4040b84
commit 61b0c64a1e
28 changed files with 4052 additions and 3808 deletions
+76 -29
View File
@@ -1,6 +1,7 @@
##########################################################################################
##########################################################################################
# MAIN BATHROOM LIGHTSWITCH 2 (OBK Converted, BK7231N)
# V2.1 2026-02-23 Button 3 multi-click publishes MQTT commands to bathroom fan (1x/2x/3x)
# V2.0 2026-02-04 Reflash into new switch (old switch electrical failure, now a BK)
# V1.0 2025-11-23 Initial
##########################################################################################
@@ -8,7 +9,7 @@
# pinout/schematic https://community.home-assistant.io/t/zemismart-ks-811-working-with-esphome/
#
# NOTES
# -
# -
#
##########################################################################################
##########################################################################################
@@ -22,16 +23,22 @@ substitutions:
device_name: "esp-mainbathroomlights"
friendly_name: "Main Bathroom Lightswitch (3)"
description_comment: "BK7231N - Main Bathroom Lightswitch using a Zemismart KS-811 Triple Push Button. Main Lights (1), Shower Lights (2), Cabinet Lights (3)"
device_area: "Main Bathroom" # Allows ESP device to be automatically linked to an 'Area' in Home Assistant.
device_area: "Main Bathroom" # Allows ESP device to be automatically linked to an 'Area' in Home Assistant.
# Project Naming
project_name: "Zemismart Technologies.KS-811 Triple BK7231N" # Project Details
project_version: "v1.0" # Project V denotes release of yaml file, allowing checking of deployed vs latest version
project_name: "Zemismart Technologies.KS-811 Triple BK7231N" # Project Details
project_version: "v2.1" # Project V denotes release of yaml file, allowing checking of deployed vs latest version
# Passwords
api_key: !secret esp-api_key # unfortunately you can't use substitutions inside secrets names
ota_pass: !secret esp-ota_pass # unfortunately you can't use substitutions inside secrets names
static_ip_address: !secret esp-garageentrylights2_ip
mqtt_command_main_topic: !secret mqtt_command_main_topic
#mqtt_status_main_topic: !secret mqtt_status_main_topic
# If we are changing IP addresses, you must update the current IP address here, otherwise it remains
# Don't forget to switch it back when changed.
current_ip_address: ${static_ip_address}
# Device Settings
log_level: "INFO" # Define logging level: NONE, ERROR, WARN, INFO, DEBUG (Default), VERBOSE, VERY_VERBOSE
@@ -40,11 +47,23 @@ substitutions:
# Default relay restore mode
# Options: RESTORE_DEFAULT_OFF, RESTORE_DEFAULT_ON, ALWAYS_ON, ALWAYS_OFF
relay_restore_mode: "RESTORE_DEFAULT_OFF"
# Switch Naming
switch_1_name: "Main Lights" # Only one light (Garage Side) actually connected to this relay
switch_2_name: "Shower Lights" # Output for pario string hanging lights
switch_3_name: "Cabinet Lights" # This is virtual only, no power connected to 3rd relay
switch_1_name: "Main Lights" # Only one light (Garage Side) actually connected to this relay
switch_2_name: "Shower Lights" # Output for pario string hanging lights
switch_3_name: "Cabinet Lights" # This is virtual only, no power connected to 3rd relay
# MQTT LOCAL Controls
#mqtt_local_device_name: "masterbath-lights"
#mqtt_local_command_topic: "${mqtt_command_main_topic}/${mqtt_local_device_name}" # Topic we will use to command this locally without HA
#mqtt_local_status_topic: "${mqtt_status_main_topic}/${mqtt_local_device_name}" # Topic we will use to view status locally without HA
# MQTT REMOTE Controls
mqtt_remote_device1_name: "masterbath-fan"
mqtt_remote_device1_command_topic: "${mqtt_command_main_topic}/${mqtt_remote_device1_name}"
mqtt_remote_device1_command1: "10"
mqtt_remote_device1_command2: "20"
mqtt_remote_device1_command3: "30"
##########################################################################################
# PACKAGES: Included Common Packages
@@ -58,6 +77,7 @@ packages:
local_device_name: "${device_name}"
local_static_ip_address: "${static_ip_address}"
local_ota_pass: "${ota_pass}"
local_current_ip_address: "${current_ip_address}"
#### HOME ASSISTANT API (choose encryption or no encryption options) ####
common_api: !include
@@ -71,7 +91,7 @@ packages:
file: common/mqtt_common.yaml
vars:
local_device_name: "${device_name}"
#### WEB PORTAL ####
#common_webportal: !include common/webportal_common.yaml
#### SNTP (Only use if you want/need accurate timeclocks) ####
@@ -83,7 +103,7 @@ packages:
#diag_debug: !include common/include_debug_diag_sensors.yaml
#diag_resetcount: !include common/include_resetcount_diag_sensors.yaml
# Package item removals
# Package item removals
wifi:
min_auth_mode: !remove # The WPA2 only works on esp32/8266
reboot_timeout: 15min # override the selection from from the common package
@@ -104,7 +124,7 @@ esphome:
project:
name: "${project_name}"
version: "${project_version}"
# on_boot:
# on_boot:
# priority: 200
# then:
# - switch.turn_on: Relay_3
@@ -118,18 +138,9 @@ bk72xx:
board: generic-bk7231n-qfn32-tuya
##########################################################################################
# ESP Platform and Framework
# https://esphome.io/components/esp32.html
##########################################################################################
#esp8266:
# board: esp01_1m
# early_pin_init: False # Initialise pins early to known values. Recommended false where switches are involved. Defaults to True.
# board_flash_mode: dout # Default is dout
##########################################################################################
# ESPHome Logging Enable
# https://esphome.io/components/logger.html
##########################################################################################
##########################################################################################
logger:
level: "${log_level}" #INFO Level suggested, or DEBUG for testing
baud_rate: 0 #set to 0 for no logging via UART, needed if you are using it for other serial things (eg PZEM)
@@ -170,8 +181,8 @@ binary_sensor:
inverted: true
name: "Button 2: ${switch_2_name}"
on_press:
- delay: 50ms
- switch.toggle: Relay_2
- delay: 50ms
- switch.toggle: Relay_2
- platform: gpio
pin:
@@ -181,11 +192,48 @@ binary_sensor:
pullup: true
inverted: true
name: "Button 3: ${switch_3_name}"
# Keep existing actions for ANY press (immediate OFF behavior)
on_press:
- delay: 50ms
#- switch.turn_off: Relay_1
- switch.turn_off: Relay_2
- switch.turn_off: Relay_3
- delay: 50ms
#- switch.turn_off: Relay_1
- switch.turn_off: Relay_2
- switch.turn_off: Relay_3
# Also publish MQTT commands depending on 1x/2x/3x press count
on_multi_click:
# -- Single click: one quick press & release --
- timing:
- ON for at most 400ms
- OFF for at least 200ms
then:
- mqtt.publish:
topic: "${mqtt_remote_device1_command_topic}"
payload: "${mqtt_remote_device1_command1}"
# -- Double click: two quick presses/releases --
- timing:
- ON for at most 400ms
- OFF for at most 400ms
- ON for at most 400ms
- OFF for at least 200ms
then:
- mqtt.publish:
topic: "${mqtt_remote_device1_command_topic}"
payload: "${mqtt_remote_device1_command2}"
# -- Triple click: three quick presses/releases --
- timing:
- ON for at most 400ms
- OFF for at most 400ms
- ON for at most 400ms
- OFF for at most 400ms
- ON for at most 400ms
- OFF for at least 200ms
then:
- mqtt.publish:
topic: "${mqtt_remote_device1_command_topic}"
payload: "${mqtt_remote_device1_command3}"
##########################################################################################
# SWITCH COMPONENT
@@ -215,7 +263,6 @@ switch:
##########################################################################################
# TEMPLATE COMPONENT
#
##########################################################################################
# Virtual group switch for Home Assistant
- platform: template