40
edits
Robinwieber (talk | contribs) No edit summary |
Robinwieber (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :) | Hi iam Robin and this is the journey of my Speculative Atmospheres Projekt. :) | ||
== '''[[Color connection]]''' == | == '''[[Color connection]]''' == | ||
Line 52: | Line 51: | ||
[[How I split the values in Processing]] | [[How I split the values in Processing]] | ||
<source style="border:none; height: | <source style="border:none; height:250px; overflow:scroll;" lang="c" line start="55" highlight="4"> | ||
if (port.available() > 0) { | if (port.available() > 0) { | ||
val = port.readStringUntil('\n'); | val = port.readStringUntil('\n'); | ||
Line 62: | Line 61: | ||
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. | 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. | ||
[[Example of a transition from warm (Bathroom) to cold (outside):]] | |||
https://vimeo.com/674980284 | |||
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. | 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. | ||
Line 67: | Line 70: | ||
[[Random Code in processing:]] | [[Random Code in processing:]] | ||
<source style="border:none; height: | <source style="border:none; height:550px; overflow:scroll;" lang="c" line start="55" highlight="4"> | ||
t2 = map(hum, 10, 100, 400, 800); | t2 = map(hum, 10, 100, 400, 800); | ||
r = map(temp, 5, 30, 0, 255); | r = map(temp, 5, 30, 0, 255); |
edits