Write a program that does the following using 2 buttons and 3 LEDs:
- Pressing button 1 should toggle right to the next LED.
- Pressing button 2 should toggle left to the previous LED.
Write an Arduino program to make three LEDs glow according to the delay (in ms) and in the sequence entered by the user. For example, L1 200 L2 400 L3 500
should make LED1 blink for 200ms, LED2 blink for 400ms and LED3 blink for 500ms simultaneously.