110 likes | 202 Views
1 . Project Title. Music Sketchbook = Make a piece of music with Tablet. 2. Project Description. It’s an Music Sketchbook. When you draw with any motion on tablet, it makes sound by position of a tablet pan and pressure of the pan. You are not just drawing a picture, you can drawing music.
E N D
1. Project Title Music Sketchbook = Make a piece of music with Tablet
2. Project Description It’s an Music Sketchbook. When you draw with any motion on tablet,it makes sound by position of a tablet pan and pressure of the pan. You are not just drawing a picture, you can drawing music. What you are drawing becomes a piece of music.
3. Project Description tablet screen projector
4. Technology Research Processing+ Processing Library ‘Midibus’
4. Technology Research Processing code ; tablet test (position, pressure) import codeanticode.protablet.*; Tablet tablet; void setup() { size(640, 480); tablet = new Tablet(this); background(0); stroke(255); } void draw() { if (mousePressed) { strokeWeight(30 * tablet.getPressure()); line(pmouseX, pmouseY, mouseX, mouseY); } println("TiltX: " + tablet.getTiltX() + " " + "TiltY: " + tablet.getTiltY());
5. Problem & development point • Visual: remain possible to change colors • Remove button • Technical : Following color change, type of sound change • change Sound level, depend on pressure