Skip to content

Instantly share code, notes, and snippets.

@kccricket
kccricket / linkind_1key_remote.yaml
Last active October 4, 2021 03:31
Home Assistant Blueprint for Linkind 1-key Remote Control
blueprint:
name: ZHA - Linkind 1-key Remote Control
description: |
"Control your light(s) with Linkind 1-key Remote Control
Select the Linkind remote and your lights.
You can toggle the lights On/Off, or hold the button to dim the lights."
domain: automation
input:
remote:
@kccricket
kccricket / CheckIn.ps1
Created March 15, 2020 15:34
Check In
function Invoke-CheckInRequest {
$result = Invoke-RestMethod -Uri '';
if ($result.data[0].status -eq "success") {
return $true;
} else {
return $false;
}
}
function Start-CheckIn {