Skip to content

Instantly share code, notes, and snippets.

@arduinoboard
arduinoboard / Traegheitsnavigation.ino
Created August 22, 2014 21:01
The file that is currently on an Arduino Mega 2560 or Mega ADK with a serial number of 7523733363635171A042
#include <Wire.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_LSM303_U.h>
#include <Adafruit_BMP085_U.h>
#include <Adafruit_L3GD20_U.h>
#include <Adafruit_10DOF.h>
#include "Kalman.h"
Adafruit_10DOF dof = Adafruit_10DOF();
Adafruit_LSM303_Accel_Unified acc = Adafruit_LSM303_Accel_Unified(30301);
@arduinoboard
arduinoboard / drumsiwthvibrationsensor.ino
Created October 21, 2013 11:28
The file that is currently on an Arduino Uno with a serial number of 6493633313735181C1A2
/*
Code created for reading shake switch sensor and turning on led based on threshold
This sensor has a default digital read
*/
const int numReadings = 3;
int readings[numReadings]; // the readings from the analog input
int index = 0; // the index of the current reading
int total = 0; // the running total
int average = 0; // the average
@arduinoboard
arduinoboard / rgb_blink.ino
Created August 25, 2013 12:11
The file that is currently on an Arduino Uno with a serial number of 64935343433351106102
@arduinoboard
arduinoboard / ruah.pde
Created April 20, 2013 02:11
The file that is currently on an LilyPad Arduino w/ ATmega328 with a serial number of AE01CSA1
/*
RUAH
BODY AS A CENTER
Year 2012/2013
BA/Graduation project
Product Design
Body as an object and dress as a second skin.
RUAH is an interactive corset controlled by Arduino.
@arduinoboard
arduinoboard / sketch_feb23a.ino
Last active February 23, 2016 20:16
The file that is currently on an Arduino Uno with a serial number of 000000000000000000000000000000000000000000
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}
@arduinoboard
arduinoboard / T1_GodzillaRoom_Lightsout_twitter.ino
Created August 29, 2012 21:52
The file that is currently on an Arduino Uno with a serial number of 310
/*
* ////////////////////////////////////////////////////
* /////Built from many people and their hard work/////
* ////////////////////////////////////////////////////
* Godzilla Room PIR Sensor attached to a Power Switch tail,
* detects movement with the room, turns on the lights,
* tweets to https://twitter.com/T1GodzillaRoom
* Uses Arduino UNO, Ethernet Shield, and Power Switch Tail.
* ////////////////////////////////////////////////////
* //making sense of the Parallax PIR sensor's output//
@arduinoboard
arduinoboard / IteadMega_Adafruit_RGB_LCD_With_Forms_COSMfeed_20120819.ino
Created August 19, 2012 19:12
The file that is currently on an Arduino Mega 2560 or Mega ADK with a serial number of 74136333932351D021E0
/*
Date Last Modified: 08/19/2012
By: Jim Mayhugh
LCD and Web Temperature monitor utilizes Dallas Semiconductor / Maxim DS18B20
One-Wire Digital Temperature sensors to monitor multiple containers, coolers, etc.
The temperatures are available from a various LCD displays and by accessing a small
text based web page generated in response to a "GET" command.
@arduinoboard
arduinoboard / MyMultiPing.ino
Created August 7, 2012 10:09
The file that is currently on an Arduino Uno with a serial number of 6413138333135171C0E0
/*
Repeatedly ping a number of servers and output the response to serial and pins 2,3,4
pin 2: ping request sent
pin 3: ping response received
pin 4: ping response not received
This software requires the ICMPPing library, available at
http://www.blake-foster.com/projects/ICMPPing.zip
@arduinoboard
arduinoboard / GLCD_Temp_Monitor.ino
Created July 20, 2012 16:10
The file that is currently on an Arduino Uno with a serial number of 2fdfd9c1ad0f0d51e864239451fbd02634ffc9a5
/********** ITDB02 Networked Temperature **********
This program requires the ITDB02_Graph16 library.
It uses the OneWire Library and an Arduino-compatable
ethernet shield The display can be used with small or
large fonts, and in portrait or landscape mode.
The OneWire runs on digital pin 9 to avoid a conflict
with the LCD software.
**************************************************/
@arduinoboard
arduinoboard / CHB_RC_arduino_RF_cars_with_errors.pde
Created June 4, 2012 19:33
The file that is currently on an Arduino Uno with a serial number of 6493534313335130C171
//Cliff Bargar 2/14/12
//CHB RC car
//Based on code by Will Langford
int input;
char serialIn;
const int forward = 9;
const int backward = 10;
const int left = 11;
const int right = 12;