Electronic Projects, forums and more.

Go Back   Electronic Circuits Projects Diagrams Free > Electronics Forums > Electronic Projects Design/Ideas/Reviews

Notices


Electronic Projects Design/Ideas/Reviews Are you building an electronic project or want to? Maybe you need some assistance? Come and submit your electronic questions here and let our experienced members find a solution.

Reply
 
LinkBack Thread Tools Display Modes
Old 1st November 2007, 09:00 PM   (permalink (permalink))
Thumbs up

Quote:
Nigel Goddwin : Don't you think mobile phones use chips?.
Yes I do.

I'll use a pic and charlieplexing

Last edited by Ishikawa; 2nd November 2007 at 11:31 AM.
Ishikawa is offline  
Reply With Quote
Old 1st November 2007, 09:13 PM   (permalink (permalink))
Default

Some one who does a lot of PIC charlieplexing will probably be along shortly!
__________________
PIC programmer software, and PIC Tutorials at:
http://www.winpicprog.co.uk
Nigel Goodwin is offline  
Reply With Quote
Old 1st November 2007, 09:27 PM   (permalink (permalink))
Default

I just noticed that with the charlieplexing method will probably be hard to keep each row of leds ON like it is shown in the pictures.

This method will turn them ON and turn them off by the time it turns ON the next row of leds.
Ishikawa is offline  
Reply With Quote
Old 1st November 2007, 09:39 PM   (permalink (permalink))
Default

Quote:
Originally Posted by Ishikawa
I just noticed that with the charlieplexing method will probably be hard to keep each row of leds ON like it is shown in the pictures.

This method will turn them ON and turn them off by the time it turns ON the next row of leds.
You do it so fast you can't tell they are flashing, it's a VERY standard technique.
__________________
PIC programmer software, and PIC Tutorials at:
http://www.winpicprog.co.uk
Nigel Goodwin is offline  
Reply With Quote
Old 1st November 2007, 10:07 PM   (permalink (permalink))
Default

deleted by original poster.

Last edited by Ishikawa; 1st November 2007 at 10:12 PM.
Ishikawa is offline  
Reply With Quote
Old 1st November 2007, 11:38 PM   (permalink (permalink))
Default

Quote:
Originally Posted by Ishikawa
So I need 4 inputs to drive the 8 leds.

From the picture there is 5 wires:

One for the first led always on
One for Ground
The other 3 for the 8 leds (remember the 8 leds r actually considered to be 15)

However from the equation above, 3 inputs drive only 6 leds and there 8 left.

I'm I wrong???

Thanks
Hi,
Are you sure that the first LED is always on? I can see it flashing
Use 4 I/O to control 9 LEDs (9 stages), possible? Since the max stages of using 4 I/O is 12.
__________________
Superman returns..
bananasiong is offline  
Reply With Quote
Old 2nd November 2007, 12:24 AM   (permalink (permalink))
Default

Quote:
Originally Posted by ericgibbs
hi,
Looking at your 1st posting LED pattern, I would agree with Gordz, a LM3914 set for bar mode. Drive the input of the LM3914 with a ramp voltage.

If your LED's require more current than the LM can supply, use the LM to drive 4/5 transistors, which drive the LED's.
ericgibbs, you seem to be on the right track, a triangle ramp voltage with the
LM3914. Can the triangle wave be clipped on top to allow the full heart to stay on for a shot period of time?
Attached Images
File Type: gif tri.gif (11.1 KB, 2 views)
File Type: gif tri2.gif (3.5 KB, 2 views)

Last edited by iONic; 2nd November 2007 at 03:34 AM.
iONic is offline  
Reply With Quote
Old 2nd November 2007, 08:24 AM   (permalink (permalink))
Default

This link has a video that explains charlieplexing very well

http://www.brightcove.tv/title.jsp?t...eup=1028763155

At 5:50 he says: "Only one LED can be ON at any given time" which means I can't turn on more than one led at any given time?...Just wanted to confirm this, I hope I'm wrong.


But then again I saw 3 videos at youtube about charlieplexing and they had more than one led on at a time.


Also at 9:32 he says: "this will give roughly 40mA of peak current going through each led"

then he says: "and therefore the average current through the led is 40mA/20=2mA", so I'm a bit confused isn't there a contradiction??

Please watch the whole video.

Last edited by Ishikawa; 2nd November 2007 at 08:31 AM.
Ishikawa is offline  
Reply With Quote
Old 2nd November 2007, 09:09 AM   (permalink (permalink))
Default

Quote:
Originally Posted by iONic
ericgibbs, you seem to be on the right track, a triangle ramp voltage with the
LM3914. Can the triangle wave be clipped on top to allow the full heart to stay on for a shot period of time?
hi,
I would try using 'two' LM outputs at the 'top' to drive the same LED set.
That would give the appearance of a longer on time.
__________________
Eric
"Good enough is Perfect"

PIC tutorials:
Gramo's: www.digital-diy.net/
Bill's: www.blueroomelectronics.com/
ericgibbs is offline  
Reply With Quote
Old 2nd November 2007, 11:14 AM   (permalink (permalink))
Default

Quote:
Originally Posted by Ishikawa
without using a counter/decoder??
A PIC would be the answer here except the game plan was to use NO counters or decoder
Gordz is offline  
Reply With Quote
Old 2nd November 2007, 11:23 AM   (permalink (permalink))
Default

Use a PIC with enough pins to drive each LED (or pair) and do away with the multiplexing.

This will make the code and the hardware very simple.

Like Erick says Good enough is Perfect.
3v0 is online now  
Reply With Quote
Old 2nd November 2007, 11:25 AM   (permalink (permalink))
Default

Quote:
Originally Posted by Gordz
A PIC would be the answer here except the game plan was to use NO counters or decoder
I think the OP has dropped that restriction.

Quote:
The whole point of my project is to do it just like it is shown in the pictures so let's forget about the counter and timers.
3v0 is online now  
Reply With Quote
Old 2nd November 2007, 12:56 PM   (permalink (permalink))
Default

Quote:
Originally Posted by Ishikawa
At 5:50 he says: "Only one LED can be ON at any given time" which means I can't turn on more than one led at any given time?...Just wanted to confirm this, I hope I'm wrong.
I already answered this above!.
__________________
PIC programmer software, and PIC Tutorials at:
http://www.winpicprog.co.uk
Nigel Goodwin is offline  
Reply With Quote
Old 2nd November 2007, 05:44 PM   (permalink (permalink))
Default

Quote:
bananasiong:
Hi,
Are you sure that the first LED is always on? I can see it flashing
Use 4 I/O to control 9 LEDs (9 stages), possible? Since the max stages of using 4 I/O is 12.
Yep looks like it.

Quote:
Nigel Goodwin: You do it so fast you can't tell they are flashing, it's a VERY standard technique.
So I have to make the pic to switch between high and low at the 5 inputs fast enough so it won't look like the leds r turning on&off. Is this what u mean?

Thanks
Ishikawa is offline  
Reply With Quote
Old 2nd November 2007, 08:01 PM   (permalink (permalink))
Default

Quote:
Originally Posted by Ishikawa
So I have to make the pic to switch between high and low at the 5 inputs fast enough so it won't look like the leds r turning on&off. Is this what u mean?
Yes, check my PIC tutorials for an example of multiplexing LED's.
__________________
PIC programmer software, and PIC Tutorials at:
http://www.winpicprog.co.uk
Nigel Goodwin is offline  
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes



Similar Threads
Thread Thread Starter Forum Replies Latest
Parallel L298N Driver circuit help Sidco7 Micro Controllers 1 11th September 2006 10:06 PM
LED Garden Light circuit bryan1 Electronic Projects Design/Ideas/Reviews 5 28th October 2004 12:39 AM
How to make a phone light up internally with LEDs? Batphone! mr.stinkhead Electronic Projects Design/Ideas/Reviews 0 1st April 2004 09:01 PM
light depended circut together with its power supply circuit thabit ahmada Electronic Projects Design/Ideas/Reviews 1 28th March 2004 06:23 PM
neon indicator light in a series circuit whiterabbit General Electronics Chat 9 31st October 2002 09:13 AM



All times are GMT. The time now is 04:38 AM.


Electronic Circuits  |  Electronics Wiki
Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.