문제점
아래 코드에서 발생하는 에러
int value = 1;
Serial.print(value, BYTE);
'BYTE' was not declared in this scope
해결방안
int value = 1; Serial.write(value);
참고사이트 링크
'대학 생활 > IoT(RaspberryPi, Arduino)' 카테고리의 다른 글
[Arduino] 아두이노 날짜, 시간 출력하기(Time.h) (1) | 2015.02.24 |
---|---|
[Arduino] 에러 : must be const in order to be put into read-only section by means of '__attribute__((progmem))' (0) | 2015.02.24 |
[Arduino] 아두이노 온도센서(LM35) 사용하기 (0) | 2015.02.24 |
[Arduino] 아두이노 IDE 폰트 변경하기 (0) | 2015.02.24 |