Arduino/Dot Matrix 8x8
-
Dot Matrix와Arduino/Dot Matrix 8x8 2020. 11. 9. 18:21
아래와 같이 LED의 빛 하나 켜고 끄기를 하기위해서 연결한 것이다. Dot Matrix의 C1을 아두이노D5번핀에, Dot Matrix의 R1을 아두이노D13번핀에 연결한다. C1은 입력핀이다. C는 열(Column을 의미). R은 행(row를 의미한다.) 저항은 220옴을 연결한다. 위와 같이 연결했으면, Dot하나의 LED를 켜고 꺼보자. 소스 코드 더보기 void setup() { // put your setup code here, to run once: pinMode(5,OUTPUT); pinMode(13,OUTPUT); digitalWrite(5,HIGH); digitalWrite(13,LOW); } void loop() { // put your main code here, to run rep..