User Tools

Site Tools


home_automation

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
home_automation [2025/12/14 18:24] w5gedhome_automation [2026/08/13 15:17] (current) w5ged
Line 1: Line 1:
 ====== Home Automation System ====== ====== Home Automation System ======
-I'm using [[https://www.home-assistant.io/|Home Assistant]] running on [[https://www.raspberrypi.com/|Raspberry Pi]] 4.+I'm using [[https://www.home-assistant.io/|Home Assistant]] running in Proxmox Virtual Machine.
 Whenever possible, I use WiFi to communicate with remote devices. Whenever possible, I use WiFi to communicate with remote devices.
  
Line 44: Line 44:
   * [[https://store.rakwireless.com/products/wisblock-meshtastic-starter-kit?variant=41433735758022|RAK WisBlock]] - aka: with u-blox ZOE-M8Q, OLED Display & solar enclosure   * [[https://store.rakwireless.com/products/wisblock-meshtastic-starter-kit?variant=41433735758022|RAK WisBlock]] - aka: with u-blox ZOE-M8Q, OLED Display & solar enclosure
  
-Tasmota Rules: +====Sample Tasmota device====
-  * Control a remote switch based upon a local temperature value+
  
-  Rule1 +  GPIO1    Switch1   Fire alarm contact closure input 
-  ON Tele-DS18B20-1#Temperature>80 do WebSend [IPADDRESS] Power1 1 BREAK +  GPIO2    Relay1    Contact closure output 
-  ON Tele-DS18B20-1#Temperature<75 do WebSend [IPADDRESS] Power1 0 ENDON+  GPIO7    AM2301    HVAC Supply Temperature/Humidity 
 +  GPIO43   Buzzer    Buzzer 
 +  GPIO44   AM2301    Free Air Temperature/Humidity
  
 +The XIAO-ESP32S3 devices use firmware: tasmota32s3.bin with the template configuration:
 +  {"NAME":"GED-ESP32S3","ARCH":"ESP32S3","GPIO":[32,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0],"FLAG":0,"BASE":1}
 +
 +Devices can be configured by browsing to their IP address & going to Tools/Console.
 +  Tasmota settings:
 +  Setoption8 On (Output temperature in °F)
 +  Teleperiod 60 (Report to MQTT server every 60 seconds)
 +  SwitchMode1 2 (when the GPIO pin is pulled low during a contact closure it reports "ON")
 +
 +  Rule1    Relay state follows the contact closure state
 +  ON Switch1#State DO Power1 %value% ENDON
 +
 +  Rule2    Sound the buzzer then a contact closure is detected 
 +  ON Switch1#State=1 DO Buzzer 1,5,1 ENDON
 +
 +  Rule3    Control a spot cooler based upon two temperature sensors
 +  ON Switch1#State=1 DO WebSend [192.168.10.170] Power1 0 BREAK
 +  ON Tele-AM2301-07#Temperature>80 do WebSend [192.168.10.170] Power1 1 BREAK 
 +  ON Tele-AM2301-44#Temperature<80 do WebSend [192.168.10.170] Power1 0 ENDON
  
home_automation.1765736656.txt.gz · Last modified: by w5ged