A atif123 Member Mar 12, 2011 #1 i need a c code on keil . 89 c 51 Attachments untitled.GIF 116.6 KB · Views: 449
E elfcurry Member Apr 16, 2011 #3 At its crudest, you could start with #include <8051.h> void main() { while (1) // do forever { P2_0 = P1_0;// copy switch input to output } } This will just copy the current switch state to the output and takes no account of switch bouncing. You'll have to imagine the indenting! Last edited: Apr 16, 2011
At its crudest, you could start with #include <8051.h> void main() { while (1) // do forever { P2_0 = P1_0;// copy switch input to output } } This will just copy the current switch state to the output and takes no account of switch bouncing. You'll have to imagine the indenting!
A Arm New Member Aug 25, 2011 #4 elfcurry said: At its crudest, you could start with #include <8051.h> void main() { while (1) // do forever { P2_0 = P1_0;// copy switch input to output } } This will just copy the current switch state to the output and takes no account of switch bouncing. You'll have to imagine the indenting! Click to expand... I hope this will work.....
elfcurry said: At its crudest, you could start with #include <8051.h> void main() { while (1) // do forever { P2_0 = P1_0;// copy switch input to output } } This will just copy the current switch state to the output and takes no account of switch bouncing. You'll have to imagine the indenting! Click to expand... I hope this will work.....