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: "Inovelli & Motion: Smart Glow & Transitions 1.0" | |
| description: > | |
| Event-driven automation for Inovelli White switches (VTM31-SN) and Motion sensors (e.g., Ikea MYGGSPRAY). | |
| Features motion activation, day/night brightness levels, and a persistent glow | |
| that activates when the sun goes down or motion clears. Optionally force glow 24/7. | |
| Inovelli LED bar reflects current mode via select/number entities. | |
| domain: automation | |
| input: | |
| motion_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
| ### Keybase proof | |
| I hereby claim: | |
| * I am jamesj2 on github. | |
| * I am jamesj2 (https://keybase.io/jamesj2) on keybase. | |
| * I have a public key ASCBSHoxNLesLqfKILS2aQol8hs5DkcQN1tMWCoTYmau3Qo | |
| To claim this, I am signing this object: |
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
| #!groovy | |
| pipeline { | |
| agent any | |
| // triggers { | |
| // cron('H 4/* 0 0 1-5') | |
| // } | |
| // tools { | |
| // nodejs 'Node 6.x' |
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
| /** | |
| * Login into website. | |
| */ | |
| exports.login = function(url,username,password) { | |
| /** | |
| * Start casper and option the login page. | |
| */ | |
| casper.open(url); | |
| /** |