70% OFF" SALE at : SSENSE.COM SHOP ERIS BLACK Consumed now! Shop EasyMoney ..
trying on a metaphor
i don't do bad sauce passes
we're not kids anymore.
dirt enthusiast

Discoholic 🪩
Sweet Seals For You, Always
Claire Keane
DEAR READER

Origami Around

No title available

No title available

❣ Chile in a Photography ❣
No title available

Kaledo Art
tumblr dot com
I'd rather be in outer space 🛸

JVL

Andulka
cherry valley forever
Xuebing Du
seen from United States
seen from United Kingdom

seen from Malaysia
seen from Russia

seen from Germany

seen from Malaysia

seen from United States
seen from Mexico

seen from Türkiye

seen from United States

seen from United States
seen from Italy

seen from United States

seen from United States
seen from United States
seen from United States
seen from United States
seen from United States

seen from United States
seen from United States
@vallyeah
70% OFF" SALE at : SSENSE.COM SHOP ERIS BLACK Consumed now! Shop EasyMoney ..
These 6 Charities Show the Caring Side of Sneaker Culture
Where to buy
Follow on fancy
Conductive Origami by Yael Akirav Unites 3-D Printing and Textiles to Create Foldable Modern Light Fixtures
sometimes i wonder why our generation’s sense of humour is Like This and then i remember that one episode of spongebob where patrick is stressed about his parents visiting and the punchline is that his real parents show up at the end and the random couple that had visited him are like ‘oh right we don’t have a son lmao’ and walk off without another fucking word
That was the scariest truth I’ve heard all night thanks my world is blue now lol
Boomtown, Jason Anderson
Featured New Art by Casey Weldon
Casey Weldon is an American illustrator and fine artist known for his brightly-colored surrealist paintings. For more check out his website.
Keep up with all your favorite artists on our Facebook page.
posted by Margaret from tu recepcja
esp the people who did it alone
…..that one child who did it with both legs is from an alternative timeline
Tenorless: Gorgeous Flowing Motion
Note: The artwork above is edited gif clips of the work of Tenorless. To see the full length and full motion video with sound, visit the Instagram page of Tenorless.
Tenorless recently graduated in New Media from University of North Carolina at Asheville and has become a passionate advocate of the software Touchdesigner, which is a ‘node based visual programming language for real time interactive multimedia content’ that has captured the imagination of many artists due to its ability to create real time moving images like the clips you see above. It is used by EDM artists such as DeadMau5 for their live shows. Tenorless is an artist with a fertile and wide ranging imagination, and with a tool like Touchdesigner in his hands he is able to create beautifully flowing textures and imagery. Seeing such imagery on giant screens backed by EDM music must be quite an experience.
Posted by David
More unique art on Cross Connect Magazine:
Facebook || Instagram
Week 12 // progress and project
So this week the important thing to do was to figure out what sensors to use for our final project and finalize the roles and the storyline for our project.
Week 11//Finding a class
Things i learnt: In a tab i would write:
class Ghosts{ data: only bubble has xy
constructor: Ghosts() { x = y=
}
void display() function inside a class - in the original tab it is g.display(); under void draw
}
for this project i decided to edit my ‘ghostwho’ project back in week4: and i seperated them into tabs:
This is the code:
Week 10 // Serve-that-motor
Code #1: goes to whichever angle you want
#include <Servo.h>
Servo myservo;
void setup(){ myservo.attach(2); //connected to pin2 }
void loop() { myservo.write(0); //try to change to 0-180 range //it would go to this angle stated above delay(50); //stabilize myservo.write(70); delay(50); myservo.write(180); delay(50); }
Code #2: spins back and forth 0~180degrees with delay
#include <Servo.h>Servo myservo;void setup(){ myservo.attach(2); //connected to pin2 }void loop() { for (int i=0; i<=180; i++){ myservo.write(i); //try to change to 0-180 range delay(100); //stabilize } for (int i=180; i>=0; i--){ myservo.write(i); //try to change to 0-180 range delay(100); //stabilize }}
however, using such for statements make the sketch very limited. it would take too long to register ^ this code which would not allow the arduino to read any other sensor attached while the code runs
Code #3: simplifying the code using variables
#include <Servo.h>Servo myservo; int angle = 0; int angleSpeed = 1;void setup(){ myservo.attach(2); //connected to pin2 }void loop() { myservo.write(angle); angle += angleSpeed; if (angle<0 || angle>180){ angleSpeed = angleSpeed *-1; } delay(50); }
if you use more than one you can use batteries - 4 AAA batteries - 6V for 3? common ground - when youre trying to use different circuits always connect the ground
types of motors - servo motors - 0~180degrees and 0~360degrees Dc motors - need more electronic components (motordriver) Stepping motors - 3D printers - need more electronic components(motordriver)
Arduino->Processing//team project//week 9
Make a processing application that uses one (or more) sensor value
We created a game involving the use of a light sensor because we couldn't find out a proper way to use the NFC sensor we researched about last week. We followed professor’s recommendation last week: ‘Recommended using last week’s sensor. (Not mandatory)’. All the videos for reference and the codes are in this google drive: https://drive.google.com/drive/folders/16dJd2E7Uv0RuhlUK5RFaGAn7eHf47_zV?usp=sharing
PowerPoint for NFC RFID intro
Week8//Arduino - Processing comms
Basically, you’re using 2 computers talking to each other. From arduino, to processing
Week 8 // Potentiomeether
Physical facts:
Potentiometer + & - if the analog pin is on top the bottom left pin is -ve and the bottom right pin is +ve
Digital out pins those w squiggly lines ~~~ - are tildes Those @ pins 11,10,9,6,5,3 = PWM pins “ CAN BE analog OUT pins