Notice
Recent Posts
Recent Comments
준호씨의 블로그
Arduino - A0 는 14 번 본문
반응형
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 const uint8_t A3 = PIN_A3;
static const uint8_t A4 = PIN_A4;
static const uint8_t A5 = PIN_A5;
static const uint8_t A6 = PIN_A6;
static const uint8_t A7 = PIN_A7;
반응형
'메이커' 카테고리의 다른 글
Arduino - Attaching LCD Keypad Shield (0) | 2017.07.13 |
---|---|
Arduino - analogRead(0) 와 analogRead(A0) 는 같다 (0) | 2017.07.13 |
Arduino - 아두이노 UNO SMD 버전 인식 안되는 문제 해결 (0) | 2017.06.14 |
아두이노 개발을 웹에서 (0) | 2017.06.13 |
Arduino - LCD Keypad Shield (0) | 2017.06.10 |
Comments