ARTS-A0407 – Digital Sculpture 3 (2cr)
Lecture 1, 8.1.2020
Share (for example) your:
2op = 54h, Lectures = 22h, Independent work = 32h
Submission: short video and written description submitted with mycourses or WeTransfer (or link to google drive etc...)
Wednesdays and Thursdays 8.1.-13.2. at G014 Mekatroniikka, Väre (Mechatronics lab)
Can you bring a laptop to class?
Niklas Roy - My little piece of Privacy
Chris Eckert - Blink
Marloes Van Son - Devices
LMNC - Animatronic Face For 30 Quid
Koka Nikoladze - Koka’s Stepper Miniature
Few examples of my work
arduino.cc -> software
Open Arduino IDE and let's go trough the different elements
// Arduino Hello World!
// Simple test program to blink the built in LED
// These lines starting with forward slashes are comments
// Comments are for humans and computer ignores these so no need to copy comment
// There's one mistake in the following code. Can you spot it?
// Also, the led is only turned on. How could we also turn the led off so that it blinks?
int LED_PIN = 13; // A line of code, ending in semicolon
// Here we define an integer variable named 'LED_PIN' and assign a value '13'
// A function named 'setup' that doesn't take arguments
// This is a special function that is executed when the arduino starts
void setup() {
pinMode(LED_PIN, OUTPUT);
// https://www.arduino.cc/reference/en/language/functions/digital-io/pinmode/
// Here we call a function called 'pinMode'
// The function takes two arguments: pin number, and mode
// We set the pin 13 as an output pin
}
// A function named 'loop' that doesn't take arguments
// This is a special function that is executed over and over again
void loop() {
}