> 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);
}
}