PSA for anyone using this RTC (DS3231), there is a badly designed charging circuit on this particular module (ZS-042 and probably others). You must either use a rechargeable LIR2032 battery or disable the charging circuit. You can do so by cutting the trace or removing the diode or resistor. Otherwise, using a non-rechargeable CR2032 could cause it to swell and explode. Although, even with a rechargeable LIR2032, the charging voltage is too high at ~4.7 V relative to the spec of 4.2 V, which may also cause issues. The recommenced option is to remove the diode with a pair tweezers or by desoldering, and use a regular CR2032 battery. There is a thread about this issue on the Arduino forums.
This is an excellent video, all the info you need to get started in under 4 minutes - thank you 👍 I get fed up with RUclipsrs that pad a 5 minute video to 35 minutes - droning on with "blah, blah, blah" and naff video animations (naming no names).
most creators try to hit 10min mark to "get the algorithm going", god bless those who earn money any other way lol, they give info like this, few minutes.
To anyone that was in my shoes where the serial moniter only prints nonsense, I oversaw the baud rate. If it's making a ton of ????, match your serial moniters baud rate to 115200 (as seen in the video).
I'm having an issue with the programming part. I downloaded both libraries and it still doesn't work but I suspect, based of what I'm reading, that the library is isn't completely identifying certain variables/parts, such as: DS3231 rtc(SDA, SCL); Serial.print(rtc.getDOWStr()); Serial.print(rtc.getDateStr()); Serial.println(rtc.getTimeStr());
Thanks for the Excellent easy to understand video. I am great at building the circuit but horrible at programming. It’s like I’m terrified of programming
people forget to say: when 5V is in use and non rechargeable battery, you MUST break the charging path - otherwise your 3V battery may explode ;-) if you connect to 3.3V it will not happen as there is a diode in the circuit. same no issue if you use 5V and rechargeable battery ;-) one more thing as bonus: this module has extra EEPROM that can be used ;-)
First of all, thanks for the reaction. But I tried it in multiple ways, but the fact that it uses rtc.getTimeStr(); seems the confuse the system. Is this a matter of notation? I have: int i = String.toInt(rtc.getTimeStr());
Great video, i got a 'warning deprecated conversion from string constant to 'char*' -wwrite-strings' but can you clarify this is nothing to worry about? Regards
Thanks a lot for this helpful video. There is a note: It works with me when I changed the serial as follow: // Serial.begin(115200); Serial.begin(9600);
Hi! I need help about a project to simulate sunrise - sunset with real time clock ⏰. E.g. i want to start at 07:00 and stop at 19:00 dimming by time (every 15min) for six hours to peak and onother six hours decrease light to sunset. *arduino uno *DS1302 Clock Module with Battery *AC Light Dimmer Module for PWM control, 1 Channel, 3.3V/5V logic, AC 50/60hz, 220V/110V *dimmable led lamp
I have bought a couple of the DS3231 modules. Trying to build a temp logger. All of them get the temperature wrong by 18 deg C even when using different libraries. And it seems they lose a lot of time as well. I guess the time loss and temp is correlated. Any idea why this might be?
Sir can you please add a pushbutton so when we will push it we can see the day and temperature and then we push it second time we can see the time and date again. Sir please reply
i have multiple sensor and from multiple sensor i can get mulitple types of data . For instance i can get time, date, month, day of week, temperature, humidity, dstance between objects, etc.
I have only 1 lcd1602. HOW I CAN DISPLAY EACH DATA LIKE THIS WAY. DATE = XX XXXXXX XXXX (DATE MONTH YEAR) TIME = XX:XX:XX AM/PM DAY = XXXXXXXXXXX TEMP = XX.XXX °C/°F HUMI = XX.XXX % DIST = XXX cm XXX in
@Mad Max yo chill out and Atef Ben Attia, you can probably use an if statement like this. You would need to save the hour part to a variable as well. This variable as well as the code would need to be in a loop so it constantly refreshes. if ((hour == 2) && (minute == 0)) { *insert what you want it to do here* }
everything works fine, but when I disconnect the arduino from the PC, wait a few minutes, connect it again, Time starts from the moment where I cut off the power. Where is the fault hardware or software?
I am getting error like error: no matching function for call to 'DS3231::DS3231(const uint8_t&, const uint8_t&)' DS3231 rtc(SDA, SCL); Please help me to fix it
You should be able to use it without an arduino nano, because as far as I know, with any given arduino circuit board; the only difference is how fast it can process info, as well as its storage capacity.
Thank you very much. I’ve got a problem this device after a day the time becomes of by around 6 seconds from the real time how can I fix that. Thank you
hooked up lcd and got this message rtc was not declared n this scope. (print get timestr)...any ideas? I used your tutorial on wiring lcd. started new sketch, included the two libraries and your code....
Good day! I already tried your given codes and I encountered some problems. Like, when its automatically printing on the serial monitor, after the first line being printed, the following lines showing undefined character. Why is that, and how can I solve it?
How to make the RTC counting a delay? I'll explain. I have 2 large stepper motors. I need to turn them one revolution per minute. Is it possible to do it with RTC? My delay varies and is from a minute up to 24 hours. :) The delay function is not accurate for long periods of time...
PSA for anyone using this RTC (DS3231), there is a badly designed charging circuit on this particular module (ZS-042 and probably others). You must either use a rechargeable LIR2032 battery or disable the charging circuit. You can do so by cutting the trace or removing the diode or resistor. Otherwise, using a non-rechargeable CR2032 could cause it to swell and explode. Although, even with a rechargeable LIR2032, the charging voltage is too high at ~4.7 V relative to the spec of 4.2 V, which may also cause issues. The recommenced option is to remove the diode with a pair tweezers or by desoldering, and use a regular CR2032 battery. There is a thread about this issue on the Arduino forums.
Thank you!
This is an excellent video, all the info you need to get started in under 4 minutes - thank you 👍 I get fed up with RUclipsrs that pad a 5 minute video to 35 minutes - droning on with "blah, blah, blah" and naff video animations (naming no names).
most creators try to hit 10min mark to "get the algorithm going", god bless those who earn money any other way lol, they give info like this, few minutes.
To anyone that was in my shoes where the serial moniter only prints nonsense, I oversaw the baud rate. If it's making a ton of ????, match your serial moniters baud rate to 115200 (as seen in the video).
Thanks baby
I second this. Same issue. Thanks for posting
My man!!!
@@trevorshaw1932 thank you
Thank my man.
0:06 captions
*"Hello then dogs here from how to catch Onix"*
Been playing Pokemon recently will need help
Very good instructional video. There are so many bad ones out there that I was getting discouraged. Thanks.
Way too underated
I'm having an issue with the programming part. I downloaded both libraries and it still doesn't work but I suspect, based of what I'm reading, that the library is isn't completely identifying certain variables/parts, such as:
DS3231 rtc(SDA, SCL);
Serial.print(rtc.getDOWStr());
Serial.print(rtc.getDateStr());
Serial.println(rtc.getTimeStr());
I'm having the same issue
It works with me when I changed the serial as follow:
// Serial.begin(115200);
Serial.begin(9600);
@@mohamedabdelfattah8627 Thanks a lot. I was struggling for two hours. Cheers!
@@mohamedabdelfattah8627 I can't thank you enough for this! After an hour struggling I was about to throw it at the wall!
Ds3231 in incredible for time keeping projects😍
Thanks for the Excellent easy to understand video. I am great at building the circuit but horrible at programming. It’s like I’m terrified of programming
Thanks from China Inner Mongolia
you gained a new subscriber
people forget to say: when 5V is in use and non rechargeable battery, you MUST break the charging path - otherwise your 3V battery may explode ;-) if you connect to 3.3V it will not happen as there is a diode in the circuit. same no issue if you use 5V and rechargeable battery ;-)
one more thing as bonus: this module has extra EEPROM that can be used ;-)
What if I have a non-rechargeable battery using 3.3V? Should it be fine, or should I go out and get a rechargeable one?
Thank you for your important video on how to add AM PM code to your real time clock.
thank u Dejan
you always give very useful tutorials..
Thanks for your great simple explanation in this video .How to use a library to set time automatically with DS3231 RTC?
Hello Dejan, where may I find the connections between LCD and Arduino board ?
Great, Thank you for your answer.
@@derekschwontz9072 where is the connection?
you can add temp and alarm to this prject better, ds3231 has temp function but not too good like dht22 but its ok for little project
tanks mate. Good tutorial.
fantastic video
How can I read out, for example the time, as an integer, so that I can make a alarm clock with it?
You can read the String and then covert it to integer using the string.toInt() function.
First of all, thanks for the reaction. But I tried it in multiple ways, but the fact that it uses rtc.getTimeStr(); seems the confuse the system. Is this a matter of notation?
I have: int i = String.toInt(rtc.getTimeStr());
Nice project easy and simple to understand
Great video, i got a 'warning deprecated conversion from string constant to 'char*' -wwrite-strings' but can you clarify this is nothing to worry about? Regards
Great video, thanks a lot :)
how can i used rtc to trigger a particular time to send a text message ?
Thanks a lot for this helpful video.
There is a note:
It works with me when I changed the serial as follow:
// Serial.begin(115200);
Serial.begin(9600);
Hi!
I need help about a project to simulate sunrise - sunset with real time clock ⏰.
E.g. i want to start at 07:00 and stop at 19:00 dimming by time (every 15min) for six hours to peak and onother six hours decrease light to sunset.
*arduino uno
*DS1302 Clock Module with Battery
*AC Light Dimmer Module for PWM control, 1 Channel, 3.3V/5V logic, AC 50/60hz, 220V/110V
*dimmable led lamp
Subscribed
Nobody asked
I have bought a couple of the DS3231 modules. Trying to build a temp logger. All of them get the temperature wrong by 18 deg C even when using different libraries. And it seems they lose a lot of time as well. I guess the time loss and temp is correlated. Any idea why this might be?
Thanks for posting this video. Subbed!
can you provide the wiring scheme for the added LCD example? thanks
Thankyou sir... The video is very helpful but I want to know in which software the schematic is made ... Can you mention the name of software please
HI how can i add more than 2 alarm tones in this project??
You're awesome.
How do I get the RTC to show short date and time 12hr format
Can we attach 2 external hardware that uses i2C. Example: LCD with i2C and this realtime clock
?
@@arielgeneranta4786 Yes. you just need the lcd and the rtc as slaves with diffrent l2c adresses
hi. I want to set a 10 minute down clock. Any idea how I can do it?
how did you connect the LCD?
Where is the circuit diagram for the LCD display?
Thanks a lot!
Very good!
Cao Dejan, ne pravis ni jedan tutorial arduità na Srpskom?
Thank u so much
do i need the unisex time and the wait function or no?
If I do not want to use the module(for time being), so can I remove that battery ?? and if I do not remove it,how long the ic /device will last??
And after reinserting a new battery after a year ,will the device run?
Ok, lot of thanks
How can I use this setup to connect to a motor and make analog clock in place of a digital one.???? Anyone have any idea ???
How exactly would you call the hour/min/seconds separately? I tried the 'now' approach, but for some reason this library doesn't seem to support this.
there is a examples called serial hard that shows you how to get hour, min, and seconds separately
can someone tell me where to find the DS3231 library for proteus? Bcz In proteus only DS3232 is available. So, can we use same code for DS3232?
Does RTC modules change time when the winter of summer time comes?
How can I set the source file for the library. In my project I want to get the time and days and manipulate it to count down to a certain date.
Can you make a stopwatch with this?
Can we use Arduino nano...?
Awesome
No problem, I have the DS1302, but I might buy the DS3231.
Is it possible to do without the MEGA
Great, I use the UNO because it's cheaper and smaller.
Yes, it's pins A4 and A5 on the Uno
Sir can you please add a pushbutton so when we will push it we can see the day and temperature and then we push it second time we can see the time and date again.
Sir please reply
i have a very simple question to ask related to displaying things in lcd 1602
please answer
i have multiple sensor and from multiple sensor i can get mulitple types of data .
For instance i can get time, date, month, day of week, temperature, humidity, dstance between objects, etc.
I have only 1 lcd1602.
HOW I CAN DISPLAY EACH DATA LIKE THIS WAY.
DATE = XX XXXXXX XXXX (DATE MONTH YEAR)
TIME = XX:XX:XX AM/PM
DAY = XXXXXXXXXXX
TEMP = XX.XXX °C/°F
HUMI = XX.XXX %
DIST = XXX cm XXX in
i want that when only 1 switch is pressed two new lines shown
hello sir,
how can I command something with time? for example if I want to command something every day at a certain hour?
can you help me please!
@Mad Max yo chill out and Atef Ben Attia, you can probably use an if statement like this. You would need to save the hour part to a variable as well. This variable as well as the code would need to be in a loop so it constantly refreshes.
if ((hour == 2) && (minute == 0)) {
*insert what you want it to do here*
}
there is no info on how to connect the LCD. i connect it based on lcd example but dont work with this sketch..
Sync to time server?
everything works fine, but when I disconnect the arduino from the PC, wait a few minutes, connect it again, Time starts from the moment where I cut off the power.
Where is the fault hardware or software?
sir im getting lot of erros stating same thing i used but im not getting output
Thanks, the video is very clear.
How can we use the module for timestamping data
Yes, you can. I just used it in my latest project, the DIY Air Quality Monitor, for sensors data for the last 24 hours.
I am getting error like error: no matching function for call to 'DS3231::DS3231(const uint8_t&, const uint8_t&)'
DS3231 rtc(SDA, SCL); Please help me to fix it
What if you need to display this to be seen from 10 meters ??
Very nice, will you ever post a tutorial for raspberry pi?
No, arduino better
how can you set time manualy
Can we do this with Arduino Uno?
can some one help me with count down timer with RTC module?
Can't use i2c?
How can i convert time from 24 hour format to 12 hour format?
Can anyone help me please?
@therealnightwriter Absolutely. U r right.
I'm trying to find that joy...
IDK why some people act like retards
I get it on Serial Monitor, but it dosn't appear on my 16x2 lcd, help me pls, thx in advance
is there 3 times to upload the code ?
2 times from example & 1 time code from your web
Hey i want to know how you connected the LCD with the arduino and the ds3231?
Why don't you show the day of the week on the display?
why my RTC module time change ?
May I use the arduino nano I don't have arduino mega. ^^;;
You should be able to use it without an arduino nano, because as far as I know, with any given arduino circuit board; the only difference is how fast it can process info, as well as its storage capacity.
bonjour je vous remercier j'ai bousoin de programe d'un LCD16-2 avec RTC et Arduino
Thank you very much. I’ve got a problem this device after a day the time becomes of by around 6 seconds from the real time how can I fix that.
Thank you
Hi sir, motor on only 10 sec in Every hour...I need Arduino uno program code....
Hello. Why my real time within 24 hours is delaying by 15 minutes?
Can u share me pin config. For arduino nano
hooked up lcd and got this message rtc was not declared n this scope. (print get timestr)...any ideas? I used your tutorial on wiring lcd.
started new sketch, included the two libraries and your code....
You need to initialize the I2C bus using pull up resistors.. 2.2k for fast and upto 10k for slow communication bus.. This tutorial is not complete.
Math is cool
Good day! I already tried your given codes and I encountered some problems. Like, when its automatically printing on the serial monitor, after the first line being printed, the following lines showing undefined character. Why is that, and how can I solve it?
Change the Baudrate on your Serial Monitor to the one given in the code, for me it looks like: "Serial.begin(115200)"
How to make the RTC counting a delay? I'll explain. I have 2 large stepper motors. I need to turn them one revolution per minute. Is it possible to do it with RTC? My delay varies and is from a minute up to 24 hours. :) The delay function is not accurate for long periods of time...
Thank you, Dejan! Your reply was really helpful! I'll try this tomorrow (I have the setup already made).
0:43 voice crack ;)
Thumbs up :)
***** 👍👍
Can Arduino be used to produce business goods? What is your opinion on this?
جميل
The cr2032 cell should be replaced with a lir2032 due to the cr cell series being primary.
hello someone with the codes for ds3231 with arduino unor3. Im new here
Hai Sir you please helping. This program . Am wery interest
SUPERR
hello sir, could you share code for Daily Schedule Timer ON-OFF Using RTC Module with Memory Backup If Power Cuts
But it isn't accurate right?
It's accurate don't worry
@@casper2501 thanks
very hard to understand your demostration
may-i-know-the-connections-please
Please vidiga code pettandi
Ооо.. Этот русско-хакерский акцент :D
no push button
he gave me the wrong code