블로그 이미지
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

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
2006. 12. 1. 20:51 Hardware/mC
The Wiring I/O board has two built-in (hardware) serial ports called Serial and Serial1. The port Serial is available through the USB connector in the Wiring I/O board. The port Serial1 is available on Wiring I/O pins 2(Rx) and 3(Tx).

ref.
The Wiring Serial library
gone's Wiring workshop: serial

'Hardware > mC' 카테고리의 다른 글

SAM7-H256  (0) 2008.03.17
Arduino board  (0) 2007.11.17
AVR  (0) 2007.07.24
testing Wiring board  (0) 2006.08.16
Wiring board  (0) 2006.08.16
posted by maetel
2006. 8. 16. 16:49 Hardware/mC
To test Wiring board, I did :

1. I/O board installation
2. Trying an example, LED blinks :
// Blinking LED
// by BARRAGAN <http://barraganstudio.com>

int ledPin = 0; // LED connected to the Wiring I/O board pin 0

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

void loop()
{
digitalWrite(ledPin, HIGH); // sets the LED on
delay(1000); // waits for a second
digitalWrite(ledPin, LOW); // sets the LED off
delay(1000);
}
3. Uploading a program into I/O board

And the board works!

'Hardware > mC' 카테고리의 다른 글

SAM7-H256  (0) 2008.03.17
Arduino board  (0) 2007.11.17
AVR  (0) 2007.07.24
serial ports on Wiring board  (0) 2006.12.01
Wiring board  (0) 2006.08.16
posted by maetel
2006. 7. 2. 13:13 Footmarks/INP3
2006-07-02 흙 낮 @아트센터나비

1. Analog Control


2. Digital Control

0) DSP : 12 ~ 16 bit
- robotics, digital camera
- 계산 속도가 매우 빠르다
~ 2만원

1) 8 ~ 10 bit
~ 5천원

 PIC
- Basic 기반
- NYU 교재
- knob writing? (20만원)

 AVR
- C 기반

 8051


2)
 iCube
- Max/MSP와 연동

 Phidget
- phidgetusa.com
- PIC을 포함

 Cubloc
- Comfile 회사 강좌  comfile.co.kr

 Midas
Director-Lingo
Flash-ActionScript

3)
 Lego MindStorm



Micro Code Studio : Basic
PicC

* EEPROM
)
Basic / C  => .hex (file)

 Zigbee


 Bluetooth Module
일대일 - 10만
일대다 - 30만

posted by maetel