Arduino Alarm Clock Project

Snap together 3D-printed case for an Arduino alarm clock!

Sep 7, 2018

31064 views

14 respects

Components and supplies

1

Jumper wires (generic)

1

Standard LCD - 16x2 White on Blue

1

Potentiometer (10K)

1

Arduino UNO

1

Thermistor

1

Buzzer

1

DS3231 RTC Module

Tools and machines

1

3D Printer (generic)

Project description

Code

Arduino Alarm Clock Project

c_cpp

Displays time, date, temperature. Has the ability to set alarm time.

Arduino Alarm Clock Project

c_cpp

Displays time, date, temperature. Has the ability to set alarm time.

Downloadable files

Ali Hamza Alarm Clock Schematic

Ali Hamza Alarm Clock Schematic

Image

Ali Hamza Alarm Clock Schematic

Ali Hamza Alarm Clock Schematic

Image

Documentation

Button

Button

Base

Base

Thingiverse

https://www.thingiverse.com/thing:3079571/zip

https://www.thingiverse.com/thing:3079571/zip

Back

Back

Thingiverse

https://www.thingiverse.com/thing:3079571/zip

https://www.thingiverse.com/thing:3079571/zip

Back

Back

Button

Button

Base

Base

Top

Top

Comments

Only logged in users can leave comments

Image
Image

Anonymous user

2 years ago

How to insert a switch for setting the alarm ?

Image
Image

Anonymous user

2 years ago

I do not see where to connect the thermistor and what type it is. Hot end on 3d printers use 100Kohms, and I have found 10K (black drop) and round thermistor of vrious values (10 to 500 ohms). The photo looks like the black drop 10Kohms but I do not know where to connect it.

Image
Image

Anonymous user

4 years ago

How to insert a switch for setting the alarm ?

Image
Image

Anonymous user

5 years ago

I do not see where to connect the thermistor and what type it is. Hot end on 3d printers use 100Kohms, and I have found 10K (black drop) and round thermistor of vrious values (10 to 500 ohms). The photo looks like the black drop 10Kohms but I do not know where to connect it.

Image
Image

Anonymous user

5 years ago

Tried completing the project, but found the following error when compiled: arduino_alarm_clock_project:19:21: error: no matching function for call to 'DS3231::DS3231(const uint8_t&, const uint8_t&)' DS3231 rtc(SDA, SCL); ^ In file included from C:\\Users\\Smaragdine\\Downloads\\arduino_alarm_clock_project\\arduino_alarm_clock_project.ino:11:0: C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\DS3231/DS3231.h:64:3: note: candidate: DS3231::DS3231() DS3231(); ^~~~~~ C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\DS3231/DS3231.h:64:3: note: candidate expects 0 arguments, 2 provided C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\DS3231/DS3231.h:60:7: note: candidate: constexpr DS3231::DS3231(const DS3231&) class DS3231 { ^~~~~~ C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\DS3231/DS3231.h:60:7: note: candidate expects 1 argument, 2 provided C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\DS3231/DS3231.h:60:7: note: candidate: constexpr DS3231::DS3231(DS3231&&) C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\DS3231/DS3231.h:60:7: note: candidate expects 1 argument, 2 provided arduino_alarm_clock_project:21:1: error: 'Time' does not name a type; did you mean 'Wire'? Time t; ^~~~ Wire C:\\Users\\Smaragdine\\Downloads\\arduino_alarm_clock_project\\arduino_alarm_clock_project.ino: In function 'void setup()': arduino_alarm_clock_project:60:7: error: 'class DS3231' has no member named 'begin' rtc.begin(); ^~~~~ arduino_alarm_clock_project:70:2: error: 't' was not declared in this scope t = rtc.getTime(); ^ arduino_alarm_clock_project:70:10: error: 'class DS3231' has no member named 'getTime'; did you mean 'getA1Time'? t = rtc.getTime(); ^~~~~~~ getA1Time C:\\Users\\Smaragdine\\Downloads\\arduino_alarm_clock_project\\arduino_alarm_clock_project.ino: In function 'void loop()': arduino_alarm_clock_project:103:15: error: 'class DS3231' has no member named 'getTimeStr'; did you mean 'getMinute'? lcd.print(rtc.getTimeStr()); ^~~~~~~~~~ getMinute arduino_alarm_clock_project:107:15: error: 'class DS3231' has no member named 'getDateStr'; did you mean 'getDate'? lcd.print(rtc.getDateStr()); ^~~~~~~~~~ getDate arduino_alarm_clock_project:115:20: error: 'class DS3231' has no member named 'getTemp'; did you mean 'getYear'? tempCDS3231 = (rtc.getTemp()); ^~~~~~~ getYear arduino_alarm_clock_project:121:16: error: 'class DS3231' has no member named 'getDateStr'; did you mean 'getDate'? lcd.print(rtc.getDateStr()); ^~~~~~~~~~ getDate arduino_alarm_clock_project:126:3: error: 't' was not declared in this scope t = rtc.getTime(); ^ arduino_alarm_clock_project:126:11: error: 'class DS3231' has no member named 'getTime'; did you mean 'getA1Time'? t = rtc.getTime(); ^~~~~~~ getA1Time Multiple libraries were found for "DS3231.h" Used: C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\DS3231 Not used: C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\Arduino-DS3231-master exit status 1 no matching function for call to 'DS3231::DS3231(const uint8_t&, const uint8_t&)' Invalid library found in C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\Arduino-IRremote-master: no headers files (.h) found in C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\Arduino-IRremote-master Invalid library found in C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\LiquidCrystal: no headers files (.h) found in C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\LiquidCrystal Invalid library found in C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\SimpleAlarmClock-master: no headers files (.h) found in C:\\Users\\Smaragdine\\Documents\\Arduino\\libraries\\SimpleAlarmClock-master

Image
Image

Anonymous user

2 years ago

hello. My code gives the same error.have you solve your problem?How did you do that?