Đồng hồ led 7 đoạn sử dụng ATMEGA16

Mạch bên dưới được sử dụng phần mềm Codevision AVR để code và sử dụng phần mềm Proteus 8.5 (phiên bản cao hơn vẫn mở được file, phiên bản thấp hơn sẽ không mở được)  để vẽ và mô phỏng. Để hiểu rõ hơn về mạch bạn nên download hai phần mềm đó về sau đó giải nén file tải xuống để mở mô phỏng và code.

File mô phỏng và code bạn vui lòng kéo xuống cuối bài viết để download




- Sử dụng 3 phím SETTING, UP, DOWN để điều chỉnh giờ.
               + Nhấn SETTING lần thứ nhất để chỉnh giờ, lần 2 để chỉnh phút. dùng phím UP, DOWN để di chuyển giữa 2 đơn vị GIỜ và PHÚT.

CHÚ Ý: Khi nhấn SETTING hay di chuyển giữa các đơn vị bằng UP or DOWN các bạn sẽ ko thấy các đơn vị nhấp nháy ( mình chưa sửa phần này), vì thế các bạn lưu ý nhớ số lần nhấn nút.
Code C:

/*******************************************************

http://www.vnbit.tk
Date    : 21-Apr-2016
Author  : EDIT by Nguyen Van Thuan

Chip type               : ATmega16
Program type            : Application
AVR Core Clock frequency: 4.000000 MHz
Memory model            : Small
External RAM size       : 0
Data Stack size         : 256
*******************************************************/
#include <mega16.h>
#include <delay.h>
#include <i2c.h>
#include <ds1307.h>
#include <stdlib.h>
//#define SET PINB.3;
//#define UP PINB.5;
//#define DOWN PINB.7;

unsigned char flash maled[10] = {0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90};
unsigned char set;
unsigned char gio,phut,giay;
unsigned char a=0;
void hienthi()
{
    PORTD = 0x01;
    PORTC = maled[gio/10];
    delay_us(300);
    PORTC = 255;
    
    PORTD = 0x02;
    PORTC = maled[gio%10];
    delay_us(300);
    PORTC = 255;
        
    PORTD = 0x04;
    PORTC = maled[phut/10];
    delay_us(300);
    PORTC = 255;
       
    PORTD = 0x08;
    PORTC = maled[phut%10];
    delay_us(300);
    PORTC = 255;       
    
    PORTD = 0x10;
    PORTC = maled[giay/10];
    delay_us(300);
    PORTC = 255;
        
    PORTD = 0x20;
    PORTC = maled[giay%10];
    delay_us(300);
    PORTC = 255;       
}
    
void caidat()
{

    if(PINB.3==0)
    {
        a=1;
        set++;
        if(set>2)
        {
        set=0;
        a=0;
        }
        while(PINB.3==0);
    }
    
    if(set==1)
    {
        if(PINB.5==0)
        {
            gio++;
            if(gio==24) gio=0;
         while(PINB.5==0);
         {
          rtc_set_time(gio,phut,giay);
         }
        }
        
        if(PINB.7==0)
        {
            gio--;
            if (gio==255) gio=23;
            while (PINB.7==0);
            {
             rtc_set_time(gio,phut,giay);
            }
        }
        
        PORTD = 0x01;
        PORTC = maled[gio/10];
        delay_us(300);
        PORTC = 255;
    
    
        PORTD = 0x02;
        PORTC = maled[gio%10];
        delay_us(300);
        PORTC = 255;
      }
      
    if (set==2)
    {
        if (PINB.5==0)
        {
          phut++;
          if (phut>59) phut=0;
          while(PINB.5==0);
          {
            rtc_set_time(gio,phut,giay);
          }
        }
        
        if (PINB.7==0)
        {
          phut--;
          if (phut==255) phut=59;
          while (PINB.7==0);
          {
            rtc_set_time(gio,phut,giay);
          }
        }
        
        PORTD = 0x04;
        PORTC = maled[phut/10];
        delay_us(300);
        PORTC = 255;
    
    
        PORTD = 0x08;
        PORTC = maled[phut%10];
        delay_us(300);
        PORTC = 255; 
       } 
}    

void main(void)
{
// Declare your local variables here

// Input/Output Ports initialization
// Port A initialization
// Function: Bit7=Out Bit6=Out Bit5=Out Bit4=Out Bit3=Out Bit2=Out Bit1=Out Bit0=Out 
DDRA=(1<<DDA7) | (1<<DDA6) | (1<<DDA5) | (1<<DDA4) | (1<<DDA3) | (1<<DDA2) | (1<<DDA1) | (1<<DDA0);
// State: Bit7=0 Bit6=0 Bit5=0 Bit4=0 Bit3=0 Bit2=0 Bit1=0 Bit0=0 
PORTA=(0<<PORTA7) | (0<<PORTA6) | (0<<PORTA5) | (0<<PORTA4) | (0<<PORTA3) | (0<<PORTA2) | (0<<PORTA1) | (0<<PORTA0);

// Port B initialization
// Function: Bit7=Out Bit6=Out Bit5=Out Bit4=Out Bit3=Out Bit2=Out Bit1=Out Bit0=Out 
DDRB=(1<<DDB7) | (1<<DDB6) | (1<<DDB5) | (1<<DDB4) | (1<<DDB3) | (1<<DDB2) | (1<<DDB1) | (1<<DDB0);
// State: Bit7=0 Bit6=0 Bit5=0 Bit4=0 Bit3=0 Bit2=0 Bit1=0 Bit0=0 
PORTB=(1<<PORTB7) | (0<<PORTB6) | (5<<PORTB5) | (0<<PORTB4) | (1<<PORTB3) | (0<<PORTB2) | (0<<PORTB1) | (0<<PORTB0);

// Port C initialization
// Function: Bit7=Out Bit6=Out Bit5=Out Bit4=Out Bit3=Out Bit2=Out Bit1=Out Bit0=Out 
DDRC=(1<<DDC7) | (1<<DDC6) | (1<<DDC5) | (1<<DDC4) | (1<<DDC3) | (1<<DDC2) | (1<<DDC1) | (1<<DDC0);
// State: Bit7=0 Bit6=0 Bit5=0 Bit4=0 Bit3=0 Bit2=0 Bit1=0 Bit0=0 
PORTC=(0<<PORTC7) | (0<<PORTC6) | (0<<PORTC5) | (0<<PORTC4) | (0<<PORTC3) | (0<<PORTC2) | (0<<PORTC1) | (0<<PORTC0);

// Port D initialization
// Function: Bit7=Out Bit6=Out Bit5=Out Bit4=Out Bit3=Out Bit2=Out Bit1=Out Bit0=Out 
DDRD=(1<<DDD7) | (1<<DDD6) | (1<<DDD5) | (1<<DDD4) | (1<<DDD3) | (1<<DDD2) | (1<<DDD1) | (1<<DDD0);
// State: Bit7=0 Bit6=0 Bit5=0 Bit4=0 Bit3=0 Bit2=0 Bit1=0 Bit0=0 
PORTD=(0<<PORTD7) | (0<<PORTD6) | (0<<PORTD5) | (0<<PORTD4) | (0<<PORTD3) | (0<<PORTD2) | (0<<PORTD1) | (0<<PORTD0);

// Timer/Counter 0 initialization
// Clock source: System Clock
// Clock value: Timer 0 Stopped
// Mode: Normal top=0xFF
// OC0 output: Disconnected
TCCR0=(0<<WGM00) | (0<<COM01) | (0<<COM00) | (0<<WGM01) | (0<<CS02) | (0<<CS01) | (0<<CS00);
TCNT0=0x00;
OCR0=0x00;

// Timer/Counter 1 initialization
// Clock source: System Clock
// Clock value: Timer1 Stopped
// Mode: Normal top=0xFFFF
// OC1A output: Disconnected
// OC1B output: Disconnected
// Noise Canceler: Off
// Input Capture on Falling Edge
// Timer1 Overflow Interrupt: Off
// Input Capture Interrupt: Off
// Compare A Match Interrupt: Off
// Compare B Match Interrupt: Off
TCCR1A=(0<<COM1A1) | (0<<COM1A0) | (0<<COM1B1) | (0<<COM1B0) | (0<<WGM11) | (0<<WGM10);
TCCR1B=(0<<ICNC1) | (0<<ICES1) | (0<<WGM13) | (0<<WGM12) | (0<<CS12) | (0<<CS11) | (0<<CS10);
TCNT1H=0x00;
TCNT1L=0x00;
ICR1H=0x00;
ICR1L=0x00;
OCR1AH=0x00;
OCR1AL=0x00;
OCR1BH=0x00;
OCR1BL=0x00;

// Timer/Counter 2 initialization
// Clock source: System Clock
// Clock value: Timer2 Stopped
// Mode: Normal top=0xFF
// OC2 output: Disconnected
ASSR=0<<AS2;
TCCR2=(0<<PWM2) | (0<<COM21) | (0<<COM20) | (0<<CTC2) | (0<<CS22) | (0<<CS21) | (0<<CS20);
TCNT2=0x00;
OCR2=0x00;

// Timer(s)/Counter(s) Interrupt(s) initialization
TIMSK=(0<<OCIE2) | (0<<TOIE2) | (0<<TICIE1) | (0<<OCIE1A) | (0<<OCIE1B) | (0<<TOIE1) | (0<<OCIE0) | (0<<TOIE0);

// External Interrupt(s) initialization
// INT0: Off
// INT1: Off
// INT2: Off
MCUCR=(0<<ISC11) | (0<<ISC10) | (0<<ISC01) | (0<<ISC00);
MCUCSR=(0<<ISC2);

// USART initialization
// USART disabled
UCSRB=(0<<RXCIE) | (0<<TXCIE) | (0<<UDRIE) | (0<<RXEN) | (0<<TXEN) | (0<<UCSZ2) | (0<<RXB8) | (0<<TXB8);

// Analog Comparator initialization
// Analog Comparator: Off
// The Analog Comparator's positive input is
// connected to the AIN0 pin
// The Analog Comparator's negative input is
// connected to the AIN1 pin
ACSR=(1<<ACD) | (0<<ACBG) | (0<<ACO) | (0<<ACI) | (0<<ACIE) | (0<<ACIC) | (0<<ACIS1) | (0<<ACIS0);
SFIOR=(0<<ACME);

// ADC initialization
// ADC disabled
ADCSRA=(0<<ADEN) | (0<<ADSC) | (0<<ADATE) | (0<<ADIF) | (0<<ADIE) | (0<<ADPS2) | (0<<ADPS1) | (0<<ADPS0);

// SPI initialization
// SPI disabled
SPCR=(0<<SPIE) | (0<<SPE) | (0<<DORD) | (0<<MSTR) | (0<<CPOL) | (0<<CPHA) | (0<<SPR1) | (0<<SPR0);

// TWI initialization
// TWI disabled
TWCR=(0<<TWEA) | (0<<TWSTA) | (0<<TWSTO) | (0<<TWEN) | (0<<TWIE);

// Bit-Banged I2C Bus initialization
// I2C Port: PORTB
// I2C SDA bit: 1
// I2C SCL bit: 0
// Bit Rate: 100 kHz
// Note: I2C settings are specified in the
// Project|Configure|C Compiler|Libraries|I2C menu.
i2c_init();

// DS1307 Real Time Clock initialization
// Square wave output on pin SQW/OUT: On
// Square wave frequency: 1Hz
rtc_init(0,1,0);
MCUCSR = (1<<JTD);
MCUCSR = (1<<JTD);
//rtc_set_time(8,37,11);
PORTD = 0x20;

while (1)
      {
      // Place your code here
      rtc_get_time(&gio,&phut,&giay);
      hienthi();
      caidat();
      }
}
Nhấn vào link bên dưới để tải file mô phỏng và code:

----------------------------------------

----------------------------------------

5 Comments

  1. ko giai nén dc ad ơi. nếu dc add gửi qua mail : [email protected] được ko?

    ReplyDelete
  2. Xem lại Winrar của bạn có bị sao ko vậy

    ReplyDelete
  3. chay dk nhung ma so k hien thi len b a
    b gui lai cho mk [email protected]

    ReplyDelete
  4. Get into the world of warriors, spells and fantasies. Become the strongest and the most feared opponent. Fight for your honor and raise your level to unlock other characters.
    Krunker.io Crosshair
    Adobe finally terminated Flash
    Krunker .io

    ReplyDelete
  5. ad ơi e có một vài thắc mắc, ad cho e xin địa chỉ face được ko ạ?

    ReplyDelete

Post a Comment

Previous Post Next Post