User:Kerem

From DigitalCraft_Wiki
Revision as of 16:55, 6 June 2016 by Kerem (talk | contribs)
Jump to navigation Jump to search

Lab

24-05-2016 Lab 1 Measuring Voltage met Mikki

Batterij= 9V > LED = 3.17 V + Weerstand = 5.55 V

Process

Name:Kerem
Email: 0897689@hr.nl

The Moment I knew what I wanted to do

Via zijn albumcover artworks ben ik Leif Podhajsky tegengekomen en ben zo ook gestuiterd op de videoclips die hij maakt. Hierin krijgt hij het voor elkaar muziek en beeld volledig samen te laten smelten, waardoor ik als kijker er totaal in wordt gedompeld. Ik wil graag als video artist met beeldexperimenteren en zo ook mijn liefde voor muziek aanvullen door het zichtbaar te maken.

Mount Kimbie - Made to Stray (video door Leif Podhajsky


What do I make?

Tot nu toe heb ik korte films gemaakt en videomontages waar ik Motion Graphics technieken toepas. Ook experimenteer ik graag met foto's maken

Oldies.jpg


What is your topic of interest

Terugkomende thema's zijn natuur, dromen en surrealisme. Ik werk graag met muziek, dus ik zoek naar manieren hoe ik beeld met muziek kan samensmelten.

Schermafbeelding 2016-05-26 om 10.59.50.png


What is my Medium?

De camera en software zoals After Effects & Premiere Pro

Concept

I want to create an installation where people can find spiritual enlightenment. The installation will be a space where people can walk in and as they pass different elements of nature, each element will come to life and speak its wisdom over the viewer. Each will come to life in its own way, for instance:

Earth - For this I want to make two plates onto each other and the one on the top will contain a cut-out text with the wisdom of the earth. At first there will be sand on top of the plates, but when Earth comes to life, the plates will divide and the sand will fall through the cut-out, revealing the text.

Fire -

Water -

Wind -

Technique

The elements will come to live as they sense passengers walking by. Sensors will be connected to the arduino > that will activate relays to turn on machines/motors/devices.

Step 1: Sensor to Arduino

_______________________________________________

  1. include <SharpIR.h>

SharpIR sharp(A2,25, 93, 1080); int dis=sharp.distance();

int x;

void setup() {

 pinMode(13, OUTPUT);
 Serial.begin(9600); //initialize baud rate to 9600

}

void loop() {

 x= analogRead(2); //read value from analog pin 2
 Serial.println(x); //print the value on the screen
 if(x > 300 && x < 600) {
   // do something
    digitalWrite(13, HIGH); 
 }
 else {
   digitalWrite(13, LOW);
 
 }
 //delay(200);

}

___________________________________________________