使用Arduino的数字闹钟 上面我们学习了如何使用RTC模块构建基本的Arduino时钟,接下来我们将研究如何使用Arduino将其升级为数字闹钟电路。
有些人不需要闹钟,他们自然醒来,有些人在闹钟响几次后醒来,有些人多次按下贪睡按钮,上大学/工作到很晚一些借口。有趣的小闹钟项目可能会遇到早晨醒来时的懒惰问题。如果用户没有响应,大多数闹钟都有一个贪睡按钮和预先确定的警报截止时间。
我们设计了这个没有懒人按钮(闹钟按钮)的闹钟,并且在用户按下按钮之前闹钟不会关闭。
此时钟可以12小时格式显示时间,日期格式为DD / MM / YYYY格式。
时间和日期将在1602 LCD显示屏上展示。 RTC或实时时钟时间模块将负责保持时间,即使长时间断电也可以保持正确的时间。
提供了5个按钮,其功能在后面进行解释。 Arduino项目的主板可以选择任何型号,我们推荐Arduino pro mini或Arduino nano,因为它的尺寸紧凑。
现在让我们看一下原理图。
以上是Arduino显示连接示意图,通过旋转10K电位器调整显示对比度。
以下是电路的其余部分: 该电路可以为9V 500mA适配器供电。
5个按钮的功能: S1 - 用于停止报警(它也是复位按钮) S2 - 用于设置闹钟。长按S2,您将进入闹钟设置菜单。 S3 - 用于增加小时数。 S4 - 用于增加分钟数。 S5 - 用于切换警报状态。如果右侧底角的LCD显示屏上存在“*”,则报警为ON,如果“*”不存在,则报警统计为OFF。
下载以下库文件: Link1:github.com/PaulStoffregen/DS1307RTC Link2:github.com/PaulStoffregen/Time
现在,我们必须设置时间到RTC模块,时间将从您的PC同步到RTC模块。
上传以下代码以设置时间并打开串行监视器: - //------------------------------------------------//
- #include <Wire.h>
- #include <TimeLib.h>
- #include <DS1307RTC.h>
- const char *monthName[12] = {
- "Jan", "Feb", "Mar", "Apr", "May", "Jun",
- "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
- };
- tmElements_t tm;
- void setup() {
- bool parse=false;
- bool config=false;
- // get the date and time the compiler was run
- if (getDate(__DATE__) && getTime(__TIME__)) {
- parse = true;
- // and configure the RTC with this info
- if (RTC.write(tm)) {
- config = true;
- }
- }
- Serial.begin(9600);
- while (!Serial) ; // wait for Arduino Serial Monitor
- delay(200);
- if (parse && config) {
- Serial.print("DS1307 configured Time=");
- Serial.print(__TIME__);
- Serial.print(", Date=");
- Serial.println(__DATE__);
- } else if (parse) {
- Serial.println("DS1307 Communication Error :-{");
- Serial.println("Please check your circuitry");
- } else {
- Serial.print("Could not parse info from the compiler, Time="");
- Serial.print(__TIME__);
- Serial.print("", Date="");
- Serial.print(__DATE__);
- Serial.println(""");
- }
- }
- void loop() {
- }
- bool getTime(const char *str)
- {
- int Hour, Min, Sec;
- if (sscanf(str, "%d:%d:%d", &Hour, &Min, &Sec) != 3) return false;
- tm.Hour = Hour;
- tm.Minute = Min;
- tm.Second = Sec;
- return true;
- }
- bool getDate(const char *str)
- {
- char Month[12];
- int Day, Year;
- uint8_t monthIndex;
- if (sscanf(str, "%s %d %d", Month, &Day, &Year) != 3) return false;
- for (monthIndex = 0; monthIndex < 12; monthIndex++) {
- if (strcmp(Month, monthName[monthIndex]) == 0) break;
- }
- if (monthIndex >= 12) return false;
- tm.Day = Day;
- tm.Month = monthIndex + 1;
- tm.Year = CalendarYrToTm(Year);
- return true;
- }
- //----------------------------------------//
复制代码现在您已成功设置RTC时间
接下来,您需要上传以下主要代码: - //------------Program Developed by R.Girish-------//
- #include <LiquidCrystal.h>
- #include <DS1307RTC.h>
- #include <TimeLib.h>
- #include <Wire.h>
- #include <EEPROM.h>
- const int rs = 7;
- const int en = 6;
- const int d4 = 5;
- const int d5 = 4;
- const int d6 = 3;
- const int d7 = 2;
- const int buzzer = 8;
- boolean alarm = false;
- boolean outloop = true;
- const int setAlarm = A0;
- const int Hrs = A1;
- const int Min = A2;
- const int ok = A3;
- const int HrsADD = 0;
- const int MinADD = 1;
- const int ALsave = 2;
- int HrsVal = 0;
- int MinVal = 0;
- int H = 0;
- int M = 0;
- int S = 0;
- int i = 0;
- int j = 0;
- int k = 0;
- LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
- void setup()
- {
- Serial.begin(9600);
- lcd.begin(16, 2);
- pinMode(buzzer, OUTPUT);
- pinMode(setAlarm, INPUT);
- pinMode(Hrs, INPUT);
- pinMode(Min, INPUT);
- pinMode(ok, INPUT);
- digitalWrite(setAlarm, HIGH);
- digitalWrite(Hrs, HIGH);
- digitalWrite(Min, HIGH);
- digitalWrite(ok, HIGH);
- }
- void loop()
- {
- tmElements_t tm;
- lcd.clear();
- if (EEPROM.read(ALsave) == false)
- {
- lcd.setCursor(15, 1);
- lcd.print("");
- }
- if (EEPROM.read(ALsave) == true)
- {
- lcd.setCursor(15, 1);
- lcd.print(F("*"));
- }
- if (RTC.read(tm))
- {
- if (tm.Hour >= 12)
- {
- lcd.setCursor(14, 0);
- lcd.print("PM");
- }
- if (tm.Hour < 12)
- {
- lcd.setCursor(14, 0);
- lcd.print("AM");
- }
- lcd.setCursor(0, 0);
- lcd.print("TIME:");
- H = tm.Hour;
- if (tm.Hour > 12)
- {
- if (tm.Hour == 13)
- {
- lcd.print("01");
- }
- if (tm.Hour == 14)
- {
- lcd.print("02");
- }
- if (tm.Hour == 15)
- {
- lcd.print("03");
- }
- if (tm.Hour == 16)
- {
- lcd.print("04");
- }
- if (tm.Hour == 17)
- {
- lcd.print("05");
- }
- if (tm.Hour == 18)
- {
- lcd.print("06");
- }
- if (tm.Hour == 19)
- {
- lcd.print("07");
- }
- if (tm.Hour == 20)
- {
- lcd.print("08");
- }
- if (tm.Hour == 21)
- {
- lcd.print("09");
- }
- if (tm.Hour == 22)
- {
- lcd.print("10");
- }
- if (tm.Hour == 23)
- {
- lcd.print("11");
- }
- }
- else
- {
- lcd.print(tm.Hour);
- }
- M = tm.Minute;
- S = tm.Second;
- lcd.print(":");
- lcd.print(tm.Minute);
- lcd.print(":");
- lcd.print(tm.Second);
- lcd.setCursor(0, 1);
- lcd.print("DATE:");
- lcd.print(tm.Day);
- lcd.print("/");
- lcd.print(tm.Month);
- lcd.print("/");
- lcd.print(tmYearToCalendar(tm.Year));
- } else {
- if (RTC.chipPresent())
- {
- lcd.setCursor(0, 0);
- lcd.print("RTC stopped!!!");
- lcd.setCursor(0, 1);
- lcd.print("Run SetTime code");
- } else {
- lcd.clear();
- lcd.setCursor(0, 0);
- lcd.print("Read error!");
- lcd.setCursor(0, 1);
- lcd.print("Check circuitry!");
- }
- }
- if (digitalRead(setAlarm) == LOW)
- {
- setALARM();
- }
- if (H == EEPROM.read(HrsADD) && M == EEPROM.read(MinADD) && S == 0)
- {
- if (EEPROM.read(ALsave) == true)
- {
- sound();
- }
- }
- if (digitalRead(ok) == LOW)
- {
- if (EEPROM.read(ALsave) == true)
- {
- EEPROM.write(ALsave, 0);
- alarm = false;
- delay(1000);
- return;
- }
- if (EEPROM.read(ALsave) == false)
- {
- EEPROM.write(ALsave, 1);
- alarm = true;
- delay(1000);
- return;
- }
- }
- delay(1000);
- }
- void setALARM()
- {
- HrsVal = EEPROM.read(HrsADD);
- MinVal = EEPROM.read(MinADD);
- lcd.clear();
- lcd.setCursor(0, 0);
- lcd.print(F(">>>>SET ALARM<<<"));
- lcd.setCursor(0, 1);
- lcd.print(F("Hrs:"));
- lcd.print(EEPROM.read(HrsADD));
- lcd.print(F(" Min:"));
- lcd.print(EEPROM.read(MinADD));
- delay(600);
- while (outloop)
- {
- if (HrsVal > 23)
- {
- HrsVal = 0;
- lcd.clear();
- lcd.setCursor(0, 0);
- lcd.print(F(">>>>SET ALARM<<<"));
- lcd.setCursor(0, 1);
- lcd.print(F("Hrs:"));
- lcd.print(HrsVal);
- lcd.print(F(" Min:"));
- lcd.print(MinVal);
- }
- if (MinVal > 59)
- {
- MinVal = 0;
- lcd.clear();
- lcd.setCursor(0, 0);
- lcd.print(F(">>>>SET ALARM<<<"));
- lcd.setCursor(0, 1);
- lcd.print(F("Hrs:"));
- lcd.print(HrsVal);
- lcd.print(F(" Min:"));
- lcd.print(MinVal);
- }
- if (digitalRead(Hrs) == LOW)
- {
- HrsVal = HrsVal + 1;
- lcd.clear();
- lcd.setCursor(0, 0);
- lcd.print(F(">>>>SET ALARM<<<"));
- lcd.setCursor(0, 1);
- lcd.print(F("Hrs:"));
- lcd.print(HrsVal);
- lcd.print(F(" Min:"));
- lcd.print(MinVal);
- delay(250);
- }
- if (digitalRead(Min) == LOW)
- {
- MinVal = MinVal + 1;
- lcd.clear();
- lcd.setCursor(0, 0);
- lcd.print(F(">>>>SET ALARM<<<"));
- lcd.setCursor(0, 1);
- lcd.print(F("Hrs:"));
- lcd.print(HrsVal);
- lcd.print(F(" Min:"));
- lcd.print(MinVal);
- delay(250);
- }
- if (digitalRead(setAlarm) == LOW)
- {
- EEPROM.write(HrsADD, HrsVal);
- EEPROM.write(MinADD, MinVal);
- lcd.clear();
- lcd.setCursor(0, 0);
- lcd.print(F("Alarm is Set for"));
- lcd.setCursor(0, 1);
- lcd.print(EEPROM.read(HrsADD));
- lcd.print(F(":"));
- lcd.print(EEPROM.read(MinADD));
- lcd.print(F(" Hrs"));
- delay(1000);
- outloop = false;
- }
- }
- outloop = true;
- }
- void sound()
- {
- lcd.clear();
- lcd.setCursor(0, 0);
- lcd.print("Wakey Wakey !!!");
- lcd.setCursor(0, 1);
- lcd.print("Its Time now.....");
- for (j = 0; j < 10; j++)
- {
- for (i = 0; i < 2 ; i++)
- {
- digitalWrite(buzzer, HIGH);
- delay(150);
- digitalWrite(buzzer, LOW);
- delay(150);
- }
- delay(400);
- }
- for (k = 0; k < 10; k++)
- {
- for (i = 0; i < 4 ; i++)
- {
- digitalWrite(buzzer, HIGH);
- delay(150);
- digitalWrite(buzzer, LOW);
- delay(150);
- }
- delay(250);
- }
- while (true)
- {
- digitalWrite(buzzer, HIGH);
- delay(150);
- digitalWrite(buzzer, LOW);
- delay(150);
- }
- }
- //------------Program Developed by R.Girish-------//
复制代码
上传代码后,需要在显示屏上看到正确的时间和日期。
现在让我们看看如何设置闹钟: •长按S2直到您可以看到闹钟菜单。 •按S3和S4分别调整小时和分钟。 •设定所需时间后,再次按S2。它会说“警报设置为xx:xx小时”。 •如果警报为ON,您可以在显示屏上看到“*”符号,如果警报为OFF,则不会有“*”符号。 •您可以按S5半秒钟打开/关闭闹钟。不要长按直到“*”消失(它再次返回),只需按半秒钟即可切换警报状态。
重要的提示: 在任何时钟上设置闹钟时最常见的错误是无意中切换AM / PM,这导致我们的预期时间没有闹钟。 为解决此问题,建议的闹钟设置采用24小时时钟格式设计。 使用AM / PM格式在液晶显示屏上显示的时间为12小时,但是当您使用此项目设置闹钟时,您必须以24小时格式设置0到23小时。 例如:如果要在晚上9:00设置闹钟,则必须设置21小时0分钟。对于,凌晨5点:5小时0分钟等等。
你喜欢这个项目吗?如果对这个项目有任何疑问,请随时在本帖下面进行回复。 |