Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsElectronicsBasicsRepairDesignCADComponentsEquipmentElectrical Engineering
ElectronicsKB.com
Contact UsLink To UsSearch & Site Map

Electronics Forum / CAD / July 2007



Tip: Looking for answers? Try searching our database.

Random 8+ LED Flasher

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
electfire@gmail.com - 23 Jul 2007 22:03 GMT
Does anyone have a schematic for a 8(or more, you now what they say
the more the better) LED Flasher that will flash LEDs in a random
sequence
Chuck Harris - 23 Jul 2007 22:35 GMT
> Does anyone have a schematic for a 8(or more, you now what they say
> the more the better) LED Flasher that will flash LEDs in a random
> sequence

      o +5V
      |
+-----+------+
|     1      |
|            |
[quoted text clipped - 14 lines]
|            |
|    20      |
+-----+------+
      |
     ---
     ///

Compile the text below with CCS's C compiler
model PLM:

#include "16F631.h"
#fuses INTRC_IO,NOMCLR,NOWDT,NOPROTECT,BROWNOUT
#use delay(clock=8000000)

void
main()
{
   while(1){
      output_C(rand());
      delay_ms(250);
   }
}
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.