Skip to content

Instantly share code, notes, and snippets.

blueprint:
name: IKEA STYRBAR 4 Toggles
description:
"Control lights with an IKEA STYRBAR. This blueprint turns the STYRBAR into 4 toggle buttons\n\n Blueprint\
\ Version: 1"
domain: automation
input:
remote:
name: IKEA STYRBAR
description: Pick an IKEA STYRBAR remote
@DarkCoder28
DarkCoder28 / IKEA STYRBAR.yaml
Last active September 9, 2023 18:13
Home Assistant: Control lights with an IKEA STYRBAR
blueprint:
name: IKEA STYRBAR Dimmer Remote
description:
"Control lights with an IKEA STYRBAR.\n\n Blueprint\
\ Version: 1"
domain: automation
input:
remote:
name: IKEA STYRBAR
description: Pick an IKEA STYRBAR remote
blueprint:
name: Door Sensor Notify
description:
"Send notifications to your phone when the door sensor sees that it is open\n\n Blueprint\n Version: 3"
domain: automation
input:
sensor:
name: Open Sensor
selector:
entity:
blueprint:
name: Door Sensor
description:
"Turns on the entity specified below when a opening sensor is triggered on.\n\n Blueprint\
\ Version: 3"
domain: automation
input:
sensor:
name: Door Sensor
description: Pick an opening Sensor
blueprint:
name: Door Sensor w/ Retrigger Timeout
description:
"Turns on the entity specified below; dosn't retrigger within the set timespan\n\n Blueprint\
\ Version: 3"
domain: automation
input:
sensor:
name: Door Sensor
description: Pick a Binary Sensor
blueprint:
name: Philips Hue Dimmer RWL022 (TESTING)
description:
"Control lights with a Philips Hue Dimmer Switch (v2).\n\n Blueprint\
\ Version: 1"
domain: automation
input:
remote:
name: Philips Hue Dimmer Switch
description: Pick a RWL022 Dimmer Switch
blueprint:
name: Philips Hue Dimmer RWL022 (Aiden Edition)
description:
"Control lights with a Philips Hue Dimmer Switch (v2).\nPower will toggle the state, Dim Up will brighten the light (double press sets full brightness), Dim Down will dim the light, & Hue will flash the light to make sure it works\n\n Blueprint\
\ Version: 1"
domain: automation
input:
remote:
name: Philips Hue Dimmer Switch
description: Pick a RWL022 Dimmer Switch
@DarkCoder28
DarkCoder28 / falling_brick_solver.py
Last active April 15, 2019 12:29
The code used in my falling brick solver video
import time
import cv2
import mss
import numpy
import random
from pynput.keyboard import Key, Controller
keyboard = Controller()
topleft = (-1220, 492)
@DarkCoder28
DarkCoder28 / config.cson
Created July 13, 2018 22:23
My config.cson in Atom
"*":
core:
packagesWithKeymapsDisabled: []
telemetryConsent: "no"
editor:
softWrap: true
"exception-reporting":
userId: "PRIVATE"
"linter-ui-default": {}
"sync-settings":
@DarkCoder28
DarkCoder28 / Amino.java
Created May 27, 2018 22:57
The Amino.java gist mentioned in the RNA.java gist
package com.aidensheeran.DNATranslator;
public enum Amino {
PHE("Phenylalanine"), LEU("Leucine"), ILE("Isoleucine"), MET("Methionine"), VAL("Valine"), SER("Serine"), PRO("Proline"),
THR("Threonine"), ALA("Alanine"), TYR("Tyrosine"), HIS("Histidine"), GLN("Glutamine"), ASN("Asparagine"), LYS("Lysine"),
ASP("Aspartic acid"), GLU("Glutamic acid"), CYS("Cysteine"), TRP("Tryptophan"), ARG("Arginine"), GLY("Glycine"),
STP("Stop"), UNKNOWN("Unknown");
private String name;