<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Robinwieber</id>
	<title>Medien Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Robinwieber"/>
	<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/Special:Contributions/Robinwieber"/>
	<updated>2026-05-14T04:45:55Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129445</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129445"/>
		<updated>2022-02-09T10:25:23Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: /* color connection */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and words so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor.&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;1.&#039;&#039;&#039; == The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;2.&#039;&#039;&#039; == After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:350px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:150px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;3.&#039;&#039;&#039; == I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. I compared my interpretation of the Project, shown as a visualisation together with my own perception of the temperature in the room, with the data in numbers. After about 2 days of getting used to it, I was able to measure the temperature with an accuracy of 0.5 degrees without numbers. &lt;br /&gt;
&lt;br /&gt;
For example: Above certain values of relative humidity, there is a risk that the &amp;quot;perceived temperature&amp;quot; will be higher than the actual temperature. The human organism perceives the real temperature differently and the natural regulation in humid room climate is hindered, up to the point of profuse sweating. Incidentally, mold spores are an often underestimated health risk. Thats why it is also very important to have a quick look and get all informations you need immediately.&lt;br /&gt;
&lt;br /&gt;
[[Example of a transition from warm (Bathroom) to cold (outside):]]&lt;br /&gt;
&lt;br /&gt;
[[:File:transition.mp4]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;4.&#039;&#039;&#039; == After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
[[Random Code in processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:450px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;br /&gt;
&lt;br /&gt;
[[File:WhatsApp Image 2022-02-08 at 21.17.53.jpeg|400px]]&lt;br /&gt;
[[File:WhatsApp Image 2022-02-08 at 21.17.53 (1).jpeg|400px]]&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129265</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129265"/>
		<updated>2022-02-08T20:25:55Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: /* Color connection */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor.&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;1.&#039;&#039;&#039; == The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;2.&#039;&#039;&#039; == After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:350px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:150px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;3.&#039;&#039;&#039; == I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. I compared my interpretation of the Project, shown as a visualisation together with my own perception of the temperature in the room, with the data in numbers. After about 2 days of getting used to it, I was able to measure the temperature with an accuracy of 0.5 degrees without numbers. &lt;br /&gt;
&lt;br /&gt;
For example: Above certain values of relative humidity, there is a risk that the &amp;quot;perceived temperature&amp;quot; will be higher than the actual temperature. The human organism perceives the real temperature differently and the natural regulation in humid room climate is hindered, up to the point of profuse sweating. Incidentally, mold spores are an often underestimated health risk. Thats why it is also very important to have a quick look and get all informations you need immediately.&lt;br /&gt;
&lt;br /&gt;
[[Example of a transition from warm (Bathroom) to cold (outside):]]&lt;br /&gt;
&lt;br /&gt;
[[:File:transition.mp4]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;4.&#039;&#039;&#039; == After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
[[Random Code in processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:450px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;br /&gt;
&lt;br /&gt;
[[File:WhatsApp Image 2022-02-08 at 21.17.53.jpeg|400px]]&lt;br /&gt;
[[File:WhatsApp Image 2022-02-08 at 21.17.53 (1).jpeg|400px]]&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129262</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129262"/>
		<updated>2022-02-08T20:20:12Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;1.&#039;&#039;&#039; == The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;2.&#039;&#039;&#039; == After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:350px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:150px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;3.&#039;&#039;&#039; == I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. I compared my interpretation of the Project, shown as a visualisation together with my own perception of the temperature in the room, with the data in numbers. After about 2 days of getting used to it, I was able to measure the temperature with an accuracy of 0.5 degrees without numbers. &lt;br /&gt;
&lt;br /&gt;
For example: Above certain values of relative humidity, there is a risk that the &amp;quot;perceived temperature&amp;quot; will be higher than the actual temperature. The human organism perceives the real temperature differently and the natural regulation in humid room climate is hindered, up to the point of profuse sweating. Incidentally, mold spores are an often underestimated health risk. Thats why it is also very important to have a quick look and get all informations you need immediately.&lt;br /&gt;
&lt;br /&gt;
[[Example of a transition from warm (Bathroom) to cold (outside):]]&lt;br /&gt;
&lt;br /&gt;
[[:File:transition.mp4]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;4.&#039;&#039;&#039; == After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
[[Random Code in processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:450px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;br /&gt;
&lt;br /&gt;
[[File:WhatsApp Image 2022-02-08 at 21.17.53.jpeg|400px]]&lt;br /&gt;
[[File:WhatsApp Image 2022-02-08 at 21.17.53 (1).jpeg|400px]]&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:WhatsApp_Image_2022-02-08_at_21.17.53_(1).jpeg&amp;diff=129261</id>
		<title>File:WhatsApp Image 2022-02-08 at 21.17.53 (1).jpeg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:WhatsApp_Image_2022-02-08_at_21.17.53_(1).jpeg&amp;diff=129261"/>
		<updated>2022-02-08T20:19:29Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:WhatsApp_Image_2022-02-08_at_21.17.53.jpeg&amp;diff=129260</id>
		<title>File:WhatsApp Image 2022-02-08 at 21.17.53.jpeg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:WhatsApp_Image_2022-02-08_at_21.17.53.jpeg&amp;diff=129260"/>
		<updated>2022-02-08T20:19:29Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129248</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129248"/>
		<updated>2022-02-08T19:54:47Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;1.&#039;&#039;&#039; == The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;2.&#039;&#039;&#039; == After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:350px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:150px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;3.&#039;&#039;&#039; == I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
[[Example of a transition from warm (Bathroom) to cold (outside):]]&lt;br /&gt;
&lt;br /&gt;
[[:File:transition.mp4]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;4.&#039;&#039;&#039; == After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
[[Random Code in processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:450px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129247</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129247"/>
		<updated>2022-02-08T19:53:12Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:350px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:150px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
[[Example of a transition from warm (Bathroom) to cold (outside):]]&lt;br /&gt;
&lt;br /&gt;
[[:File:transition.mp4]]&lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
[[Random Code in processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:450px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129246</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129246"/>
		<updated>2022-02-08T19:50:55Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:350px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:150px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
[[Example of a transition from warm (Bathroom) to cold (outside):]]&lt;br /&gt;
&lt;br /&gt;
[[:File:transition.mp4]]&lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
[[Random Code in processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:450px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Transition.mp4&amp;diff=129245</id>
		<title>File:Transition.mp4</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Transition.mp4&amp;diff=129245"/>
		<updated>2022-02-08T19:50:37Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129244</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129244"/>
		<updated>2022-02-08T19:32:51Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:350px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:150px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
[[Example of a transition from warm (Bathroom) to cold (outside):]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
[[Random Code in processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:450px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Warm_room.png&amp;diff=129242</id>
		<title>File:Warm room.png</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Warm_room.png&amp;diff=129242"/>
		<updated>2022-02-08T19:26:06Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129239</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129239"/>
		<updated>2022-02-08T19:24:06Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: /* The progress I made: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:350px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:150px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
[[Example of a transition from warm (Bathroom) to cold (outside):]]&lt;br /&gt;
&lt;br /&gt;
https://vimeo.com/674980284&lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
[[Random Code in processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:450px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129238</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129238"/>
		<updated>2022-02-08T19:23:34Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: /* The progress I made: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:350px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:150px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
[[Example of a transition from warm (Bathroom) to cold (outside):]]&lt;br /&gt;
&lt;br /&gt;
https://vimeo.com/674980284&lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
[[Random Code in processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:550px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129237</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129237"/>
		<updated>2022-02-08T19:21:51Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:350px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:250px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
[[Example of a transition from warm (Bathroom) to cold (outside):]]&lt;br /&gt;
&lt;br /&gt;
https://vimeo.com/674980284&lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
[[Random Code in processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:550px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129234</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129234"/>
		<updated>2022-02-08T19:16:21Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:350px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
[[Random Code in processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129215</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129215"/>
		<updated>2022-02-08T18:33:57Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: /* The progress I made: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
[[Random Code in processing:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129214</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129214"/>
		<updated>2022-02-08T18:33:11Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[Arduino Code:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
Code in processing:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129213</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129213"/>
		<updated>2022-02-08T18:31:29Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;[[The progress I made:]]&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
Arduino Code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
Code in processing:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129212</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129212"/>
		<updated>2022-02-08T18:30:21Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;[[The progress I made:]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
[[How I split the values in Processing]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
if (port.available() &amp;gt; 0) {&lt;br /&gt;
    val = port.readStringUntil(&#039;\n&#039;);&lt;br /&gt;
    String trimmedData = trim(val);&lt;br /&gt;
    String [] list = split(trimmedData, &#039;,&#039;); &lt;br /&gt;
    temp = float(list[0]);  &lt;br /&gt;
    hum = float(list[1]);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
Arduino Code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
Code in processing:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
 t2 = map(hum, 10, 100, 400, 800);  &lt;br /&gt;
  r = map(temp, 5, 30, 0, 255);&lt;br /&gt;
  g = map(temp, 5, 30, 40, 0);&lt;br /&gt;
  b = map(temp, 5, 30, 255, 0);&lt;br /&gt;
&lt;br /&gt;
  int i = 0;&lt;br /&gt;
  while (i &amp;lt; 9) {&lt;br /&gt;
    i = i + 1;&lt;br /&gt;
&lt;br /&gt;
    int j = 0;&lt;br /&gt;
    while (j &amp;lt; 9) {&lt;br /&gt;
      j = j + 1; &lt;br /&gt;
&lt;br /&gt;
      posX = i * 100;&lt;br /&gt;
      posY = j * 100;&lt;br /&gt;
      squareSize = random(t2);&lt;br /&gt;
&lt;br /&gt;
      fill(r, g, b);&lt;br /&gt;
      circle(width/2, height/2, squareSize);&lt;br /&gt;
      fill(0, 0, 0);&lt;br /&gt;
      circle(width/2, height/2, 300);&lt;br /&gt;
      fill(255, 255, 255);&lt;br /&gt;
      circle(width/2, height/2, 100);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129209</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129209"/>
		<updated>2022-02-08T18:23:19Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: /* Color connection */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;[[The progress I made:]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
Arduino Code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source style=&amp;quot;border:none; height:650px; overflow:scroll;&amp;quot; lang=&amp;quot;c&amp;quot; line start=&amp;quot;55&amp;quot; highlight=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_Sensor.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;DHT.h&amp;gt;&lt;br /&gt;
#include &amp;lt;DHT_U.h&amp;gt;&lt;br /&gt;
#define DHTPIN 6&lt;br /&gt;
#define DHTTYPE DHT11&lt;br /&gt;
&lt;br /&gt;
DHT dht(DHTPIN, DHTTYPE);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  dht.begin();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  delay(500);&lt;br /&gt;
&lt;br /&gt;
  float h = dht.readHumidity();&lt;br /&gt;
  // Read temperature as Celsius (the default)&lt;br /&gt;
  float t = dht.readTemperature();&lt;br /&gt;
&lt;br /&gt;
  Serial.print(t);&lt;br /&gt;
  Serial.print(&amp;quot;,&amp;quot;);&lt;br /&gt;
  Serial.print(h);&lt;br /&gt;
  Serial.println();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129207</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129207"/>
		<updated>2022-02-08T18:18:38Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;[[The progress I made:]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129202</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129202"/>
		<updated>2022-02-08T18:10:20Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[[Color connection]]&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;[[The progress I made:]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129201</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=129201"/>
		<updated>2022-02-08T18:09:50Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
[[&#039;&#039;&#039;Color connection&#039;&#039;&#039;]] &lt;br /&gt;
&lt;br /&gt;
My first idea was to find a quicker way of getting information through colors and forms. As the role model I chose the nature and its capabilities to give information through our senses. We as humans have developed different forms to transport Information with numbers and words, but our brain has the ability to see the smallest differences in color much more immediately than numbers, because we connect these colors to different emotions and feelings.&lt;br /&gt;
We see numbers and word so often in our daily life that these informations are nothing special any more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats why I wanted to build a Thermometer that shows the Temperature and humidity in colors and forms.&lt;br /&gt;
&lt;br /&gt;
The choice of the sensor for my project is the DHT11 Sensor. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;[[The progress I made:]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1. The fist big Step was to find a concept and bring to paper. I asked myself questions like: How should it look? Is it possible to see the temperature accurate enough? How should the visualization look?&lt;br /&gt;
&lt;br /&gt;
2. After that, I had a plan to follow and my first action was to connect the sensor to the Arduino and the Software Processing. After some small issues, because I used an Analog pin instead of a digital pin to read out the values, I managed to get the temperature and humidity into processing. At first I was confused, because I forgot split the values in Arduino, in order to use it in Processing. After that the foundation of my Project was made.&lt;br /&gt;
&lt;br /&gt;
3. I informed myself about the effect of colors to the emotions of the human brain. This was very theoretical but also interesting. I also decided to use my own knowledge and feelings to choose the color layout. I endet up with a color transition from dark blue (cold) to dark red (warm). I tested the layout one week and compared it to a regular thermometer to ensure the functionality in an everyday environment. My projekt worked surprisingly good after an adjustment period of two to three days. &lt;br /&gt;
&lt;br /&gt;
4. After this time of everyday use I decided to work on the visual layout even more to show the recipients that the image gets constantly updated with new value via a little trick. I included a very slightly recognizable working random function inside the value of the humidity to show the recipients visually that there are changing values. I also want to include the same in the color.&lt;br /&gt;
&lt;br /&gt;
Thats the current state of my project. To finish my project I still have to manage a few challenges. My final idea is to use a raspberry pi connected to an Arduino that runs the Arduino Software and Processing. The reason for that is the advantage that the raspberry pi can be connected to a Tablet via bluetooth. This changes an important aspect. The usage and mobility. &lt;br /&gt;
Everybody has the possibility to use the „Box“ with any tablet and an app. &lt;br /&gt;
&lt;br /&gt;
With the keyword „Box“ I also want to mention the layout of my Project. It is important for me that the Arduino and the raspberry pi are in an all in one Box.  &lt;br /&gt;
The color and form depends on the material I find to built it, because I like to recycle old boxes to use it for my purpose.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=128659</id>
		<title>GMU:Speculative Atmospheres II/Robin</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II/Robin&amp;diff=128659"/>
		<updated>2022-01-05T13:05:21Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: Created page with &amp;quot;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)  The Idea: One look all information. My Idea is to use a DHT 11 humidity and temperature sensor...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :)&lt;br /&gt;
&lt;br /&gt;
The Idea:&lt;br /&gt;
One look all information.&lt;br /&gt;
My Idea is to use a DHT 11 humidity and temperature sensor to visualize the data as colours and forms in Processing. My final goal is to build a small box with a screen, raspberry pi and an arduino inside. With the help of that, a person is able to see the data faster and with more emotion connected to the temperature, than with a conventional thermometer.&lt;br /&gt;
&lt;br /&gt;
Visualisation: &lt;br /&gt;
Colours are directly connected to the emotions of a human. My idea is to visualize colours in relation to the temperature. That means when it is 10 degrees outside the colours on the screen will be a bright blue and the brain connect this to a certain emotion. I also want to include the humidity with forms and motion of the visualisation.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II&amp;diff=128241</id>
		<title>GMU:Speculative Atmospheres II</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres_II&amp;diff=128241"/>
		<updated>2021-12-07T12:58:55Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[:Category:Fachmodul|Werk/Fachmodul]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;Lecturer:&#039;&#039; [[Christian Doeller]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;Credits:&#039;&#039; 6 [[ECTS]], 4 [[SWS]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;Date:&#039;&#039; Wednesday, 9:30 until 12:45&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;Venue:&#039;&#039; Online and [[Marienstraße 7b]], [[Marienstraße 7b/201|Room 201]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;First meeting:&#039;&#039; October 20, 9.30 am&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
How do digital technologies influence our perception of »natural« processes and environments? And how can we use these technologies to generate new perspectives and experiences? &lt;br /&gt;
&lt;br /&gt;
In the module »Speculative Atmospheres« we will explore various artistic, technical and theoretical approaches to measuring, translating and interpreting environmental phenomena. &lt;br /&gt;
&lt;br /&gt;
We will learn techniques from the fields of DIY - electronics and creative coding (sensors/actuators, Arduino, processing, ...) and explore different positions from art, design, and the humanities. The aim of the course is to develop prototypes (e.g. installations, objects, performances, ...) that translate different states and actors of our »natural environment« (e.g. weather, animals, plants, ...) into new acoustic, visual and performative experiences. &lt;br /&gt;
&lt;br /&gt;
In addition to regular discussion groups and hands-on tutorials (online or in the electronics lab, depending on the situation), we undertake small excursions to Weimar&#039;s Ilm Park or the Thuringian countryside to test our ideas and experiments together in the field. &lt;br /&gt;
&lt;br /&gt;
The course is aimed at beginners with no previous knowledge as well as advanced students and participants of the first part (SS21, https://www.uni-weimar.de/kunst-und-gestaltung/wiki/GMU:Speculative_Atmospheres). A fee of max. 30 euros will be charged for material cost. Personal computers / laptops are required.&lt;br /&gt;
&lt;br /&gt;
==Participants==&lt;br /&gt;
* [[/Cosmo Niklas Schüppel/]]&lt;br /&gt;
* [[/Dahye Seo/]]&lt;br /&gt;
* [[/Nicolas Krewer/]]&lt;br /&gt;
* [[/Betül/]]&lt;br /&gt;
* [[/Sam Ryu/]]&lt;br /&gt;
* [[/Bo Liu/]]&lt;br /&gt;
* [[/Friedrich Wilhelm Albrecht Pittelkow/]]&lt;br /&gt;
* [[/Leandra/]]&lt;br /&gt;
* [[/Sophia Amelia Eickhoff/]]&lt;br /&gt;
* [[/Robin/]]&lt;br /&gt;
* [[/Peter/]]&lt;br /&gt;
&lt;br /&gt;
==Artists / Links==&lt;br /&gt;
* Kerstin Ergenzinger, https://www.nodegree.de/work/the-cosmic-and-the-affective/&lt;br /&gt;
* David Bowen, https://www.dwbowen.com/telepresent-wind&lt;br /&gt;
* Rasa Smite / Raitis Smits, http://smitesmits.com/PondBattery.html&lt;br /&gt;
* Jennifer Gabrys, https://www.jennifergabrys.net/&lt;br /&gt;
* Gil Delindro, http://www.delindro.com/fictional-forest.html&lt;br /&gt;
* Kat Austen, https://www.katausten.com/portfolio/the-matter-of-the-soul/&lt;br /&gt;
* Marco Barotti, https://www.marcobarotti.com/Moss&lt;br /&gt;
* Robertina Šebjanič, https://robertina.net/aurelia-1hz-proto-viva-sonification/&lt;br /&gt;
* Stefan Laxness, https://www.stefanlaxness.com/&lt;br /&gt;
* Kate Donovan, https://moveto.werkleitz.de/becoming-human-animal-plant-rocksair-modes-of-perceiving-nature/&lt;br /&gt;
* Marcus Maeder, https://marcusmaeder.ch/&lt;br /&gt;
* Petra Maitz, http://www.petramaitz.com/fs_works.htm&lt;br /&gt;
&lt;br /&gt;
==Schedule==&lt;br /&gt;
* October 20 – Introduction / Perception experiment&lt;br /&gt;
* October 27 – Arduino I&lt;br /&gt;
* November 3 – Arduino II&lt;br /&gt;
* November 10 – Processing &lt;br /&gt;
* November 17 – Arduino / Processing&lt;br /&gt;
* November 24 – sensor experiments&lt;br /&gt;
* December 1 – sensor experiments &lt;br /&gt;
:&lt;br /&gt;
* December 8 – online consultations&lt;br /&gt;
:10.00 - 10.30 – Leandra &lt;br /&gt;
:10.30 - 11.00 –&lt;br /&gt;
:11.30 - 12.00 – Cosmo Schüppel&lt;br /&gt;
:12.00 - 12.30 –  &lt;br /&gt;
:12.30 - 13.00 –&lt;br /&gt;
:13.00 - 13.30 – &lt;br /&gt;
* December 15 – online consultations&lt;br /&gt;
:10.00 - 10.30 – Robin Wieber&lt;br /&gt;
:10.30 - 11.00 – Betül Peker&lt;br /&gt;
:11.30 - 12.00 – Amelia&lt;br /&gt;
:12.00 - 12.30 –  Dahye Seo&lt;br /&gt;
:12.30 - 13.00 – Friedrich&lt;br /&gt;
:13.00 - 13.30 – Sam,Ryu&lt;br /&gt;
* January 5 – class presentations&lt;br /&gt;
* January 12 – consultations / hands on&lt;br /&gt;
* January 19 – consultations / hands on&lt;br /&gt;
* January 26 – consultations / hands on&lt;br /&gt;
* February 2 – consultations / hands on&lt;br /&gt;
* February 9 – final presentations&lt;br /&gt;
&lt;br /&gt;
==Topics==&lt;br /&gt;
===Technology===&lt;br /&gt;
* Getting started with electronics and Arduino&lt;br /&gt;
* Connecting and reading different sensors &lt;br /&gt;
* Getting familiar with output possibilities&lt;br /&gt;
* translating digital sensor data into physical phenomena (movements, sounds, …)&lt;br /&gt;
&lt;br /&gt;
===Art &amp;amp; Thinking===&lt;br /&gt;
* Contemporary (media) art positions that relate to the subject matter&lt;br /&gt;
* Different ways to observe processes and dependencies in our surroundings&lt;br /&gt;
* Strategies in working with sensor technologies and input/output systems&lt;br /&gt;
* Feedback mechanisms, cybernetic circuits&lt;br /&gt;
* Relations between humans – technology – „nature“/environment&lt;br /&gt;
* Relations between the physical and the digital&lt;br /&gt;
&lt;br /&gt;
==Literature==&lt;br /&gt;
=== (tech)===&lt;br /&gt;
* Make: Getting Started with Arduino, EAN 9781449363314&lt;br /&gt;
* Arduino Cookbook, O’REILLY, German/English, ISBN Print: 978-3-86899-353-0&lt;br /&gt;
* Das Sensor Buch, O’REILLY, ´German, ISBN 978-3-95561-902-2&lt;br /&gt;
* Make: Sensors, ISBN: 9781449368104&lt;br /&gt;
* Make: Getting Started with Processing, MIT Press, ISBN: 9781457187087 &lt;br /&gt;
* Processing: A Programming Handbook for Visual Designers, ISBN: 9780262028288&lt;br /&gt;
* Arduino Tutorials 1: https://www.arduino.cc/en/Tutorial/HomePage&lt;br /&gt;
* Arduino Tutorials 2: https://www.youtube.com/channel/UCfYfK0tzHZTpNFrc_NDKfTA&lt;br /&gt;
* Processing Tutorials 1: https://processing.org/tutorials/&lt;br /&gt;
* Processing Tutorials 2: https://www.youtube.com/channel/UCvjgXvBlbQiydffZU7m1_aw&lt;br /&gt;
* Our Sensor Kit @ Electronics Lab: [https://wiki.keyestudio.com/Category:Sensor LINK]&lt;br /&gt;
&lt;br /&gt;
=== (theory)===&lt;br /&gt;
* Jennifer Gabrys: How to do things with sensors, ISBN 10: 1517908310&lt;br /&gt;
* Jennifer Gabrys: Program Earth, ISBN-10: 9780816693146&lt;br /&gt;
* Ursula Damm / Mindaugas Gapsevicius (eds.): Shared Habitats. A Cultural Inquiry into Living Spaces and Their Inhabitants, [https://www.transcript-verlag.de/978-3-8376-5647-3/shared-habitats/ LINK]&lt;br /&gt;
* Bruno Latour: Circulating Reference, [https://www.uio.no/studier/emner/matnat/ifi/INF9200/v10/readings/papers/Latour.pdf LINK]&lt;br /&gt;
* Christiane Heibach: Dem Spüren auf der Spur: Zur Wahrnehmung biologischer und technischer sensorischer Systeme, [https://www.medienobservationen.de/pdf/20200430Heibach1.pdf LINK]  &lt;br /&gt;
* Laura Beloff, Erich Berger, Terike Haapoja (eds.): Field_Notes – From Landscape to Laboratory [https://s3.eu-central-1.amazonaws.com/hybridmatters-production/media/Field_Notes-From_Landscape_To_Laboratory-2013.pdf LINK]&lt;br /&gt;
* Hannes Bergthaller, Eva Horn: Anthropozän zur Einführung, ISBN 978-3-96060-311-5&lt;br /&gt;
* Donna Haraway: Staying with the Trouble. Making Kin in the Chthulucene, ISBN 10: 0822362244&lt;br /&gt;
* Jakob von Uexkuell: Streifzüge durch die Umwelten von Tieren und Menschen. Ein Bilderbuch unsichtbarer Welten [https://monoskop.org/images/1/1f/Uexkuell_Jakob_von_Streifzuge_durch_die_Umwelten_von_Tieren_und_Menschen_Ein_Bilderbuch_unsichtbarer_Welten_1956.pdf LINK]&lt;br /&gt;
&lt;br /&gt;
==Material fee / personal equipment==&lt;br /&gt;
* there will be a material fee of max. 30€ for basic things like Arduinos, breadboards, wires, … &lt;br /&gt;
* Links to the equipment needed will be sent via e-mail after our first meeting. &lt;br /&gt;
* Bringing your own laptop is required.&lt;br /&gt;
&lt;br /&gt;
==Venue / Structure==&lt;br /&gt;
The module will be equally split into physical meetings and online conferences. Physical meetings will take place at Marienstrasse 7 room 201, online conferences at https://meeting.uni-weimar.de/b/jor-irj-ap6-so8. We will have at least one excursion to the Ilm-Park or to the countryside around Weimar to test our ideas and prototypes in the field.&lt;br /&gt;
&lt;br /&gt;
==Language &amp;amp; skill level==&lt;br /&gt;
*The module will be held in English, unless all participants are speaking German.&lt;br /&gt;
*No prior knowledge of electronics/programming is required.&lt;br /&gt;
&lt;br /&gt;
==Application==&lt;br /&gt;
* The application deadline will be on October 17, 2021&lt;br /&gt;
* Please send an e-Mail with the subject „Application Speculative Atmospheres II“ to christian.doeller(at)uni-weimar.de&lt;br /&gt;
*Your e-mail should contain the following info:&lt;br /&gt;
::# Full name and matriculation number&lt;br /&gt;
::# course of study, BA/MA&lt;br /&gt;
::# Your e-mail address&lt;br /&gt;
::# A small PDF containing previous works&lt;br /&gt;
::# Your motivation for joining the module&lt;br /&gt;
&lt;br /&gt;
==Criteria for passing:==&lt;br /&gt;
&lt;br /&gt;
*document your thinking / working process on your wiki page&lt;br /&gt;
*experiment, attend the classes and develop your own prototype relating to the topic&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres/Robin_Wieber&amp;diff=127143</id>
		<title>GMU:Speculative Atmospheres/Robin Wieber</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres/Robin_Wieber&amp;diff=127143"/>
		<updated>2021-10-26T14:58:59Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&#039;&#039;[[Welcome to my Wiki page about my project in Speculative Atmospheres.]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Arduino light sensor]]&lt;br /&gt;
&lt;br /&gt;
[[File:Light img.png|400px]]&lt;br /&gt;
&lt;br /&gt;
This is my first Arduino Projekt. I visualised the data of a light sensor, to draw some rectangles on the canvas. The colours are randomized to show the light data in a better way. I was also able to use a microphone sensor to get a visualisation of music.&lt;br /&gt;
&lt;br /&gt;
[[experiment in the park]]&lt;br /&gt;
&lt;br /&gt;
[[:File:SR002XY.WAV]]&lt;br /&gt;
&lt;br /&gt;
We had a very interesting task at the Ilm Park. Our goal was to only focus on our surroundings. I mainly listened to the sound of birds. I was very fascinated how they communicate to each other. I made a 4ch Stereo recording, to share this experience. It had a very calming effect to me.&lt;br /&gt;
&lt;br /&gt;
[[final project]]&lt;br /&gt;
&lt;br /&gt;
My idea is to use the Arduino Touch Libary and an analog pin to sense the electrical capacitance of the human body with a plant. To achieve this i soldered a female midi port to the Arduino in order to control the sound of any synthesizer. I powered the Arduino with a battery.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:inside.jpeg|400px]]&lt;br /&gt;
&lt;br /&gt;
thoughts: Its very interesting how different, I and other people, treat this plant. Its like a connection built between the human and the plant through the Arduino and sound.&lt;br /&gt;
&lt;br /&gt;
[[exhibition]]&lt;br /&gt;
&lt;br /&gt;
Iam very happy about my project. It works well, and has effect I intended. A few things could be improved in the coding, but I want to look forward to a new Projekt in order to work with other sensors and discover new possibilities.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
[[File:WhatsApp Image 2021-10-26 at 16.06.23.jpeg|400px]]&lt;br /&gt;
&lt;br /&gt;
[[File:WhatsApp Image 2021-10-26 at 16.07.21.jpeg|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I really enjoyed the course. To work with a arduino in connection with nature was a very interesting experience.&lt;br /&gt;
Sometimes there were problems, which were hard to solve but the motivation to finish my project was bigger.&lt;br /&gt;
I also participate at the Speculative Atmospheres 2 course.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:WhatsApp_Image_2021-10-26_at_16.07.21.jpeg&amp;diff=127142</id>
		<title>File:WhatsApp Image 2021-10-26 at 16.07.21.jpeg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:WhatsApp_Image_2021-10-26_at_16.07.21.jpeg&amp;diff=127142"/>
		<updated>2021-10-26T14:21:42Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:WhatsApp_Image_2021-10-26_at_16.06.23.jpeg&amp;diff=127141</id>
		<title>File:WhatsApp Image 2021-10-26 at 16.06.23.jpeg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:WhatsApp_Image_2021-10-26_at_16.06.23.jpeg&amp;diff=127141"/>
		<updated>2021-10-26T14:21:42Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres/Robin_Wieber&amp;diff=127140</id>
		<title>GMU:Speculative Atmospheres/Robin Wieber</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres/Robin_Wieber&amp;diff=127140"/>
		<updated>2021-10-26T14:20:34Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[&#039;&#039;&#039;Arduino light sensor&#039;&#039;&#039;]]&lt;br /&gt;
&lt;br /&gt;
[[File:Light img.png|400px]]&lt;br /&gt;
&lt;br /&gt;
This is my first Arduino Projekt. I visualised the data of a light sensor, to draw some rectangles on the canvas. The colours are randomized to show the light data in a better way. I was also able to use a microphone sensor to get a visualisation of music.&lt;br /&gt;
&lt;br /&gt;
[[&#039;&#039;&#039;experiment in the park&#039;&#039;&#039;]]&lt;br /&gt;
&lt;br /&gt;
[[:File:SR002XY.WAV]]&lt;br /&gt;
&lt;br /&gt;
We had a very interesting task at the Ilm Park. Our goal was to only focus on our surroundings. I mainly listened to the sound of birds. I was very fascinated how they communicate to each other. I made a 4ch Stereo recoding, to share this experience. It had a very calming effect to me.&lt;br /&gt;
&lt;br /&gt;
[[&#039;&#039;&#039;final project&#039;&#039;]]&lt;br /&gt;
&lt;br /&gt;
My idea is to use the Arduino Touch Libary and an analog pin to sense the electrical capacitance of the human body with a plant. To achieve this i soldered a female midi port to the Arduino in order to control the sound of any synthesizer. I powered the Arduino with a battery.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:inside.jpeg|400px]]&lt;br /&gt;
&lt;br /&gt;
thoughts: Its very interesting how different, I and other people, treat this plant. Its like a connection built between the human and the plant through the Arduino and sound.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Inside.jpeg&amp;diff=127139</id>
		<title>File:Inside.jpeg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Inside.jpeg&amp;diff=127139"/>
		<updated>2021-10-26T14:16:47Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres/Robin_Wieber&amp;diff=126016</id>
		<title>GMU:Speculative Atmospheres/Robin Wieber</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres/Robin_Wieber&amp;diff=126016"/>
		<updated>2021-07-13T09:21:50Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[&#039;&#039;&#039;Arduino light sensor&#039;&#039;&#039;]]&lt;br /&gt;
&lt;br /&gt;
[[File:Light img.png|400px]]&lt;br /&gt;
&lt;br /&gt;
This is my first Arduino Projekt. I visualised the data of a light sensor, to draw some rectangles on the canvas. The colours are randomized to show the light data in a better way. I was also able to use a microphone sensor to get a visualisation of music.&lt;br /&gt;
&lt;br /&gt;
[[&#039;&#039;&#039;experiment in the park&#039;&#039;&#039;]]&lt;br /&gt;
&lt;br /&gt;
[[:File:SR002XY.WAV]]&lt;br /&gt;
&lt;br /&gt;
We had a very interesting task at the Ilm Park. Our goal was to only focus on our surroundings. I mainly listened to the sound of birds. I was very fascinated how they communicate to each other. I made a 4ch Stereo recoding, to share this experience. It had a very calming effect to me.&lt;br /&gt;
&lt;br /&gt;
[[&#039;&#039;&#039;final project&#039;&#039;]]&lt;br /&gt;
&lt;br /&gt;
My idea is to use the Arduino Touch Libary and an analog pin to sense the electrical capacitance of the human body with a plant. To achieve this i soldered a female midi port to the Arduino in order to control the sound of any synthesizer.&lt;br /&gt;
&lt;br /&gt;
thoughts: Its very interesting how different, I and other people, treat this plant. Its like a connection built between the human and the plant through the Arduino and sound.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres/Robin_Wieber&amp;diff=126015</id>
		<title>GMU:Speculative Atmospheres/Robin Wieber</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres/Robin_Wieber&amp;diff=126015"/>
		<updated>2021-07-13T09:15:16Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[&#039;&#039;&#039;Arduino light sensor&#039;&#039;&#039;]]&lt;br /&gt;
&lt;br /&gt;
[[File:Light img.png|400px]]&lt;br /&gt;
&lt;br /&gt;
This is my first Arduino Projekt. I visualised the data of a light sensor, to draw some rectangles on the canvas. The colours are randomized to show the light data in a better way. I was also able to use a microphone sensor to get a visualisation of music.&lt;br /&gt;
&lt;br /&gt;
[[&#039;&#039;&#039;experiment in the park&#039;&#039;&#039;]]&lt;br /&gt;
&lt;br /&gt;
[[:File:SR002XY.WAV]]&lt;br /&gt;
&lt;br /&gt;
We had a very interesting task at the Ilm Park. Our goal was to only focus on our surroundings. I mainly listened to the sound of birds. I was very fascinated how they communicate to each other. I made a 4ch Stereo recoding, to share this experience. It had a very calming effect to me.&lt;br /&gt;
&lt;br /&gt;
[[&#039;&#039;&#039;final project&#039;&#039;]]&lt;br /&gt;
&lt;br /&gt;
My idea is, to use the Arduino Touch Libary and an analog pin to sense the electrical capacitance of the human body with a plant. To achieve this i soldered a female midi port to the Arduino.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres/Robin_Wieber&amp;diff=124365</id>
		<title>GMU:Speculative Atmospheres/Robin Wieber</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres/Robin_Wieber&amp;diff=124365"/>
		<updated>2021-05-18T11:21:32Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[&#039;&#039;&#039;Arduino light sensor&#039;&#039;&#039;]]&lt;br /&gt;
&lt;br /&gt;
[[File:Light img.png|400px]]&lt;br /&gt;
&lt;br /&gt;
This is my first Arduino Projekt. I visualised the data of a light sensor, to draw some rectangles on the canvas. The colours are randomized to show the light data in a better way. I was also able to use a microphone sensor to get a visualisation of music.&lt;br /&gt;
&lt;br /&gt;
[[&#039;&#039;&#039;experiment in the Park&#039;&#039;&#039;]]&lt;br /&gt;
&lt;br /&gt;
[[:File:SR002XY.WAV]]&lt;br /&gt;
&lt;br /&gt;
We had a very interesting task at the Ilm Park. Our goal was to only focus on our surroundings. I mainly listened to the sound of birds. I was very fascinated how they communicate to each other. I made a 4ch Stereo recoding, to share this experience. It had a very calming effect to me.&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:SR002XY.WAV&amp;diff=124364</id>
		<title>File:SR002XY.WAV</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:SR002XY.WAV&amp;diff=124364"/>
		<updated>2021-05-18T11:13:33Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Light_img.png&amp;diff=124363</id>
		<title>File:Light img.png</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Light_img.png&amp;diff=124363"/>
		<updated>2021-05-18T11:02:37Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Arduino_light_sensor.png&amp;diff=124279</id>
		<title>File:Arduino light sensor.png</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Arduino_light_sensor.png&amp;diff=124279"/>
		<updated>2021-05-16T19:18:26Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Bildschirmfoto_2021-05-10_um_19.49.32_(2).png&amp;diff=124070</id>
		<title>File:Bildschirmfoto 2021-05-10 um 19.49.32 (2).png</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Bildschirmfoto_2021-05-10_um_19.49.32_(2).png&amp;diff=124070"/>
		<updated>2021-05-11T18:15:06Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres/Robin_Wieber&amp;diff=124069</id>
		<title>GMU:Speculative Atmospheres/Robin Wieber</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres/Robin_Wieber&amp;diff=124069"/>
		<updated>2021-05-11T18:14:37Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: Created blank page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres&amp;diff=123087</id>
		<title>GMU:Speculative Atmospheres</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres&amp;diff=123087"/>
		<updated>2021-04-16T15:26:54Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[:Category:Fachmodul|Werk/Fachmodul]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;Lecturer:&#039;&#039; [[Christian Doeller]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;Credits:&#039;&#039; 6 [[ECTS]], 4 [[SWS]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;Date:&#039;&#039; Tuesday, 9:30 until 12:45&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;Venue:&#039;&#039; Online, &amp;quot;Park an der Ilm&amp;quot; and [[Marienstraße 7b]], Room 201&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;First meeting:&#039;&#039; April 13, 9.30&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Video Link:&amp;lt;/u&amp;gt;  https://vimeo.com/532615636 &amp;lt;br&amp;gt;&lt;br /&gt;
Password: speculativeAtmospheres&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Description:&amp;lt;/u&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
How can we sharpen our perception and look at the seemingly familiar from a&lt;br /&gt;
new perspective?&lt;br /&gt;
&lt;br /&gt;
In the module &amp;quot;Speculative Atmospheres&amp;quot; we will explore the ever-changing&lt;br /&gt;
states of our environment. We will operate by means of our own senses as well&lt;br /&gt;
as with the filters, magnifying glasses and distorting mirrors of technical&lt;br /&gt;
systems.&lt;br /&gt;
&lt;br /&gt;
We will experiment with Arduino, Processing and various sensors to convert&lt;br /&gt;
environmental phenomena into electrical voltages and numerical values.&lt;br /&gt;
Through visualizations, sounds or kinetic objects, we will generate new&lt;br /&gt;
sensory experiences from the collected data.&lt;br /&gt;
&lt;br /&gt;
Our class will partly take place in the &amp;quot;Park an der Ilm“ in Weimar. Here we will&lt;br /&gt;
take walks, train our perception, test ideas and develop prototypes. The park&lt;br /&gt;
as a hybrid ecosystem will be our experimental laboratory, our speculative&lt;br /&gt;
atmosphere.&lt;br /&gt;
&lt;br /&gt;
The module will be a mix of technical, &amp;quot;creative&amp;quot; and theoretical components. The aim is to not only work together on our technological capabilities, but also to critically look at the topics/positions/ideas we are dealing with.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Participants:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [[/please put your name here and create your page/]]&lt;br /&gt;
* [[/Robin Wieber/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Artists / Links:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://olafureliasson.net/archive/artwork/WEK101003/the-weather-project Olafur Eliasson: The Weather Project] &lt;br /&gt;
* [https://www.nodegree.de/work/the-cosmic-and-the-affective/ Kerstin Ergenzinger: The Cosmic and the Affective] &lt;br /&gt;
* [http://ursuladamm.de/sensor/ Ursula Damm: I am a Sensor] &lt;br /&gt;
* [http://www.blubblubb.net/OneTreeID/index.html Agnes Meyer Brandis: One Tree ID] &lt;br /&gt;
* [https://www.youtube.com/watch?v=stFyG_AAje8 Céleste Boursier-Mougenot: From Here to Ear] &lt;br /&gt;
* [https://www.dwbowen.com/telepresent-wind David Bowen: Telepresent Wind (...)] &lt;br /&gt;
* [https://www.marcobarotti.com/Clams Marco Barotti: Clams] &lt;br /&gt;
* [http://smitesmits.com/PondBattery.html Rasa Smite &amp;amp; Raitis Smits: Pond Battery / Swamp Radio] &lt;br /&gt;
* [https://www.niklasroy.com/workshop/144/ Niklas Roy: Umbrellaphone Workshop] &lt;br /&gt;
* [https://www.youtube.com/watch?v=WO7f1mXuWe4 DIY#1], [https://www.youtube.com/watch?v=wIzwv6LcriA DIY#2], [https://www.youtube.com/watch?v=O_Q1WKCtWiA&amp;amp;t=327s DIY#3]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Topics:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Technology:&lt;br /&gt;
*Getting started with Arduino&lt;br /&gt;
*Connecting and reading different sensors &lt;br /&gt;
*Getting familiar with different output possibilities&lt;br /&gt;
*Basic visualizations with Processing&lt;br /&gt;
*Establishing a ping-pong connection between Arduino and Processing&lt;br /&gt;
*translating sensor data into movements, drawings, sounds…&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Art &amp;amp; Thinking:&lt;br /&gt;
*Contemporary (media) art positions that relate to the subject matter&lt;br /&gt;
*Different ways to observe processes and dependencies in our surroundings&lt;br /&gt;
*Strategies in working with sensor technologies and input/output systems&lt;br /&gt;
*Feedback mechanisms, cybernetic circuits&lt;br /&gt;
*Relations between humans – technology – „nature“/environment&lt;br /&gt;
*Relations between the physical and the digital&lt;br /&gt;
* // DIY: make your own sensor&lt;br /&gt;
* // Anthroprocene - discourse&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Literature:&amp;lt;/u&amp;gt;&lt;br /&gt;
*Make: Getting Started with Arduino, EAN 9781449363314&lt;br /&gt;
*Arduino Cookbook, O’REILLY, German/English, ISBN Print: 978-3-86899-353-0&lt;br /&gt;
*Das Sensor Buch, O’REILLY, ´German, ISBN 978-3-95561-902-2&lt;br /&gt;
*Make: Sensors, ISBN: 9781449368104&lt;br /&gt;
*Make: Getting Started with Processing, MIT Press, ISBN: 9781457187087 &lt;br /&gt;
*Processing: A Programming Handbook for Visual Designers, ISBN: 9780262028288&lt;br /&gt;
*Arduino Tutorials 1: https://www.arduino.cc/en/Tutorial/HomePage&lt;br /&gt;
*Arduino Tutorials 2: https://www.youtube.com/channel/UCfYfK0tzHZTpNFrc_NDKfTA&lt;br /&gt;
*Processing Tutorials 1: https://processing.org/tutorials/&lt;br /&gt;
*Processing Tutorials 2: https://www.youtube.com/channel/UCvjgXvBlbQiydffZU7m1_aw&lt;br /&gt;
*Karen barad: Agential Realism / Agentieller Realismus, ISBN 9783518260456&lt;br /&gt;
*Hannes Bergthaller, Eva Horn: Anthropozän zur Einführung, ISBN 978-3-96060-311-5&lt;br /&gt;
*Klimakunstforschung, ISBN: 3883962996&lt;br /&gt;
*Christiane Heibach: Dem Spüren auf der Spur: Zur Wahrnehmung biologischer und technischer sensorischer Systeme, Link: https://www.medienobservationen.de/pdf/20200430Heibach1.pdf  &lt;br /&gt;
*Verena Kuni: The Plants Are (Watching) Sensing, Link: https://www.medienobservationen.de/pdf/20200430Kuni6.pdf &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Material fee / personal equipment:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*there will be a material fee of max. 30€ for basic things like Arduinos, breadboards, wires, … &lt;br /&gt;
*Links to the equipment needed will be sent via e-mail. &lt;br /&gt;
*Our module will partly take place outside, bringing your own laptop is required.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Venue / Structure:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The module will initially be held online via video conference. However, there will be lots of practical exercises that explicitly involve &amp;quot;the outside world&amp;quot;.&lt;br /&gt;
In summer, it is planned to have sessions outside in the &amp;quot;Park an der Ilm&amp;quot; in Weimar, perhaps also in a kind of classroom situation in the DIY electronics studio in M7 201.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Language &amp;amp; skill level:&amp;lt;/u&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
*The module will be held in English, unless all participants are speaking German.&lt;br /&gt;
*No prior knowledge of electronics/programming is required.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Criteria for passing:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*document exercises on the wiki, present them for the rest of the class&lt;br /&gt;
*experiment, attend the classes and develop your own prototype relating to the topic &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Application:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*The application deadline will be on April 6, 2021&lt;br /&gt;
*Please send an e-Mail with the subject „Application Speculative Atmospheres“ to melanie.birnschein[AT]uni-weimar.de &lt;br /&gt;
*Your e-mail should contain the following info:&lt;br /&gt;
::# Full name and matriculation number&lt;br /&gt;
::# course of study, BA/MA&lt;br /&gt;
::# Your e-mail address&lt;br /&gt;
::# A small PDF containing previous works&lt;br /&gt;
::# Your motivation for joining the module&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres&amp;diff=123086</id>
		<title>GMU:Speculative Atmospheres</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Speculative_Atmospheres&amp;diff=123086"/>
		<updated>2021-04-16T15:23:49Z</updated>

		<summary type="html">&lt;p&gt;Robinwieber: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[:Category:Fachmodul|Werk/Fachmodul]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;Lecturer:&#039;&#039; [[Christian Doeller]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;Credits:&#039;&#039; 6 [[ECTS]], 4 [[SWS]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;Date:&#039;&#039; Tuesday, 9:30 until 12:45&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;Venue:&#039;&#039; Online, &amp;quot;Park an der Ilm&amp;quot; and [[Marienstraße 7b]], Room 201&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;First meeting:&#039;&#039; April 13, 9.30&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Video Link:&amp;lt;/u&amp;gt;  https://vimeo.com/532615636 &amp;lt;br&amp;gt;&lt;br /&gt;
Password: speculativeAtmospheres&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Description:&amp;lt;/u&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
How can we sharpen our perception and look at the seemingly familiar from a&lt;br /&gt;
new perspective?&lt;br /&gt;
&lt;br /&gt;
In the module &amp;quot;Speculative Atmospheres&amp;quot; we will explore the ever-changing&lt;br /&gt;
states of our environment. We will operate by means of our own senses as well&lt;br /&gt;
as with the filters, magnifying glasses and distorting mirrors of technical&lt;br /&gt;
systems.&lt;br /&gt;
&lt;br /&gt;
We will experiment with Arduino, Processing and various sensors to convert&lt;br /&gt;
environmental phenomena into electrical voltages and numerical values.&lt;br /&gt;
Through visualizations, sounds or kinetic objects, we will generate new&lt;br /&gt;
sensory experiences from the collected data.&lt;br /&gt;
&lt;br /&gt;
Our class will partly take place in the &amp;quot;Park an der Ilm“ in Weimar. Here we will&lt;br /&gt;
take walks, train our perception, test ideas and develop prototypes. The park&lt;br /&gt;
as a hybrid ecosystem will be our experimental laboratory, our speculative&lt;br /&gt;
atmosphere.&lt;br /&gt;
&lt;br /&gt;
The module will be a mix of technical, &amp;quot;creative&amp;quot; and theoretical components. The aim is to not only work together on our technological capabilities, but also to critically look at the topics/positions/ideas we are dealing with.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Participants:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [[/please put your name here and create your page/]]&lt;br /&gt;
Robin Wieber&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Artists / Links:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://olafureliasson.net/archive/artwork/WEK101003/the-weather-project Olafur Eliasson: The Weather Project] &lt;br /&gt;
* [https://www.nodegree.de/work/the-cosmic-and-the-affective/ Kerstin Ergenzinger: The Cosmic and the Affective] &lt;br /&gt;
* [http://ursuladamm.de/sensor/ Ursula Damm: I am a Sensor] &lt;br /&gt;
* [http://www.blubblubb.net/OneTreeID/index.html Agnes Meyer Brandis: One Tree ID] &lt;br /&gt;
* [https://www.youtube.com/watch?v=stFyG_AAje8 Céleste Boursier-Mougenot: From Here to Ear] &lt;br /&gt;
* [https://www.dwbowen.com/telepresent-wind David Bowen: Telepresent Wind (...)] &lt;br /&gt;
* [https://www.marcobarotti.com/Clams Marco Barotti: Clams] &lt;br /&gt;
* [http://smitesmits.com/PondBattery.html Rasa Smite &amp;amp; Raitis Smits: Pond Battery / Swamp Radio] &lt;br /&gt;
* [https://www.niklasroy.com/workshop/144/ Niklas Roy: Umbrellaphone Workshop] &lt;br /&gt;
* [https://www.youtube.com/watch?v=WO7f1mXuWe4 DIY#1], [https://www.youtube.com/watch?v=wIzwv6LcriA DIY#2], [https://www.youtube.com/watch?v=O_Q1WKCtWiA&amp;amp;t=327s DIY#3]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Topics:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Technology:&lt;br /&gt;
*Getting started with Arduino&lt;br /&gt;
*Connecting and reading different sensors &lt;br /&gt;
*Getting familiar with different output possibilities&lt;br /&gt;
*Basic visualizations with Processing&lt;br /&gt;
*Establishing a ping-pong connection between Arduino and Processing&lt;br /&gt;
*translating sensor data into movements, drawings, sounds…&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Art &amp;amp; Thinking:&lt;br /&gt;
*Contemporary (media) art positions that relate to the subject matter&lt;br /&gt;
*Different ways to observe processes and dependencies in our surroundings&lt;br /&gt;
*Strategies in working with sensor technologies and input/output systems&lt;br /&gt;
*Feedback mechanisms, cybernetic circuits&lt;br /&gt;
*Relations between humans – technology – „nature“/environment&lt;br /&gt;
*Relations between the physical and the digital&lt;br /&gt;
* // DIY: make your own sensor&lt;br /&gt;
* // Anthroprocene - discourse&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Literature:&amp;lt;/u&amp;gt;&lt;br /&gt;
*Make: Getting Started with Arduino, EAN 9781449363314&lt;br /&gt;
*Arduino Cookbook, O’REILLY, German/English, ISBN Print: 978-3-86899-353-0&lt;br /&gt;
*Das Sensor Buch, O’REILLY, ´German, ISBN 978-3-95561-902-2&lt;br /&gt;
*Make: Sensors, ISBN: 9781449368104&lt;br /&gt;
*Make: Getting Started with Processing, MIT Press, ISBN: 9781457187087 &lt;br /&gt;
*Processing: A Programming Handbook for Visual Designers, ISBN: 9780262028288&lt;br /&gt;
*Arduino Tutorials 1: https://www.arduino.cc/en/Tutorial/HomePage&lt;br /&gt;
*Arduino Tutorials 2: https://www.youtube.com/channel/UCfYfK0tzHZTpNFrc_NDKfTA&lt;br /&gt;
*Processing Tutorials 1: https://processing.org/tutorials/&lt;br /&gt;
*Processing Tutorials 2: https://www.youtube.com/channel/UCvjgXvBlbQiydffZU7m1_aw&lt;br /&gt;
*Karen barad: Agential Realism / Agentieller Realismus, ISBN 9783518260456&lt;br /&gt;
*Hannes Bergthaller, Eva Horn: Anthropozän zur Einführung, ISBN 978-3-96060-311-5&lt;br /&gt;
*Klimakunstforschung, ISBN: 3883962996&lt;br /&gt;
*Christiane Heibach: Dem Spüren auf der Spur: Zur Wahrnehmung biologischer und technischer sensorischer Systeme, Link: https://www.medienobservationen.de/pdf/20200430Heibach1.pdf  &lt;br /&gt;
*Verena Kuni: The Plants Are (Watching) Sensing, Link: https://www.medienobservationen.de/pdf/20200430Kuni6.pdf &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Material fee / personal equipment:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*there will be a material fee of max. 30€ for basic things like Arduinos, breadboards, wires, … &lt;br /&gt;
*Links to the equipment needed will be sent via e-mail. &lt;br /&gt;
*Our module will partly take place outside, bringing your own laptop is required.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Venue / Structure:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The module will initially be held online via video conference. However, there will be lots of practical exercises that explicitly involve &amp;quot;the outside world&amp;quot;.&lt;br /&gt;
In summer, it is planned to have sessions outside in the &amp;quot;Park an der Ilm&amp;quot; in Weimar, perhaps also in a kind of classroom situation in the DIY electronics studio in M7 201.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Language &amp;amp; skill level:&amp;lt;/u&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
*The module will be held in English, unless all participants are speaking German.&lt;br /&gt;
*No prior knowledge of electronics/programming is required.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Criteria for passing:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*document exercises on the wiki, present them for the rest of the class&lt;br /&gt;
*experiment, attend the classes and develop your own prototype relating to the topic &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Application:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*The application deadline will be on April 6, 2021&lt;br /&gt;
*Please send an e-Mail with the subject „Application Speculative Atmospheres“ to melanie.birnschein[AT]uni-weimar.de &lt;br /&gt;
*Your e-mail should contain the following info:&lt;br /&gt;
::# Full name and matriculation number&lt;br /&gt;
::# course of study, BA/MA&lt;br /&gt;
::# Your e-mail address&lt;br /&gt;
::# A small PDF containing previous works&lt;br /&gt;
::# Your motivation for joining the module&lt;/div&gt;</summary>
		<author><name>Robinwieber</name></author>
	</entry>
</feed>