Make yourself a homemade clock with thermometer using ATMEGA128

homemade clock with thermometer-

In this step by step I wanna share my experiment with ATMEGA128 timer and interrupt using DS1307 and NTC to display homemade clock and thermometer.
It displays hour,minute,second, day of week, day of month, month, and year, and the temperature in celcius
Enjoy the project…

homemade clock with thermometer-

Step 1: Prepare all the parts for this project

This project will need these parts :
1. ATMEGA128 board
2. ATMEGA 128 chip
3. DS1307 module
4. USBASP for debugging
5. AVRStudio
6. NTC,
Please have a look on the photo

Step 2: Assemble all the parts together

After we prepare all the parts, we need to assemble them together,
Here are the ports I used for them :

clock

#define lcd_data_pin PORTA

#define en PORT_D.b0
#define rs PORT_D.b1
#define rw PORT_D.b2
ADMUX=(1<<REFS0 | ADC_0);                  //Conversion on channel 0, thermistor input

Step 3: Define the Variable for DS1307

I defined a variable for DS1307 like this :
// DS1307 Register Address
// Second: ds1307_addr[0]
// Minute: ds1307_addr[1]
// Hour  : ds1307_addr[2]
// Day   : ds1307_addr[3]
// Date  : ds1307_addr[4]
// Month : ds1307_addr[5]
// Year  : ds1307_addr[6]

Connect SCL to PD0 and SCK to PD1 to retrieve / read data from DS1307

Read more: Make yourself a homemade clock with thermometer using ATMEGA128

Leave a Comment

Your email address will not be published. Required fields are marked *