Free Project - 245 LED Display


Results 1 to 40 of 222

Threaded View

  1. #11
    Join Date
    May 2006
    Location
    Kedah, Malaysia
    Posts
    18


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by magu View Post
    what ? : "????????????????????????????????????????????????? ??????????????? ."
    Magu I am also beginner....but I think you are asking something but you ask somtehing that too general and may be too hard for you to chew one shot.

    Why not you create a simple flashing LEDs 1st.
    Be familiar with with the PIC 1st. The Circuit and PIC Basic Pro Language 1st.

    Then once successful you can start troubleshooting this project why not you try to always on all the row 1st and cascade the counter.
    Just high all the Rows 1st.


    TRISA = %00000000
    TRISB = %10000000

    'Variables...

    ColPosition VAR BYTE
    ClockColsCounter VAR PORTB.6
    ROW1 VAR PORTA.2
    ROW2 VAR PORTA.3
    ROW3 VAR PORTB.4
    ROW4 VAR PORTB.3
    ROW5 VAR PORTB.0
    ROW6 VAR PORTB.2
    ROW7 VAR PORTB.1
    ResetColsCounter VAR PORTB.5


    'Reset 4017 counters
    ResetColsCounter = 1
    Pause 100
    ResetColsCounter = 0

    ROW1 = 0
    ROW2 = 0
    ROW3 = 0
    ROW4 = 0
    ROW5 = 0
    ROW6 = 0
    ROW7 = 0

    Matchmode:
    ColPosition=0
    ROW1 = 1
    ROW2 = 1
    ROW3 = 1
    ROW4 = 1
    ROW5 = 1
    ROW6 = 1
    ROW7 = 1

    CascadeCounter:
    For ColPosition = 0 to 37
    PULSOUT ClockColsCounter,100 'to create a PWM for 4017 counter clock
    Next ColPosition

    Goto Matchmode:
    END

    Do not think to fetch the data from the EEprom 1st.
    By doing this you know that your circuit is ok. (power supply, micro and driver is ok)
    Then you can start deal with the EEPROM.

    Just Try a basic thing 1st once you verified the basic thing works then you go to the harder thing.

    Nobody can help you if you just keep ask general thing why it doesn't work.
    Last edited by fazan83; - 12th June 2007 at 09:32.

Similar Threads

  1. Conway's Game Of Life
    By wellyboot in forum mel PIC BASIC Pro
    Replies: 45
    Last Post: - 28th May 2020, 06:14
  2. Single digit 7 Seg LED clock - PIC16F88
    By thirsty in forum Code Examples
    Replies: 4
    Last Post: - 17th July 2009, 08:42
  3. Replies: 2
    Last Post: - 14th July 2008, 22:11
  4. 245 Led Matrix Display (as constructed by Magu)
    By magu in forum Code Examples
    Replies: 11
    Last Post: - 29th June 2007, 00:07
  5. LCD will not start
    By btaylor in forum mel PIC BASIC Pro
    Replies: 49
    Last Post: - 24th May 2007, 02:30

Members who have read this thread : 1

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

Posting Permissions

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