https://leetsacademy.blogspot.com/2017/02/32x8-led-dot-matrix-with-max7219-using.html
댓글 1
-
아빠
2018.07.12 10:24
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
24 |
사외이사 사직
[2] ![]() | 아빠 | 2019.01.22 | 1615 |
23 |
seagate 1.5T DIE
![]() | 아빠 | 2018.12.20 | 1604 |
22 |
Amoonsky - LedVideo Processor.
![]() | 아빠 | 2018.11.12 | 1655 |
21 |
목사님 강대상 마이크 연장 스탠드 자작
![]() | 아빠 | 2018.11.12 | 1771 |
20 | kubuntu 18.04 lirc serial_ir configure [2] | 아빠 | 2018.11.06 | 3733 |
19 | kubuntu 18.04 lirc tric | 아빠 | 2018.10.18 | 1876 |
18 | 항상 가장으로서 수고가 많은 아들에게 | 할머니 | 2018.09.15 | 1488 |
17 | 이 산을... | 아빠 | 2018.09.02 | 1435 |
16 |
freq
![]() | 아빠 | 2018.08.18 | 1394 |
15 | PC의 DNS 주소 갱신 | 아빠 | 2018.08.05 | 1392 |
14 |
2018.8.1~8.2 만리포 휴가
![]() | 아빠 | 2018.08.03 | 1391 |
13 |
Counter UP program(Arduino)
![]() | 아빠 | 2018.07.23 | 13271 |
» | 아두이노 Scroll LED BAR 만들기 [1] | 아빠 | 2018.07.11 | 1550 |
11 | 라즈베리파이로 온습도계 사용하기 | 아빠 | 2018.07.11 | 1366 |
10 |
울림교회 내역
![]() | 아빠 | 2018.07.10 | 1300 |
9 |
드디어! LED SCREEN에 화면이 들어 온다
![]() | 아빠 | 2018.06.28 | 1319 |
8 |
rpi rgb matrix
![]() | 아빠 | 2018.06.08 | 1381 |
7 |
울림교회(2018.5.26)
![]() | 아빠 | 2018.05.26 | 1349 |
6 |
교회 유치부실 스크린 위치 이동
![]() | 아빠 | 2018.05.03 | 1367 |
5 |
아빠는 이런거 공부한다~
![]() | 아빠 | 2018.05.03 | 1367 |
#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.");
}