Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions ArduinoMatrixClock/ArduinoMatrixClock.ino
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Author: Petan (www.mylms.cz)
https://www.mylms.cz/text-arduino-hodiny-s-maticovym-displejem/
https://github.com/mylms/Arduino-Matrix-Clock

There are used two libraries. You have to download and instal them:
There are used two libraries. You have to download and install them:
LED CONTROL: https://github.com/wayoda/LedControl
IR REMOTE CONTROL (use version 2.0.1): https://github.com/Arduino-IRremote/Arduino-IRremote/tree/2.0.1

Expand Down Expand Up @@ -313,7 +313,7 @@ const uint64_t symbols[] = {
byte fontCount = 5; //how many fonts are used
byte fontOffset = 60; //count of symbols before 1st number

//default values... but they are load from EEPROM
//default values... but they are loaded from EEPROM
byte bright = 7; //brightness
byte font = 1; //do not set less than 1. symbols 0-59 are used for letters etc.
byte dotStyle = 2; //0 - off, 1 - on, 2 - blinking
Expand Down Expand Up @@ -1620,3 +1620,4 @@ bool CheckLeapYear(int _year) {
if (_year % 400 == 0) return true;
return true;
}