Last Minute Panic!
June 7, 2010 in Uncategorized by Matt
Is your project not working out? Do you have no idea how you will finish it by Thursday?
Maybe try out the Auduino library
Here’s a video of it in action
June 7, 2010 in Uncategorized by Matt
Is your project not working out? Do you have no idea how you will finish it by Thursday?
Maybe try out the Auduino library
Here’s a video of it in action
May 26, 2010 in Uncategorized by Matt
We will have a show on the last Thursday of the school year to show off everyone’s projects! To advertise we’ll print out and email flyers with the names of the projects that you’re creating. How wants to volunteer to draw up the flyer? Something that will grab people’s attention and tell them that it’s about making music.
May 25, 2010 in Uncategorized by Matt
Looks great but only works on windows. Give it a try at http://www.sculptris.com/
May 25, 2010 in Uncategorized by Matt
Make a musical instrument that requires two or more people to play.
May 4, 2010 in Uncategorized by Matt
The app modifies the song your listening to by detecting changes in motion, light, and sound. Check out the video (at home that is, it’s on youtube).
April 5, 2010 in Quarter 3, Uncategorized by Matt
Here’s a mood light relevant post on thereifixedit.com

March 26, 2010 in Quarter 3, Uncategorized by Matt
int led1Pin = 3;
int led2Pin = 5;
int sensorPin = 0;
void setup(){
pinMode(led1Pin, OUTPUT);
pinMode(led2Pin, OUTPUT);
//Potentiometer
pinMode(sensorPin, INPUT);
Serial.begin(9600);
}
void loop(){
int sensorVal;
for(int counter = 0; counter <= 255; counter+=5){
analogWrite(led1Pin, counter);
analogWrite(led2Pin, (255-counter));
sensorVal = analogRead(sensorPin);
sensorVal = map(sensorVal, 0, 1023, 0, 50);
delay(sensorVal);
Serial.println(sensorVal);
}
for(int counter = 255; counter >= 0; counter-=5){
analogWrite(led1Pin, counter);
analogWrite(led2Pin, (255-counter));
sensorVal = analogRead(sensorPin);
sensorVal = map(sensorVal, 0, 1023, 0, 50);
delay(sensorVal);
Serial.println(sensorVal);
}
}
March 22, 2010 in Quarter 3, Uncategorized by Matt