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
type: custom:mushroom-template-card | |
primary: HACS Updates | |
secondary: |- | |
{% if is_state("sensor.hacs", "0") -%} | |
Up-to-date | |
{%- else -%} | |
{{ states("sensor.hacs") }} available | |
{% endif %} | |
icon: hacs:hacs | |
layout: vertical |
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: ZHA - Philips Hue Dimmer Switch - old firmware | |
description: 'Control lights with a Philips Hue Dimmer Switch. | |
The top "on" button will turn the lights on to the last set brightness | |
(unless the force brightness is toggled on in the blueprint). | |
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: deCONZ - Lutron Aurora Dimmer v1.3 | |
description: 'Control lights with a Lutron Aurora Dimmer | |
Pressing in the dimmer button will toggle between turning lights on | |
to full brightness, and turning the lights off. | |
Rotating the dimmer will increase and decrease the light brightness. | |
Adjust the sensitivity if updates from the dimmer are being sent too quickly | |
' | |
domain: automation |
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
{ | |
# Each hours element is a hash like this: | |
# { | |
# 'forecasted_conditions_icon': { | |
# 'value': None, | |
# }, | |
# 'forecasted_precipitation_probability': { | |
# 'value': None, | |
# 'units': None, | |
# }, |
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
$ vagrant ssh | |
____ __ __ __ | |
/ __ \__ ______ ____ ___ / /_ / // / _ __ | |
/ /_/ / / / / __ \/ __ \/ _ \/ __/ / // /_ | |/_/ | |
/ ____/ /_/ / /_/ / /_/ / __/ /_ /__ __/ _> < | |
/_/ \__,_/ .___/ .___/\___/\__/ /_/ (_)_/|_| | |
/_/ /_/ | |
__ ______ ____ | |
/ /_ __ __ / ____/__ ____ ___ / __ )___ ____ _____ | |
/ __ \/ / / / / / __/ _ \/ __ \/ _ \/ __ / _ \/ __ `/ __ \ |
This file has been truncated, but you can view the full file.
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
2015-06-29 15:12:56,196 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\chocolatey\tools\chocolateyInstall\helpers\functions\Install-ChocolateyInstallPackage.ps1" | |
to "C:\ProgramData\chocolatey\lib\chocolatey\tools\chocolateyInstall\helpers\functions\Install-ChocolateyInstallPackage.ps1". | |
2015-06-29 15:12:56,218 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\chocolatey\tools\chocolateyInstall\helpers\functions\Install-ChocolateyPackage.ps1" | |
to "C:\ProgramData\chocolatey\lib\chocolatey\tools\chocolateyInstall\helpers\functions\Install-ChocolateyPackage.ps1". | |
2015-06-29 15:12:56,220 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\chocolatey\tools\chocolateyInstall\helpers\functions\Install-ChocolateyPath.ps1" | |
to "C:\ProgramData\chocolatey\lib\chocolatey\tools\chocolateyInstall\helpers\functions\Install-ChocolateyPath.ps1". | |
2015-06-29 15:12:56,221 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\chocolatey\tools\chocolateyInstall\helpers\functions |
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 the libraries: | |
#include <Wire.h> | |
#include <LiquidCrystal.h> | |
#include <EtherCard.h> | |
// initialize the library with the numbers of the interface pins | |
LiquidCrystal lcd(10, 9, 5, 4, 3, 2); | |
// networking | |
#define STATIC 0 // set to 1 to disable DHCP (adjust myip/gwip values below) |
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
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.12.+' | |
} | |
} | |
apply plugin: 'com.android.application' |