https://leetsacademy.blogspot.com/2017/02/32x8-led-dot-matrix-with-max7219-using.html
댓글 1
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
|---|---|---|---|---|
| 48 |
Adios! Amigo! Bonjour enchate!
[1] | 아빠 | 2019.09.20 | 26595 |
| 47 | 네트워크 기능이 없는 프린터 raspberry pi + cups + xinetd를 이용하여 9100 포트 생성하기 | 아빠 | 2021.04.22 | 21937 |
| 46 | 세탁기 소스 | 아빠 | 2019.11.27 | 19502 |
| 45 |
Counter UP program(Arduino)
| 아빠 | 2018.07.23 | 14496 |
| 44 | kubuntu 18.04 lirc serial_ir configure [2] | 아빠 | 2018.11.06 | 5855 |
| 43 |
목사님 강대상 마이크 연장 스탠드 자작
| 아빠 | 2018.11.12 | 3299 |
| 42 | kubuntu 18.04 lirc tric | 아빠 | 2018.10.18 | 2919 |
| 41 |
raspberry pi zero를 이용한 Home Switch 프로그램
| 아빠 | 2022.01.05 | 2897 |
| 40 | 교회에 중고등부실, 청년부실에 앰프 스피커 기증 | 아빠 | 2018.03.11 | 2734 |
| 39 | 라즈베리 파이를 이용한 경고등 켜지게 하는 프로그램 [3] | 아빠 | 2020.06.15 | 2665 |
| 38 |
사외이사 사직
[2] | 아빠 | 2019.01.22 | 2586 |
| 37 |
싱크대 조명
| 아빠 | 2019.08.28 | 2574 |
| » | 아두이노 Scroll LED BAR 만들기 [1] | 아빠 | 2018.07.11 | 2542 |
| 35 | 포르테 네비 먹통 되면... | 씬영! | 2017.08.10 | 2489 |
| 34 |
(MCU)인터넷 에서 재미 있는것을 배웠다.
| 아빠 | 2018.03.29 | 2483 |
| 33 | python2에서 python3으로 바뀌면서 pi relay board 코드 수정 | 아빠 | 2021.05.03 | 2453 |
| 32 | 더뉴카니발 YP2020 트위터 케이블 [1] | 아빠 | 2020.07.06 | 2453 |
| 31 |
아빠
| 아빠 | 2017.11.29 | 2439 |
| 30 | 사랑하는 아들에게^^ | 할머니 | 2019.05.07 | 2419 |
| 29 |
Amoonsky - LedVideo Processor.
| 아빠 | 2018.11.12 | 2418 |
#include "dht.h"
#include <SPI.h>
#include <Adafruit_GFX.h>
#include <Max72xxPanel.h>
//pin 11 is connected to the DataIn
//pin 13 is connected to the CLK
//pin 10 is connected to SC
//pin 7 is connected to DHT11 Data
dht DHT;
//LED Define.
int pinCS = 10; // Attach CS to this pin, DIN to MOSI and CLK to SCK
int numberOfHorizontalDisplays = 1;
int numberOfVerticalDisplays = 4;
Max72xxPanel matrix = Max72xxPanel(pinCS, numberOfHorizontalDisplays, numberOfVerticalDisplays);
int spacer = 1;
int width = 5 + spacer; // The font width is 5 pixels
void setup()
{
//LED Setup
matrix.setIntensity(0.5); // Use a value between 0 and 15 for brightness
// Adjust to your own needs
// matrix.setPosition(0, 0, 0); // The first display is at <0, 0>
// matrix.setPosition(1, 1, 0); // The second display is at <1, 0>
// matrix.setPosition(2, 2, 0); // The third display is at <2, 0>
// matrix.setPosition(3, 3, 0); // And the last display is at <3, 0>
// ...
// matrix.setRotation(0, 2); // The first display is position upside down
matrix.setRotation(1); // The same hold for the last display
}
void print_led(String tape)
{
// Print LED
for ( int i = 0 ; i < width * tape.length() + matrix.width() - 1 - spacer; i++ ) {
matrix.fillScreen(LOW);
int letter = i / width;
int x = (matrix.width() - 1) - i % width;
int y = (matrix.height() - 8) / 2; // center the text vertically
while ( x + width - spacer >= 0 && letter >= 0 ) {
if ( letter < tape.length() ) {
matrix.drawChar(x, y, tape[letter], HIGH, LOW, 1);
}
letter--;
x -= width;
}
matrix.write(); // Send bitmap to display
delay(100);
}
}
void loop()
{
String tape = "Ready.";
DHT.read11(7);
int humidity = int(DHT.humidity); /* Get humidity value */
int temperature = int(DHT.temperature); /* Get temperature value */
print_led("Temperature:" + String(temperature) + "℃ Humidity:" + String(humidity) + "%");
print_led("Today is Beautiful. Have a NiceDay.");
}