This file contains hidden or 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: | |
| name: Save a camera snapshot when motion is detected | |
| description: Save a camera snapshot with archive when motion is detected | |
| domain: automation | |
| source_url: https://gist.github.com/niemyjski/08c566a4fe64fb2e70998ee4f38c9d1e | |
| input: | |
| motion_sensor: | |
| name: Motion sensor | |
| description: The sensor wich triggers the snapshot creation | |
| selector: |
This file contains hidden or 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 hidden or 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 hidden or 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 |