블로그
- 아두이노 기초 PWM 신호 활용 fade to fade the LED by // the setup routine runs once when you press reset: void setup() { // declare pin 9 to be an output: pinMode(led, OUTPUT); } // the loop routine runs over and over again forever: void
- struct vs typedef sturct struct _tagPoint{ int x; int y; }; POINTS는 선언되지 않은 심볼이므로 struct _tagPoint POINTS;라고 하면, POINTS라는 이름의 따라서 한 문장의 시작이 int, char, void 등의 타입을 나.......