diff --git a/ArduinoMatrixClock/ArduinoMatrixClock.ino b/ArduinoMatrixClock/ArduinoMatrixClock.ino index f9786af..0965b81 100644 --- a/ArduinoMatrixClock/ArduinoMatrixClock.ino +++ b/ArduinoMatrixClock/ArduinoMatrixClock.ino @@ -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 @@ -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 @@ -1620,3 +1620,4 @@ bool CheckLeapYear(int _year) { if (_year % 400 == 0) return true; return true; } +