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
# based on: https://community.home-assistant.io/t/tuya-radiator-valve-ts0601-calibration-from-external-sensor-via-zigbee2mqtt/337991 | |
# alternative: https://community.home-assistant.io/t/sync-trv-with-external-tempature-sensor/298024 | |
blueprint: | |
name: Calibrate TRV temperature | |
description: Temperature calibration for Zigbee valve TS0601, according to external temperature sensor | |
domain: automation | |
input: | |
valve: | |
name: Valve |
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: Announcement | |
author: denysdovhan | |
description: > | |
This is a generic announcement with randomly generated phrases. | |
# source_url: TODO | |
domain: script | |
input: | |
default_tts: | |
name: TTS Service |
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
const readline = require('readline'); | |
const REFRESH_INTERVAL = 50; | |
// Function to clear the terminal | |
function clearTerminal() { | |
console.clear(); | |
} | |
// Function to generate random characters |
OlderNewer