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: Luz ou Dispositivo Ativado por Presença (Apenas à Noite) | |
description: Liga uma luz ou dispositivo quando presença é detectada após o pôr do sol. | |
domain: automation | |
input: | |
motion_entity: | |
name: Sensor de Presença ou Movimento | |
selector: | |
entity: | |
domain: binary_sensor |
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: Luz ou Dispositivo Ativado por Presença | |
description: Liga uma luz, interruptor ou qualquer dispositivo quando presença é detectada e desliga automaticamente após um tempo configurável. | |
domain: automation | |
input: | |
motion_entity: | |
name: Sensor de Presença ou Movimento | |
description: Selecione o sensor que detectará presença ou movimento | |
selector: | |
entity: |
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
<?php | |
/* | |
* PHP Recursive Backup-Script to ZIP-File | |
* (c) 2012: (Original) Marvin Menzerath. (http://menzerath.eu) | |
* (c) 2020: Roger Arruda. (https://rogerarruda.dev) | |
*/ | |
// Make sure the script can handle large folders/files | |
ini_set('max_execution_time', 600); | |
ini_set('memory_limit','1024M'); |