Notice
Recent Posts
Recent Comments
목록2017/07/13 (3)
준호씨의 블로그
Arduino - LCD Keypad Shield test
Source Code Upload below code to arduino Demo video
메이커
2017. 7. 13. 00:55
Arduino - Attaching LCD Keypad Shield
Attach LCD Keypad Shield on Arduino Uno Look this video
메이커
2017. 7. 13. 00:46
Arduino - analogRead(0) 와 analogRead(A0) 는 같다
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..
메이커
2017. 7. 13. 00:25