블로그 이미지
Leeway is... the freedom that someone has to take the action they want to or to change their plans.
maetel

Notice

Recent Post

Recent Comment

Recent Trackback

Archive

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
  • total
  • today
  • yesterday

Category

'Arduino'에 해당되는 글 2건

  1. 2007.11.06 DIY Arduino Digital Music Instrument - Day 2
  2. 2007.11.05 DIY Arduino Digital Music Instrument - Day 1
2007. 11. 6. 21:47 Footmarks
Memory
Bootloader


Reset Button
ATmega8


Microprocessor


Arduino API (Programming)




sound
Frequency <=> Time




int val = 2000;

void setup()
{
  pinMode(9, OUTPUT);    // sets the digital pin as output
}

void playNote(int val) {
{
  for(int c = 0; c < 100; c++) {
    digitalWrite(9, HIGH);    //sets the LED on
    delayMicroseconds(val);    //waits for a second
    digitalWrite(9, LOW);    //sets the LED off
    delayMicroseconds(val);    //waits for a second
  }
  delay(500);
}

void loop()
{
  playNote(200);
  playNote(400);
  playNote(600);
}


조교
권아름   arum.kwon(at)gmail.com
석근국   kg.seok(at)hmail.com
SADI 제품디자인과

posted by maetel
2007. 11. 5. 17:12 Footmarks
사용자 삽입 이미지


DIY Arduino Digital Music Instruments
http://nabiworks.tistory.com


David Cuartielles
Arduino 개발자이자 미디어 아티스트
Arduino 확장보드 개발
현 스웨덴 Malmo University Interaction Design 교수
현 SADI 인터렉션 랩 초청교수
스페인 출신

이종호
SADI 인터랙션 디자인 교수



2007-11-05 5pm @nabi
High is Five

talking about art and technology
- David Cuartielles



> void setup()
the creation of meaningful & beautiful & controversal relationships between us(humans) and artifacts

70s user centered design
80s HCI
90s Ubiquitous Computing
-- interface design (cognitive science)
00s palpable computing
-- physical computing (emotion engineering)



> variables
Arduino:
1) I/O board (hardware)
2) IDE (software)
3) educational method (collaboration)


> void loop
related projects:

Chinese Robotnauts

Involuntary Dance Machine

Goteborg's Science Fair

D. Palacios - Ars Electronica

Power Pilgrims

social bathroom appliance

Alcophone (2004)


DIY - Arduino I/O board 제작하기

사용자 삽입 이미지

사용자 삽입 이미지

위 그림의 몇 부분이 잘못되어 있다.



사용자 삽입 이미지

posted by maetel