목록arduino (34)
준호씨의 블로그
Attach LCD Keypad Shield on Arduino Uno Look this video
http://junho85.pe.kr/620 에서 확인 했듯이 A0 는 14 이다. #define PIN_A0 (14) ... static const uint8_t A0 = PIN_A0; 그런데 많은 예제에서 A0 핀의 값을 읽을 때 analogRead(0) 을 쓰기도 하고 analogRead(A0) 을 쓰기도 한다. 공식홈페이지의 예제를 보아도 다음과 같이 analogPin 3 번을 A3 로 쓰지 않고 그냥 3 번을 썼다. int analogPin = 3; // potentiometer wiper (middle terminal) connected to analog pin 3 // outside leads to ground and +5V int val = 0; // variable to store the..
https://github.com/arduino/Arduino/blob/master/hardware/arduino/avr/variants/standard/pins_arduino.h#L56 A0~A7 순서로 14~21 이다. #define PIN_A0 (14) #define PIN_A1 (15) #define PIN_A2 (16) #define PIN_A3 (17) #define PIN_A4 (18) #define PIN_A5 (19) #define PIN_A6 (20) #define PIN_A7 (21) static const uint8_t A0 = PIN_A0; static const uint8_t A1 = PIN_A1; static const uint8_t A2 = PIN_A2; static cons..
아두이노 우노 R3 SMD 버전 보드를 구매 했는데 IDE 에서 인식이 안된다. 알아 보니 WCH CH340G 칩셋이 붙어 있었고 이 칩셋 드라이버가 필요 했다. 맥용 드라이버는 아래 페이지에서 받을 수 있다. http://www.wch.cn/download/CH341SER_MAC_ZIP.html 드라이버 설치후 재부팅이 필요 하다. 다른 OS 용 드라이버도 있으니 OS 에 맞게 받아서 설치 하면 된다. 드라이버를 설치 하고 아두이노를 연결하면 나면 아래와 같이 장치가 잡히는 것을 볼 수 있다. 참고 http://tomtomheylen.com/categories/DIY/Fix_Chinese_Arduino_clone_problems.php