https://leetsacademy.blogspot.com/2017/02/32x8-led-dot-matrix-with-max7219-using.html
댓글 1
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
|---|---|---|---|---|
| 48 |
Adios! Amigo! Bonjour enchate!
[1] | 아빠 | 2019.09.20 | 26186 |
| 47 | 네트워크 기능이 없는 프린터 raspberry pi + cups + xinetd를 이용하여 9100 포트 생성하기 | 아빠 | 2021.04.22 | 21620 |
| 46 | 세탁기 소스 | 아빠 | 2019.11.27 | 17601 |
| 45 |
Counter UP program(Arduino)
| 아빠 | 2018.07.23 | 14288 |
| 44 | kubuntu 18.04 lirc serial_ir configure [2] | 아빠 | 2018.11.06 | 5481 |
| 43 | kubuntu 18.04 lirc tric | 아빠 | 2018.10.18 | 2732 |
| 42 |
목사님 강대상 마이크 연장 스탠드 자작
| 아빠 | 2018.11.12 | 2681 |
| 41 |
raspberry pi zero를 이용한 Home Switch 프로그램
| 아빠 | 2022.01.05 | 2576 |
| 40 | 교회에 중고등부실, 청년부실에 앰프 스피커 기증 | 아빠 | 2018.03.11 | 2512 |
| 39 |
사외이사 사직
[2] | 아빠 | 2019.01.22 | 2366 |
| 38 |
싱크대 조명
| 아빠 | 2019.08.28 | 2345 |
| 37 | 포르테 네비 먹통 되면... | 씬영! | 2017.08.10 | 2307 |
| » | 아두이노 Scroll LED BAR 만들기 [1] | 아빠 | 2018.07.11 | 2299 |
| 35 | 약 3일동안의 미세먼지 | 아빠 | 2019.07.15 | 2266 |
| 34 |
Amoonsky - LedVideo Processor.
| 아빠 | 2018.11.12 | 2263 |
| 33 | 라즈베리 파이를 이용한 경고등 켜지게 하는 프로그램 [3] | 아빠 | 2020.06.15 | 2246 |
| 32 |
seagate 1.5T DIE
| 아빠 | 2018.12.20 | 2243 |
| 31 | 사랑하는 아들에게^^ | 할머니 | 2019.05.07 | 2240 |
| 30 |
아빠
| 아빠 | 2017.11.29 | 2228 |
| 29 | 교회에서 | 아빠 | 2019.06.16 | 2223 |
#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.");
}