I am trying to install Hwclock RTC DS3231 on my Raspberry Pi 2
Below are os version.
NAME: Raspbian GNU/Linux
VERSION_ID = 7
VERSION="7 (whezy)
ID = raspbian
ID_LIKE = debian
Step taken by me.
- sudo cp /etc/default/hwclock /etc/default/hwclock.BAK
- less /boot/overlays/README
- scroll to the i2c-rtc section and find the crossponding parameter for me it was ds3231
- sudo nano /boot/config.txt
- Added dtoverlay=i2c-rtc,ds1307
- Save and exit from nano editor.
- sudo nano /etc/modules
- Added i2c-dev, i2c-bcm2708 rtc-ds3231
- Save and exit from nano editor.
- reboot
- sudo apt-get install i2c-tools
- sudo dpkg --purge fake-hwclock
- sudo i2cdetect -y 1
- sudo nano /lib/udev/hwclock-set
Code:
dev=$1 #if [ -e /sys/fs/cgroup/systemd ] ; then # exit 0 #fi #if [ -f /etc/default/rcS ] ; then # . /etc/default/rcS #fi # These defaults are user-overridable in /etc/default/hwclock BADYEAR=no HWCLOCKACCESS=yes HWCLOCKPARS= HCTOSYS_DEVICE=rtc0 if [ -f /etc/default/hwclock ] ; then . /etc/default/hwclock fi if [ yes = "$BADYEAR" ] ; then /sbin/hwclock --rtc=$dev --systz --badyear else /sbin/hwclock --rtc=$dev --systz fi
sudo date
- sudo hwclock -w
- sudo hwclock -s
- sudo hwclock -r
- After that if I am checking the date and hwclock -r both coming correct but after reboot when I am running date its coming correct but hwclock -r it showing below message
hwclock: The Hardware Clock registers contain values that are either invalid (e.g. 50th day of month) or beyond the range we can handle (e.g. Year 2095).
I make some stuff with Arduino and here is the code:
The important thing is, once you set up the time of the
RTC
and after it comments it because if it runs again, it will overwrite it with this date time.The whole project is here.