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 "digitalwritefast.h" | |
const uint8_t PROGMEM score[] = {0x90,83,0x91,77,0x92,66,0x93,72,1,212,0x80,0x81,0x82,0x83,0,31,0x90,82,0x91,65,0x92,71,0x93,76,1,212,0x80,0x81,0x82,0x83,0,31,0x90,81,0x91,64,0x92,75,0x93,70,1,212,0x80,0x81,0x82,0x83,0,31,0x90,74,0x91,63,0x92,69,0x93,80,1,212,0x81,0x82,0x83,0,31,0x91,79,0x92,73,0x93,62,0x94,68,0x80,1,25,0x81,0x82,0x83,0x84,0,52,0x90,78,0x91,72,0x92,67,0x93,61,1,56,0x80,0x81,0x82,0x83,0,20,0x90,60,0x91,71,0x92,66,0x93,77,10,242,0x82,0,31,0x80,0x81,0x83,1,244,0x90,67,0x91,62,0,68,0x80,0x81,0,34,0x90,67,0x91,62,0,68,0x80,0x81,0,34,0x90,68,0x91,63,0,68,0x80,0x81,0,34,0x90,67,0x91,62,0,68,0x80,0x81,0,34,0x90,67,0x91,62,0,68,0x80,0x81,0,34,0x90,63,0x91,68,0,68,0x80,0x81,0,34,0x90,67,0x91,62,0,68,0x80,0x81,0,34,0x90,67,0x91,62,0,68,0x80,0x81,0,34,0x90,68,0x91,63,0,68,0x80,0x81,0,34,0x90,67,0x91,62,0,68,0x80,0x81,0,34,0x90,62,0x91,67,0,68,0x80,0x81,0,34,0x90,68,0x91,63,0,68,0x80,0x81,0,34,0x90,62,0x91,67,0,68,0x80,0x81,0,34,0x90,63,0x91,68,0,68,0x80,0x81,0,34,0x90,67,0x |
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
import os | |
import time | |
logo = "" | |
logo += "888 8888888 Y88b d88P 8888888 8888888888\n" | |
logo += "888 888 Y88b d88P 888 888 \n" | |
logo += "888 888 Y88o88P 888 888 \n" | |
logo += "888 888 Y888P 888 8888888 \n" | |
logo += "888 888 d888b 888 888 \n" | |
logo += "888 888 d88888b 888 888 \n" |
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
const byte voicePins[] PROGMEM = {2, 3, 4, 5, 6, 7}; | |
byte voiceEnabled[6]; | |
byte voiceType[6]; | |
byte states[6]; | |
byte noiseCount[6]; | |
unsigned long start[6]; | |
unsigned int periods[6]; | |
unsigned long nextFlip[6]; | |
byte noise = 0; |
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
const byte voicePins[] PROGMEM = {2, 3, 4, 5, 6, 7}; | |
byte voiceEnabled[6]; | |
byte voiceType[6]; | |
byte states[6]; | |
byte noiseCount[6]; | |
unsigned long start[6]; | |
unsigned int periods[6]; | |
unsigned long nextFlip[6]; | |
byte noise = 0; |
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
const byte voicePins[] PROGMEM = {2, 3, 4, 5, 6, 7}; | |
byte voiceEnabled[6]; | |
byte voiceType[6]; | |
byte states[6]; | |
byte noiseCount[6]; | |
unsigned long start[6]; | |
unsigned int periods[6]; | |
unsigned long nextFlip[6]; | |
byte noise = 0; |
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
const byte score [] PROGMEM = { | |
// YOUR BYTE STREAM GOES HERE! | |
}; | |
const byte voicePins[] PROGMEM = {2, 3, 4, 5, 6, 7}; | |
byte voiceEnabled[6]; | |
byte voiceType[6]; |
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
/* | |
* Arduino Anti-GPS Silliness | |
* by Connor Nishijima 2016 | |
* | |
* By reading the frequency of AC cycles in your house using an open analog pin, | |
* I can tell you for sure what countries you AREN'T in. Pretty god damn useless, | |
* but fun, nonetheless. | |
* | |
* You'll need an Arduino Mega to fit the array of Strings below, Uno doesn't cut it | |
* even with use of PROGMEM. The Sketch is also written to use the Seeed Studio TFT |
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
//***************************************************************************** | |
// OUTPUT of MIDUINO 3.1 for Arduino Mega (6 Timers) | |
// Processed in just 0.138 seconds by www.world.emotiscope.co/miduino | |
//***************************************************************************** | |
// Use of this code is subject to the | |
// Creative Commons Attribution Non-Commercial license: | |
// https://creativecommons.org/licenses/by-nc/3.0/us/ | |
// Midi to Arcuino C conversion by Len Shustek |
NewerOlder