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
#!/usr/bin/env python3 | |
import asyncio, io, re, select, socket, time | |
# Debug Configuration | |
debugMode = 1 | |
# IRC Configuration | |
ircHost = "" | |
ircPort = 6667 | |
ircChannel = "" |
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: TechniSat Szenenschalter | |
description: Create automations for the TechniSat Szenenschalter using the OZW integration. | |
domain: automation | |
input: | |
scene_controller: | |
name: Scene Controller | |
description: The TechniSat Szenenschalter to interact with. | |
selector: | |
device: |
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
switch: | |
- platform: command_line | |
switches: | |
keller_druckerlicht: | |
friendly_name: "3D-Drucker: LED" | |
command_on: >- | |
printf "~M146 r255 g255 b255 F0" | nc 192.168.0.123 8899 | |
command_off: >- | |
printf "~M146 r0 g0 b0 F0" | nc 192.168.0.123 8899 |
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
# brand: Eufy | |
# model no. of remote control: | |
# devices being controlled by this remote: Robovac 11 | |
# | |
begin remote | |
name Eufy_Vacuum | |
bits 32 | |
flags SPACE_ENC |
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
# brand: | |
# model no. of remote control: | |
# devices being controlled by this remote: RGB Strip | |
# | |
begin remote | |
name RGB_Strip_36T | |
bits 16 | |
flags SPACE_ENC|CONST_LENGTH |
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
# brand: | |
# model no. of remote control: | |
# devices being controlled by this remote: RGB Strip | |
# | |
begin remote | |
name RGB_Strip_24T | |
bits 16 | |
flags SPACE_ENC|CONST_LENGTH |
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
# brand: Samsung | |
# model no. of remote control: AK59-00167A | |
# devices being controlled by this remote: BD-J4500R | |
# | |
begin remote | |
name Samsung_BD | |
bits 20 | |
flags SPACE_ENC|CONST_LENGTH |
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
# brand: Samsung | |
# model no. of remote control: BN59-01315B | |
# devices being controlled by this remote: UHD TV RU7099 | |
# | |
begin remote | |
name Samsung_TV | |
bits 16 | |
flags SPACE_ENC|CONST_LENGTH |
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
# brand: Teufel | |
# model no. of remote control: DS 5 RC | |
# devices being controlled by this remote: DecoderStation 5 | |
# | |
begin remote | |
name Teufel_DS | |
bits 16 | |
flags SPACE_ENC|CONST_LENGTH |
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: Müller Licht Remote | |
description: Control lights with a Muller Licht Tint RGB Remote | |
domain: automation | |
input: | |
remote: | |
name: Remote | |
description: Muller Licht Tint remote to use | |
selector: | |
device: |