LED Examples Using an Arduino and Wii Nunchuck

  • Slides: 23
Download presentation

LED를 이용한 재미있는 표현 Examples Using an Arduino and Wii Nunchuck to Control a

LED를 이용한 재미있는 표현 Examples Using an Arduino and Wii Nunchuck to Control a Robot http: //www. youtube. com/watch? v=Qlukl 5 f. Li 7 s Arduino Theremin - Merry Christmas! http: //www. youtube. com/watch? v=BF_U 65 Ha 0 DU&feature=related Auduino: DIY Synthesizer http: //www. youtube. com/watch? v=q 9 tmbr. G 7 D-o&feature=related Fading of multiple LEDs using Pulse Width Modulation. http: //www. youtube. com/watch? v=b 8_175 b. CN 6 M&feature=related

LED를 이용한 재미있는 표현 Physical Computing Environments

LED를 이용한 재미있는 표현 Physical Computing Environments

LED를 이용한 재미있는 표현 Arduino 1 | Get an Arduino board and USB cable

LED를 이용한 재미있는 표현 Arduino 1 | Get an Arduino board and USB cable 2 | Download the Arduino environment 3 | Connect the board 4 | Install the driv ers 5 | Launch the Arduino application 6 | Open the blink example 7 | Select your board 8 | Select your serial port 8 | Upload the program

LED를 이용한 재미있는 표현 Physical Computing Features - Arduino

LED를 이용한 재미있는 표현 Physical Computing Features - Arduino

LED를 이용한 재미있는 표현 Physical Computing Setup - Arduino 1 | Connect the board

LED를 이용한 재미있는 표현 Physical Computing Setup - Arduino 1 | Connect the board

LED를 이용한 재미있는 표현 Physical Computing Setup - Arduino 1 | Connect the board

LED를 이용한 재미있는 표현 Physical Computing Setup - Arduino 1 | Connect the board

LED를 이용한 재미있는 표현 Physical Computing Example 1 - Arduino int led. Pin =

LED를 이용한 재미있는 표현 Physical Computing Example 1 - Arduino int led. Pin = 13; // LED connected to digital pin 13 // The setup() method runs once, when the sketch starts void setup() { // initialize the digital pin as an output: pin. Mode(led. Pin, OUTPUT); } // the loop() method runs over and over again, // as long as the Arduino has power void loop() { digital. Write(led. Pin, HIGH); // set the LED on delay(1000); // wait for a second digital. Write(led. Pin, LOW); // set the LED off delay(1000); // wait for a second }