Category: Assignment-09-Progress

Ticha-Progress

Well, I’m technically in “progress limbo” at the moment because I am still waiting for my components from Adafruit, but I’ve done some research on how the code for the project should work and compiled useful code from a couple of sources. I have also modified my idea to something (hopefully) more feasible and (definitely) more interesting than my previous one.

EDIT: Got the voice changer to work and I figured out how to change pitch in realtime without having to worry about too many analog signals! No pictures / video, but it works! Now I just need to make the gloves + do a little bit of coding and I’ll be good to go. 🙂

Hard Part Over – Swetha

I finally got my peristaltic pump from adafruit to work! I’m in the process of adjusting to code so that I can add a stop/start button and a potentiameter to determine the speed of the pump.

Code:


int motorPin1 = 9;
int buttonPin = 2;
int buttonState = 0;
boolean turnMoterOn = true;

void setup() {
  pinMode(motorPin1, OUTPUT);
  pinMode(buttonPin, INPUT);
  Serial.begin(9600);


  analogWrite(motorPin1, 0);
}

void loop() {
   buttonState = digitalRead(buttonPin);
   Serial.println( buttonState);
   if(buttonState == LOW){
     turnMoterOn = !turnMoterOn;
   }
   if( turnMoterOn == false){
       pinMode(motorPin1, INPUT);
       Serial.print("off");
   }
   delay(3000);
     

  analogWrite(motorPin1, 0);
}

 

Fritzing:

I used a 9V battery for this diagram, and although the 9V works, a 12V works the best!

fritzingSketch_bb

Dave – Looking Outwards Final Project

Inspirations

1. Simstudent

http://www.hcii.cmu.edu/research/simstudent-computational-model-student-learning-advance-sciences-learning

Simstudent is a research project at HCII at CMU. Humans learn by teaching, so we can take advantage of that fact by having real students teach algebra to a computer program, the Simstudent, so in turn the students themselves can learn. It uses machine learning algorithms to find patterns in algebra problems to solve them in logical steps. At each phase of the problem, the Simstudent will perform a step in an algebra problem, and the real student has the option to accept it as right, or correct the computer, which will proceed to remember the operations taken so it will not make the same mistakes next time. This is not an art project, but I love the feeling of accomplishment I get when my once-derpy Simstudent became a master at algebra and starts mowing problems down with ease. Thus, I wanted to create my final project based on a machine learning algorithm, so that my audiences can feel what I had felt.

2. Falling Stars

“Falling Stars” is an iPad app that lets the user draw objects on screen, which will produce sounds when drops of falling stars collide with them. The ability to easily create a musical composition that sounds decently coherent with seemly random drawings impresses me. The visuals themes are also great looking and create a calming mood. As an interactive program, it allows the user to create something that not only looks cool but also sounds great. I have always wanted to create a project that uses music and sounds, but I myself do not have enough understanding of music theory to create compositions myself. However, if all I do is set up the environment, and let the audiences and computer take care of generation of music instead, just as Falling Stars did, that might just be possible.

3. MIDI keyboard in Processing

I originally wanted all the music creation to be taken care of by the computer. However, if the user’s only interactions are to rate a composition as good or bad, then he or she might have to brute force through a lot of bad music to find one that is good, which is not exactly a rewarding experience that I had been hoping for. In order to make the experience more interactive, I decided to use a Processing library which can receive input from MIDI keyboards known as RWMidi. I also found an example project made from this library, which displays the robustness that I need. I am currently waiting for my MIDI keyboard to be shipped to me so that I can test it as soon as possible.

 

Ideas:

1. There is a fish tank filled with fish. When each of them flails up out of water, it sings a note. When these fishes do this over a sequence of time, they will produce a composition. The user will then vote whether it is good or not. With a machine learning algorithm, the fishes will remember the label and modify their future compositions based on the user’s taste. This effectively lets the user train the fish to produce “music”. The user can also choose to play music with his/her MIDI keyboard, thus giving more teaching power to the user.

WP_000735

2. Something with music information visualization. I invested money into a MIDI keyboard so I will be using it no matter what. It would be nice to create a visual story with music. This will be something similar to the reverse of “Falling Stars”, so it will probably grow things via pattern of music.

WP_000737

Update: 11/18
I have finished the machine learning backend, and it can play music correctly. All that is left to do is to implement the frontend and sync its timing with the backend, which will not be trivial, but it is not going to be planning intensive.