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
blueprint: | |
domain: automation | |
name: Test TRVs on runaway condition (This is still considered to be a alpha version!!!) | |
description: >- | |
Regularly test all climate devices if the 'as is' temperature is way higher than the target temperature. | |
***Blueprint Revision:*** *1 / 2024-02-05* | |
source_url: https://gist.github.com/uherting/... | |
input: | |
threshold: |
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
block_z = 22; | |
block_y = 47; | |
block_x = 36; | |
cylinder_cutout_depth = 25; | |
difference() { | |
cube([block_x, block_y, block_z], center=true); | |
color("blue") translate([0,0,3]) cylinder(r=14.1, h=cylinder_cutout_depth, $fn=100, center=true); | |
color("red") translate([5.7,0,6]) cube([17,18,30.5], center=true); |
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
sudo -i | |
add-apt-repository universe | |
apt-get update | |
apt-get install -y apparmor-utils apt-transport-https avahi-daemon ca-certificates curl dbus jq network-manager socat software-properties-common | |
curl -sSL https://get.docker.com | sh | |
systemctl disable ModemManager | |
apt-get purge modemmanager | |
curl -sL "https://raw.githubusercontent.com/home-assistant/hassio-installer/master/hassio_install.sh" | bash -s |