GMU:Speculative Atmospheres II/Sophia Amelia Eickhoff: Difference between revisions

From Medien Wiki
mNo edit summary
No edit summary
Line 119: Line 119:


*Determination-Indetermination
*Determination-Indetermination
  Thoughts by Nam June Paik


*History of Mapping-Alternative/Artistic mapping
*History of Mapping-Alternative/Artistic mapping
Line 127: Line 128:


*Strollology
*Strollology
   https://vimeo.com/96979458?embedded=true&source=video_title&owner=16179567
   https://vimeo.com/96979458?embedded=true&source=video_title&owner=16179567
   http://www.spaziergangswissenschaft.de/
   http://www.spaziergangswissenschaft.de/


  *Correlation -Interpretation of Data
  *Correlation -Interpretation of Data
     https://lastminuteengineers.com/mq2-gas-senser-arduino-tutorial/
     https://lastminuteengineers.com/mq2-gas-senser-arduino-tutorial/


Line 136: Line 139:


*Work of Tobias Zimmer - Identical Walk
*Work of Tobias Zimmer - Identical Walk
     https://www.tobiaszimmer.net/projects/identical-walk.php
     https://www.tobiaszimmer.net/projects/identical-walk.php


*Gerhard Richter for background
*Gerhard Richter for background
[[File:GerRichtK21.jpeg|200px]][[File:GerhardiRichter.jpg|200px]][[File:GerRicht.jpg|200px]]
[[File:GerRichtK21.jpeg|200px]][[File:GerhardiRichter.jpg|200px]][[File:GerRicht.jpg|200px]]



Revision as of 19:14, 4 January 2022


MAPPING OF THE INVISIBLE ENVIORMENT

Idea

For my project I want to collect the invisible elements (data) that shape the natural atmosphere on my walks and visualize them artistically.

On the route, light, air quality, temperature and pulse are measured every minute using an Arduino and sensors. These are stored via an SD card and read out with a code. The time and route are stored using a tracking app.The data determines the parameters of the subsequent image design. For transport, a "rack" is built that attaches the breadboard to the body. After each walk the collected Data will be read out and acryl painted onto a cardboardcanvas. The base of the background is a photo that represents the atmosphere of the walk.

  • Time/Duration= Size of the canvas
  • Route= Shape of the line
  • Temperature= Color of the line
  • Light= Height of the line
  • Air quality= Saturation of the color
  • Pulse= Thickness of the line


Progress/Work

Code

 #include <SPI.h> //including SDcard
 #include <SD.h>
 #include <math.h> //including for temperature calculation
 File myFile; //directing data to file
 void setup() {
 Serial.begin(9600); //starting comunication with arduino
 while (!Serial) {
 ; 
 }
 Serial.print("Initializing SD card..."); //initializing the SD card
 if (!SD.begin(10)) {
 Serial.println("initialization failed!"); // signal if connection failed
 while (1);
 }
 Serial.println("initialization done."); // signal if connection succeded
 myFile = SD.open("test.txt", FILE_WRITE); //naming file
 if (myFile) {
 Serial.print("Writing to test.txt...");
 myFile.println ("Spaziergang"); //naming the section of the file, date, place, number of walk
 myFile.close();
 Serial.println("done.");
 }
 else {
 // if the file didn't open, print an error:
 Serial.println("error opening test.txt"); //signal if opening failed
  }
  }
 void loop() {
 
 //if the communication started successfully-  
 myFile = SD.open("test.txt", FILE_WRITE);
 if (myFile) {
 //collect incoming data from sensors
 //light
 Serial.print("Writing to test.txt...");
 int light = analogRead(A0);
 myFile.print( "Licht: "); 
 myFile.println(light);
//temperature
 myFile.print ("Temperatur: ");
 double temp=analogRead(A1);
 double fenya=(temp/1023)*5;
 double r=(5-fenya)/fenya*4700;
 myFile.println( 1/(  log(r/10000) /3950 + 1/(25+273.15))-273.15);
 // airquality
 int gas = analogRead(A3);
 myFile.print( "Gas: ");
 myFile.println(gas, DEC);
 //pulse
 int pulse = analogRead(A2);
 myFile.print( "Pulse: ");
 myFile.println(pulse);
 delay(60000); //collect data every minute
 // close the file:
 myFile.close();
 Serial.println("Sensor.geschrieben.");
 }
  else {
 // if the file didn't open, print an error:
 Serial.println("error opening test.txt");
 }
 }


Breadboard


PulseSensor.jpegAirqualitySensor.jpegLightSensor.jpegTemperatureSensor.jpegSdCardModule.jpegBreadBoard.jpeg PulsAttached.jpegAdditionalEquipment.jpegOnArm.jpeg


Data Results

Screenshot (47).pngScreenshot (48).png


Guide

Screenshot (50).png

Transscription Diagram


Meanwhile Thoughts

Additional

The place and the area of the walked route are indicated. Depending on what dominates the walk, a text (internal state) or a photo (external state) is attached. Also, an attempt is made to put this state in context with the collected data.


Keywords/Inspiration

  • Determination-Indetermination
 Thoughts by Nam June Paik
  • History of Mapping-Alternative/Artistic mapping
  https://de.wikipedia.org/wiki/Kartografie
  https://th.bing.com/th/id/OIP.B8hqhKchjCfEgoO9OZtZTQHaHa?pid=ImgDet&rs=1
  https://www.pinterest.de/pin/430586414367848528/
  17a04e56210215.59a5472bbe6f6.jpg
  • Strollology
 https://vimeo.com/96979458?embedded=true&source=video_title&owner=16179567
 http://www.spaziergangswissenschaft.de/
*Correlation -Interpretation of Data
    https://lastminuteengineers.com/mq2-gas-senser-arduino-tutorial/
  • Context/ Asssociation of Color
  • Work of Tobias Zimmer - Identical Walk
    https://www.tobiaszimmer.net/projects/identical-walk.php
  • Gerhard Richter for background

GerRichtK21.jpegGerhardiRichter.jpgGerRicht.jpg


Sketches


Linearroute.png Anhang 1 (2).jpegRazm.jpegRotgelbrauml.jpegHintergrund.pngSketcch.jpegSketccch.jpeg3dcollage.jpegRoute33.jpeg