Search found 32 matches

by tgraz34
Mon Oct 04, 2010 1:37 am
Forum: The off topic lounge
Topic: Electronics word association
Replies: 66
Views: 118535

Re: Electronics word association

DROP
by tgraz34
Sat Oct 02, 2010 7:58 am
Forum: The off topic lounge
Topic: Electronics word association
Replies: 66
Views: 118535

Re: Electronics word association

MAGNETO
by tgraz34
Tue Sep 28, 2010 9:17 am
Forum: The Site
Topic: Cant connect to bradsprojects.com
Replies: 5
Views: 15217

Re: Cant connect to bradsprojects.com

I can now connect to bradsprojects.com from my home computer. my life has been saved haha! :D
by tgraz34
Thu Sep 23, 2010 10:03 pm
Forum: The Site
Topic: Cant connect to bradsprojects.com
Replies: 5
Views: 15217

Cant connect to bradsprojects.com

For some reason i cant connect to bradsprojects.com from my ip address. Right now im using my schools computers.
by tgraz34
Tue Sep 14, 2010 10:52 pm
Forum: PIC Tutorials
Topic: Tutorial 7 - All the info you need is right here!
Replies: 39
Views: 77453

How do you access the 8th output on the 7442 if you have the input connected to ground?

The input requires the D colum to have a high instead of a low.
by tgraz34
Mon Sep 13, 2010 7:38 am
Forum: Your projects
Topic: Two player pong on 8x8 led matrix
Replies: 4
Views: 8586

Two player pong on 8x8 led matrix

Ive been thinking about this project for a while now and i could use a little insight. I plan on using potentiometers as the controllers and a GR led matrix as the display.

Would assembly be an efficient way of programing this?

If you have any ideas, suggestions, example code please let me know. :D
by tgraz34
Wed Sep 08, 2010 12:03 pm
Forum: PIC Tutorials
Topic: Tutorial 7 - All the info you need is right here!
Replies: 39
Views: 77453

hey brad, i changed the delay to 03 and i cant tell a difference between that and 255.

what could be the problem?
by tgraz34
Mon Sep 06, 2010 4:51 am
Forum: PIC Tutorials
Topic: Tutorial 7 - All the info you need is right here!
Replies: 39
Views: 77453

Hey brad, thanks for that tutorial.
I do have a question about it though, how would you scroll an image (or sentence) across the matrix?
by tgraz34
Sat Aug 14, 2010 7:58 am
Forum: The Great Race
Topic: led matrix help please
Replies: 7
Views: 20278

hey thanks a lot for the help :)

by the way, i really like your 24x24 led matrix project and i'd love to see a video of it sometime.
by tgraz34
Sat Aug 14, 2010 4:13 am
Forum: The Great Race
Topic: led matrix help please
Replies: 7
Views: 20278

Im still confused... looking at brads schematic, it looks like the anode leads are coming out on the left side of the matrix and the cathodes are coming out the top... on my matrix schematic... the cathodes come out the the left and the anodes on top. Could you tell me what pin on the matrix(data sh...
by tgraz34
Sat Aug 14, 2010 12:40 am
Forum: The Great Race
Topic: led matrix help please
Replies: 7
Views: 20278

led matrix help please

The schematic diagram for the great race led matrix looks different than the schematic diagram for the matrices i bought. Can someone take a look at the data sheet and tell me if i bought the wrong led matrix? and can someone tell me the difference between the diagrams? THANKS anthony http://www.sur...
by tgraz34
Mon Aug 09, 2010 4:57 am
Forum: PIC Tutorials
Topic: Tutorial 1 help please
Replies: 7
Views: 19335

Im a little confused. Will this code count down from 255, 255 times, and then do it again 255 times? ledon movlw d'255' movwf delay_1 movwf delay_2 movlw d'255' movwf delay_3 delay_loopon decfsz delay_1, f goto delay_loopon decfsz delay_2, f goto delay_loopon decfsz delay_3, f goto delay_loopon retu...
by tgraz34
Fri Aug 06, 2010 8:20 am
Forum: PIC Tutorials
Topic: Tutorial 1 help please
Replies: 7
Views: 19335

I thought maybe it had something to do with the decfsz command :?

can you please explain why it still looks the same?

Also, how come when i added this code, it doesnt look like led stays on for any longer than it did before?

Code: Select all

movlw d'255'
   movwf delay_3 
by tgraz34
Fri Aug 06, 2010 4:24 am
Forum: PIC Tutorials
Topic: Tutorial 1 help please
Replies: 7
Views: 19335

Sorry for the late reply, i've been pretty busy lately. So i guess i'm confused about the order you place some of your code in. Does it matter if you place movwf delay_2 before movwf delay_1. Also, does it matter if you place decfsz delay_1 before decfsz delay_2. The reason i ask this question is be...
by tgraz34
Tue Aug 03, 2010 7:36 am
Forum: PIC Tutorials
Topic: Tutorial 1 help please
Replies: 7
Views: 19335

Tutorial 1 help please

Hey everyone, i just started programming about a week ago so don't be surprised if i'm doing something completely wrong. I'm trying to make a led stay on longer than its stays off and this is my approach. Please tell me if my approach would work. Thanks Anthony begin bsf PORTB, 0 call ledon bcf PORT...