Skip to content

Instantly share code, notes, and snippets.

@juanitobebe
juanitobebe / test.yaml
Created June 4, 2023 03:10
Sengled Bluepring Test
blueprint:
name: Sengled Smart Switch, Prescriptive, by barryred
description: |
This ties one 'light' to one Sengled smart switch.
- This only controls the brighness of the light (i.e. color and color-temp are left unchanged)
- The only thing that MUST be configured, are the 'Light Switch', and target 'Lights', however, much else is configurable.
- © below implies that the value is configurable.
* on: Immediately to 50% ©
* double-on: Immediately to 100%
* off: Immediately off.

Keybase proof

I hereby claim:

  • I am juanitobebe on github.
  • I am juanjosedag (https://keybase.io/juanjosedag) on keybase.
  • I have a public key ASDHBVjnNcjHS5omJMDSNs3A3yeKQTjwcRaeONSFk3MWLwo

To claim this, I am signing this object:

@juanitobebe
juanitobebe / updater.sh
Last active October 27, 2016 23:42
Update repos
#!/usr/bin/env bash
for d in */; do
echo $d
repo="${PWD}/${d}"
(
{
cd $repo;
git checkout master;
git pull;