
Program for Traffic Signal. Program of Traffic Signal by using the C programing of micro controler. #include <reg51.h> void MSDelay(unsigned int); void main(void) { P1=0x00; P3=0x00; P2=0x00; for (;;) { P1=0x24; P3=0x03; MSDelay(400); P1=0x22; P3=0x03; MSDelay(400); P1=0x21; P3=0x09; MSDelay(400);...
Read More »