Lesson 99-5: Building an LED 4-Digit Clock Using Arduino and an HT16K33 Display—Code 2
This code is part of a lesson on building an LED clock with an Arduino and a DS3231 RTC clock module. We are using an HT16K33 4-digit LED display to make this clock. This is code 99-5: HT16K33 clock with time blink.419-Lesson 99: Real-Time Clock DS3231 to build an LCD and LED Clock
语言: C++
/*
* Lesson 99: LED Clock using Arduino and DS3231 RTC module
* Full video details: https://youtu.be/LEQfzmO9Wm0
* In this lesson we have the following codes:
* 1-Basic DS3231 to display on serial monitor
* 2-Using Alarm feature of the DS3231
* 3-LCD Clock
* 4-4 Digit LED Clock (this code)
*
* This code is part of Arduino Step by Step Course which starts here: https://youtu.be/-6qSrDUA5a8
*
*
* Written by Ahmad Shamshiri on Feb 06, 2021 in Ajax, Ontario, Canada
* www.Robojax.com
*
*
* This code is "AS IS" without warranty or liability. Free to be used as long as you keep this note intact.
* This code has been downloaded from Robojax.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
DS3231: Real-Time Clock. Simple example
Read more: www.jarzebski.pl/arduino/komponenty/zegar-czasu-rzeczywistego-rtc-ds3231.html
GIT: https://github.com/jarzebski/Arduino-DS3231
Web: http://www.jarzebski.pl
(c) 2014 by Korneliusz Jarzebski
HT16k33 library
// AUTHOR: Rob Tillaart
// VERSION: 0.1.0
// PURPOSE: demo
// URL: http://www.adafruit.com/products/1002
// URL: https://github.com/RobTillaart/HT16K33
*/
#include <Wire.h>
#include <DS3231.h>
DS3231 clock;
RTCDateTime dt;
#include "HT16K33.h"
HT16K33 seg(0x70);
bool showSecond = true;//show or hide seconds. set to false to not show
unsigned int secondDisplayDuration=10000;//show seconds every 10 seconds
unsigned int secondBlinkCount=3;//show 3 blinks of second
unsigned long rememberTime = millis();
void setup()
{
Serial.begin(9600);
// Initialize DS3231
Serial.println("Initialize DS3231");;
clock.begin();
seg.begin();
Wire.setClock(100000);
seg.brightness(10);//set brightness from 1-15
seg.displayOn();
seg.setDigits(4);
seg.displayTest(1);
seg.displayOff();
delay(50);
seg.displayOn();
// Set sketch compiling time
//clock.setDateTime(__DATE__, __TIME__);
}
void loop()
{
//Digital Clock from Robojax using HT16K33 and DS3231
//watch video for details
dt = clock.getDateTime();
//printTime();//print time on serial monitor
seg.displayTime(dt.hour,dt.minute);
seg.displayColon(1);
delay(500);
seg.displayColon(0);
delay(500);
showSeconds();
}//
/*
*
* @brief shows seconds on HT16K33 display
* @param none
* @return no return value
* written Feb 06, 2021 by Ahmad Shamshiri
* www.robojax.com
*/
void showSeconds()
{
int count = secondBlinkCount;
if(showSecond){
if(millis() - rememberTime > secondDisplayDuration)
{
while(count>=0)
{
dt = clock.getDateTime();
count -=1;
seg.setDigits(2);
seg.displayInt(dt.second);
delay(500);
seg.displayOff();
delay(500);
seg.displayOn();
rememberTime = millis() ;
}// while end
}//if
}//if showSecond is true
}//showSecond() end
/*
*
* @brief prints time on serial monitor
* @param none
* @return no return value
* written Feb 06, 2021 by Ahmad Shamshiri
* www.robojax.com
*/
void printTime()
{
Serial.print("Raw data: ");
Serial.print(dt.year); Serial.print("-");
Serial.print(dt.month); Serial.print("-");
Serial.print(dt.day); Serial.print(" ");
Serial.print(dt.hour); Serial.print(":");
Serial.print(dt.minute); Serial.print(":");
Serial.print(dt.second); Serial.println("");
}//printTime() end
|||您可能需要的东西
-
全球速卖通从AliExpress购买HT16K33 4位数LED显示屏s.click.aliexpress.com
-
全球速卖通从AliExpress购买HT16K33四位数LED显示屏s.click.aliexpress.com
-
全球速卖通从AliExpress购买一个LCD1602s.click.aliexpress.com
资源与参考
-
外部
-
外部
-
外部Purchase ZK-5DA from Amazon UKamzn.to
-
外部从AliExpress购买HT16K33 4位数LED显示屏s.click.aliexpress.com
-
外部从AliExpress购买HT16K33四位数LED显示屏s.click.aliexpress.com
-
外部从AliExpress购买一个LCD1602s.click.aliexpress.com
-
外部从亚马逊购买一个HT16K33四位数LED显示屏。amzn.to
文件📁
没有可用的文件。