Write Arduino programming for a traffic light this application with the following lighting sequences and delay time as indicated: (16 marks) Red (20sec) (Red + Yellow (2sec) (R) Green (60sec) (R)Yellow (2sec) (R) repeat all over First few commands are given int Red=11 int Yellow =12 int Green =13 void setup() pinMode(Red, OUTPUT); pinMode(Yellow, OUTPUT); pinMode(Green, OUTPUT);