PIC16F84A Microcontroller based Digital Clock


Closed Thread
Results 1 to 3 of 3

Hybrid View

  1. #1
    Join Date
    Dec 2011
    Location
    Malabe, Sri Lanka
    Posts
    5

    Lightbulb PIC16F84A Microcontroller based Digital Clock

    Hi Friends,

    This is a PIC16F84A Microcontroller based digital clock. It displays hours, minutes and seconds using six 7 segments displays.
    The circuit has three push button switches to reset and set hours and minutes.
    It shows time in 12 hour format.

    Use the following link to download schematic, source code and compiled hex file -

    http://www.manelsoft.com/projects/pi...tal_clock.aspx

    Name:  clock.jpg
Views: 10635
Size:  94.8 KB Name:  clock2.jpg
Views: 6861
Size:  77.4 KB

    Have a nice day.!

  2. #2
    Join Date
    Aug 2003
    Posts
    985


    Did you find this post helpful? Yes | No

    Default Re: PIC16F84A Microcontroller based Digital Clock

    Nice

    But I have to ask.. There's a left over pin on portB, 3 more on PortA,
    and the extra chip is only giving you four more pins than it's using.

  3. #3
    Join Date
    Nov 2005
    Location
    Bombay, India
    Posts
    947


    Did you find this post helpful? Yes | No

    Default Re: PIC16F84A Microcontroller based Digital Clock

    Nice effort. However there seems to be no inter-digit blanking thereby giving the display a washed out appearance.

    I suggest you modify this routine to create the blanking
    Code:
    DELAY		MOVWF PORTB
    		DECFSZ	DEL,1
    		GOTO	$-.1
    		MOVLW 0FFH
    		MOVWF PORTB
    		CALL CLOCK
    		RETURN
    and remember to turn PORTB back to 0FFH to be able to read your keys

    Cheers
    Jerson

Similar Threads

  1. Talking Clock (Pic Based)
    By Art in forum General
    Replies: 2
    Last Post: - 20th January 2012, 15:45
  2. Digital clock project
    By astouffer in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 27th February 2009, 04:00
  3. Digital Clock With Alarm Using DS1307.
    By Leonardo in forum mel PIC BASIC Pro
    Replies: 3
    Last Post: - 16th February 2007, 03:43
  4. 6-Digit Digital Clock using PIC16F84
    By emavil in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 7th February 2006, 20:04
  5. digital clock
    By jojokatada in forum mel PIC BASIC Pro
    Replies: 1
    Last Post: - 21st February 2005, 12:16

Members who have read this thread : 2

You do not have permission to view the list of names.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts