Skip to content

Instantly share code, notes, and snippets.

View LucyMatch's full-sized avatar

Lucy Matchett LucyMatch

View GitHub Profile
@LucyMatch
LucyMatch / CapSense Arduino
Last active August 29, 2015 13:59
Arduino Sketch Taking in CapSense Values
//import the capSense Library
#include <CapacitiveSensor.h>
//these are the capsense inputs 2 is the common send the second number is the
//other digital input the sensor is attached to
CapacitiveSensor cs_2_3 = CapacitiveSensor(2,3);
CapacitiveSensor cs_2_4 = CapacitiveSensor(2,4);
CapacitiveSensor cs_2_5 = CapacitiveSensor(2,5);
void setup() {
@LucyMatch
LucyMatch / Digital Cave Painting
Created March 28, 2014 20:46
Digital Cave Painting with New York's Tribal Drums
//Arduino Stuff
import processing.serial.*;
import cc.arduino.*;
Arduino arduino;
//ARDUINO ANALOG INPUTS
/****************Drummer One********************/
int drum_one_sensor_1 = 5;
int drum_one_value_1 = 0;
int drum_one_sensor_2 = 4;
@LucyMatch
LucyMatch / Sheep on the Beach
Created March 10, 2014 18:13
Arduino code for Sheep on the Beach. The project uses a stepper motor to rotate dancing figures. Video can be found here https://vimeo.com/88674460
/*
Stepper Motor Control - Constant Revolutions
This program drives a unipolar or bipolar stepper motor.
The motor is attached to digital pins 8 - 11 of the Arduino.
Created 03/09/14
Joselyn McDonald
Denah Emerson
@LucyMatch
LucyMatch / RGBeatz
Created March 3, 2014 00:55
RGBeatz Sketch - Arduino Piezo RGB Led Disco Box
int soundSensor1 = 0; // piezo 1 connect to analog 0
int soundSensor2 = 1; // piezo 2 connect to analog 1
int threshold = 20;
int sensorReading1 = 0; //var to hold anaolg reading of piezo1
int sensorReading2 = 0; //var to hold anaolg reading of piezo2