Difference between revisions of "User:Much W0W"
Line 64: | Line 64: | ||
− | = | + | = project 2: Cybernetic Prosthetics: The Sixth Sense project = |
Revision as of 10:05, 15 January 2019
Contents
Cybernetics: Working with self-organizing systems
Project 1 memes, Team: Much W0W,Lau.raket.ting,.....,.....,
Obama remix meme - politiek geladen? https://www.youtube.com/watch?v=Ofu_089eZyI
Inspiration/ research:
- Toekomst is hele normale manier van leven
- Mensen hun leven verpest door memes
- Politiek geladen
- Positieve feedback loops
- Gecompliceerde wereld
- memes van memes
- Mierenkolonie (interessant voor de video) (errors)
- The Sapir-Whorf hypothesis
- (arrival film) beïnvloedt denkwijze
- Meme taal
meme maker nu in gallery / By Any Memes Necessary in Los Angeles.
/https://www.instagram.com/ka5sh/?hl=en
viceland
https://www.viceland.com/en_us/video/cyberwar-the-great-meme-war/595f95afd978e31b73496a7e
Kim de groot/ memewars
how language change the way we think
https://www.ted.com/talks/lera_boroditsky_how_language_shapes_the_way_we_think#t-287075
KEK
fact: kek is LOL in the language use in world of warcraft.
https://knowyourmeme.com/memes/kek
VPRO DOCU
https://www.vpro.nl/programmas/tegenlicht/kijk/afleveringen/2017-2018/Trollen--Trump---Thierry.html
result video dystopie future meme
about the video
In a digital future we become more familiar with digital language. Even so this will become the language we will use. There will be a point in witch normies become absolute. What will this new/current language do to use as a species? (The Sapir-Whorf hypothesis) The youth of today understand the meme language but our parent do not. It is a generation gab that continuously grows. In the video we made we use the language with story telling. What we found out is that the youth kind of understands what is going on, but elderly totally not.
https://www.youtube.com/watch?v=2TM3ReavUcA&feature=youtu.be
project 2: Cybernetic Prosthetics: The Sixth Sense project
Code and practicalities
The LED light goes in digital input 11 and Ground
The current lead wire is attachted to Analog output 1 and attached to a 1M resistor stated in analog output 5.
We used this code for the Arduino Software: // Aaron ALAI EMF Detector April 22nd 2009 VERSION 1.0 // aaronalai1@gmail.com // *future note, put in averaging function to average val which should result in a more // smooth response from the led. I will give you a hint on how to make an averaging function; // it involves the use of an array
int inPin = 5; // analog 5
int val = 0; // where to store info from analog 5
int pin11 = 11; // output of red led
void setup() {
Serial.begin(9600);
}
void loop() {
val = analogRead(inPin); // reads in the values from analog 5 and //assigns them to val if(val >= 1){ val = constrain(val, 1, 100); // mess with these values val = map(val, 1, 100, 1, 255); // to change the response distance of the device analogWrite(pin11, val); // *note also messing with the resistor should change // the sensitivity }else{ // analogWrite(pin11, val); just tuns on the led with // the intensity of the variable val analogWrite(pin11, 0); // the else statement is just telling the microcontroller // to turn off the light if there is no EMF detected } Serial.println(val); // use output to aid in calibrating
}
You can use a variety of materials to use as an EMF antenna, all with different sensitivities and possibilities.
We also used a variety of different materials but found that a simple alligator clip attached to the resistor works best and finds a good balance between the sensitivities.