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
// .d8888b. 88888888888 d8888 888 888 d8P 888888b. .d88888b. 88888888888 | |
// d88P Y88b 888 d88888 888 888 d8P 888 "88b d88P" "Y88b 888 | |
// Y88b. 888 d88P888 888 888 d8P 888 .88P 888 888 888 | |
// "Y888b. 888 d88P 888 888 888d88K 8888888K. 888 888 888 | |
// "Y88b. 888 d88P 888 888 8888888b 888 "Y88b 888 888 888 | |
// "888 888 d88P 888 888 888 Y88b 888 888 888 888 888 | |
// Y88b d88P 888 d8888888888 888 888 Y88b 888 d88P Y88b. .d88P 888 | |
// "Y8888P" 888 d88P 888 88888888 888 Y88b 8888888P" "Y88888P" 888 | |
// | |
// Stalkbot - Copyright (C) 2013 B^Dub - [email protected] - Last update May 31st 2013 |
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
// .d8888b. 888 888 d8888 88888888888 88888888888 Y88b d88P | |
// d88P Y88b 888 888 d88888 888 888 Y88b d88P | |
// 888 888 888 888 d88P888 888 888 Y88o88P | |
// 888 8888888888 d88P 888 888 888 Y888P | |
// 888 888 888 d88P 888 888 888 888 | |
// 888 888 888 888 d88P 888 888 888 888 | |
// Y88b d88P 888 888 d8888888888 888 888 888 | |
// "Y8888P" 888 888 d88P 888 888 888 888 | |
// | |
// ChattyTT - Copyright (C) 2013 B^Dub - [email protected] - Last update June 15th 2013 |
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
// 88888888888 88888888888 8888888888 888b d888 d8888 8888888b. 8888888 | |
// 888 888 888 8888b d8888 d88888 888 Y88b 888 | |
// 888 888 888 88888b.d88888 d88P888 888 888 888 | |
// 888 888 8888888 888Y88888P888 d88P 888 888 d88P 888 | |
// 888 888 888 888 Y888P 888 d88P 888 8888888P" 888 | |
// 888 888 888 888 Y8P 888 d88P 888 888 888 | |
// 888 888 d8b 888 888 " 888 d8888888888 888 888 | |
// 888 888 Y8P 888 888 888 d88P 888 888 8888888 | |
// | |
// Compiled bot.js for autoreconnect.js example @ https://github.com/alaingilbert/Turntable-API |
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
//----------------------------------------------- | |
// SPARK CORE CUSTOM PWM FREQUENCY EXAMPLE | |
//=============================================== | |
// Define your own frequency below! | |
// PWM Glitch issue fixed, only sets up PWM once, | |
// ... thereafter sets duty cycle. | |
// This allows true 0 - 100% PWM. | |
// Copy this into a new application at: | |
// https://www.spark.io/build and go nuts! | |
//----------------------------------------------- |
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
//-----------------------------------------------// | |
// SPARK CORE Adafruit_WS2801 LIBRARY & EXAMPLE // | |
//===============================================// | |
// Copy this into a new application at: // | |
// https://www.spark.io/build and go nuts! // | |
// Read comments in APPLICATION.CPP section for // | |
// Hookup details! // | |
//-----------------------------------------------// | |
// Technobly / BDub - Jan 9th, 2014 // | |
//===============================================// |
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
//-----------------------------------------------// | |
// STEPPER LIBRARY FOR SPARK CORE // | |
//===============================================// | |
// Copy this into a new application at: // | |
// https://www.spark.io/build and go nuts! // | |
//-----------------------------------------------// | |
// Technobly / BDub - Jan 2014 // | |
//===============================================// | |
/* |
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
//---------------------------------------------------- | |
// Temperature filtering with a 1/16th Dilution Filter | |
// BDub 12-21-2013 | |
// | |
// 1/16th of the new reading gets added to the ongoing | |
// running total of 16 virtual readings, with a little | |
// correction for the truncation process. Very fast | |
// filter for slow 8-bit uC's that don't have multiply | |
// or divide instructions. | |
// |
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
//-----------------------------------------------// | |
// SPARK CORE SIMPLE TONE GENERATOR // | |
//===============================================// | |
// Copy this into a new application at: // | |
// https://www.spark.io/build and go nuts! // | |
//-----------------------------------------------// | |
// Technobly / BDub - Jan 2014 // | |
//===============================================// | |
#define NOTE_B2 4065 |
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
//-----------------------------------------------// | |
// LIQUIDCRYSTAL LIBRARY FOR SPARK CORE // | |
//===============================================// | |
// Copy this into a new application at: // | |
// https://www.spark.io/build and go nuts! // | |
//-----------------------------------------------// | |
// Technobly / BDub - Jan 2014 // | |
//===============================================// | |
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
//----------------------------------------------- | |
// Simple Bit-Bang Example | |
//=============================================== | |
// Copy this into a new application at: | |
// https://www.spark.io/build and go nuts! | |
//----------------------------------------------- | |
// Technobly / BDub - Jan 2014 | |
//=============================================== | |
uint16_t pin = D7; |
OlderNewer