#include<18F4550.h> #fuses XT, PUT, NOLVP, NOWDT, #use delay(clock=4000000) #define m1_1 (pin_b1) #define m1_2 (pin_b2) #define m2_1 (pin_b3) #define m2_2 (pin_b4) void main() { output_high m1_1; output_high m2_1; delay_ms(5000); output_low m1_1; output_low m2_1; output_high m1_2; output_high m2_2; delay_ms(2500); output_low m1_2; output_low m2_2; }