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: Hue Tap Button Actions | |
description: | | |
This blueprint triggers a user-specified action when a button on a Hue Tap is pressed. | |
domain: automation | |
input: | |
hue_tap: | |
name: Hue Tap | |
description: "The Hue Tap that triggers actions" | |
selector: |
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
#include <Wire.h> | |
#include <Adafruit_Trellis.h> | |
#include "MIDIUSB.h" | |
#define LED 13 // Pin for heartbeat LED (shows code is working) | |
#define CHANNEL 1 // MIDI channel number | |
Adafruit_Trellis trellis; | |
uint8_t heart = 0; // Heartbeat LED counter |
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
$dhclientconf = ""; | |
if ($wanif == "rl2") { | |
$dhclientconf .= <<<EOD | |
interface "{$wanif}" { | |
timeout 60; | |
retry 1; | |
select-timeout 0; | |
send dhcp-class-identifier "neufbox5_NB5-SER-r1_NB5-MAIN-R2.2.2"; |