Difference between revisions of "How it's made 2223"

From Interaction Station Wiki
Jump to navigation Jump to search
Line 24: Line 24:
 
</pre>
 
</pre>
 
==== Simple Led blink example ====
 
==== Simple Led blink example ====
[[File:Led-blink.png|thumb|left]]
+
[[File:Led-blink.png|400px|left]]
 
<pre>
 
<pre>
 
int ledPin = 13;              //the int ledPin is 13
 
int ledPin = 13;              //the int ledPin is 13

Revision as of 09:34, 15 September 2022

    __  __                 _ __ _                              __   
   / / / /___ _      __   (_) /( )_____   ____ ___  ____ _____/ /__ 
  / /_/ / __ \ | /| / /  / / __/// ___/  / __ `__ \/ __ `/ __  / _ \
 / __  / /_/ / |/ |/ /  / / /_  (__  )  / / / / / / /_/ / /_/ /  __/
/_/ /_/\____/|__/|__/  /_/\__/ /____/  /_/ /_/ /_/\__,_/\__,_/\___/ 
                                                                    

2022-09-08

  • WH.02.125 (Prototyping Space IAS) 9:00 - 16:00

Introduction or "Hello World"

1. Circuit bending

2. Introduction Arduino

Hello World!

void setup() {
}

void loop() {
  Serial.println("Hello World!");   //sends a message to the computer
}

Simple Led blink example

Led-blink.png
int ledPin = 13;               //the int ledPin is 13

void setup() {
  pinMode(ledPin,OUTPUT);      //ledPin is a OUTPUT
}

void loop() {
  digitalWrite(ledPin,HIGH);   //turns pin 13 on
  delay(500);                  //stops the loop for 500 milliseconds
  digitalWrite(ledPin,LOW);    //turns pin 13 off
  delay(500);                  //stops the loop for 500 milliseconds
}

2022-09-15

  • WH.02.125 (Prototyping Space IAS) 9:00 - 16:00

Example 1

2022-09-22

  • WH.02.110 (Instruction Room IAS) 9:00 - 16:00

Drawing machine and mechanical musicinstrumments

  • tinguely metamatics - drawing machine
  • working with servos
  • working with sensors
  • bells

2022-09-29

  • WH.02.110 (Instruction Room IAS) 9:00 - 16:00

Theremin

2022-10-06

  • WH.02.110 (Instruction Room IAS) 9:00 - 16:00

Heartbeat controlling light

2022-10-13

  • WH.02.110 (Instruction Room IAS) 9:00 - 16:00