View Dog Boot Dryer ESPHome
This file contains 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
esphome: | |
name: boot_dryer | |
platform: ESP8266 | |
board: d1_mini | |
# WiFi connection, correct these | |
# with values for your WiFi. | |
wifi: | |
ssid: !secret ssid | |
password: !secret wifi_password |
View dupli_jeu.ino
This file contains 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 <FastLED.h> | |
#include <Servo.h> | |
// Pin assignments | |
#define BUTTON_PIN 2 | |
#define BUTTON_ENABLE 3 | |
#define LED_PIN 4 | |
#define SERVO_PIN 9 | |
#define BELT_PIN 8 |
View christmas_scripts.yaml
This file contains 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
############################################################ Christmas Tree 2018 ########################################### | |
'stop_action': | |
alias: Stop Action | |
sequence: | |
- condition: state | |
entity_id: light.christmas_tree | |
state: 'on' | |
- service: light.turn_off | |
data: | |
entity_id: light.christmas_tree |
View Puck-JS iBeacon
This file contains 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
var lightSwitch = 0; | |
var persist = 30000; | |
var beaconService = require("ble_ibeacon"); | |
var timerId = null; | |
var flasherId = null; | |
const blinkPattern = [100, 150, 100, 150]; | |
function beaconData() { | |
return { | |
uuid : [0xb1, 0xae, 0x51, 0x2b, 0x97, 0x03, 0x4a, 0xe2, 0xb9, 0xc3, 0x9e, 0x26, 0x0c, 0xa7, 0xb3, 0x99], |
View getFormQuestions
This file contains 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
/* script example to retrieve question IDs from form questions, useful for building pre-filled URLs for form entry. | |
* Copyright 2015, James Petersen | |
* Published under a Creative Commons Attribution - NonCommercial ShareAlike 4.0 International Licence | |
*/ | |
function getFormQuestions() { | |
var form = FormApp.openById(REF_FORM_ID); | |
var items = form.getItems(); | |
var currentItem; | |
var validationRules = []; | |
var questionHeaders = [[],[],[],[]]; |
View proxied_content.xml
This file contains 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
<?xml version="1.0" encoding="UTF-8" ?> | |
<Module> | |
<ModulePrefs | |
title="List Data Type Example" | |
scrolling="true"/> | |
<UserPref name="mylist" | |
display_name="Add Terms" | |
datatype="list" /> | |
<Content type="html"> | |
<![CDATA[ |
View Twitter_Timeline.xml
This file contains 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
<?xml version="1.0" encoding="UTF-8" ?> | |
<Module> | |
<ModulePrefs title="Twitter Timeline" | |
description="Add a twitter timeline." | |
thumbnail="http://www.gstatic.com/sites-gadgets/common/images/sites-icon-gadget-thumb.png" | |
screenshot="http://www.gstatic.com/sites-gadgets/common/images/sites-icon-gadget-ss.png" | |
author="Open Source Teacher" | |
height="600" width="250" | |
/> | |
<UserPref name="handle" display_name="Twitter Handle (no @ symbol)" required="true"/> |
View gPlusWidget.xml
This file contains 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
<?xml version="1.0" encoding="UTF-8" ?> | |
<Module> | |
<ModulePrefs title="Google+ Profile Badge" | |
description="Add your Google+ profile to a Google Sites page." | |
thumbnail="http://www.gstatic.com/sites-gadgets/common/images/sites-icon-gadget-thumb.png" | |
screenshot="http://www.gstatic.com/sites-gadgets/common/images/sites-icon-gadget-ss.png" | |
height="400" width="300" author="Open Source Teacher"> | |
<Require feature="dynamic-height"/> | |
</ModulePrefs> | |
<UserPref name="href" display_name="Profile URL" required="true"/> |
View Hashtag_Translate.gs
This file contains 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
/** | |
// Twitter Translator for the GEG Montreal | |
// Written by James Petersen, some time during 2014. | |
// | |
// Website: http://www.opensourceteacher.ca | |
// | |
// Code built on top of the | |
// T W I T T E R A R C H I V E R | |
// - - - - - - - - - - - - - - - | |
// |
NewerOlder