Arduino: Two Servos, Two Buttons

Part 1 of this assignment got you started with a program and circuit that makes one servo move when you push the button.

Now you will modify your code and program from Part 1 so that there are are two buttons and two servos.   Create this in Tinkercad and turn in the link to your circuit using the Tinkercad shared URL.  

-put your first and last name on the first line of your code as a comment like this:
//Rod Milstead
-comment your new lines of code and explain what each new line of code does in the program.  Comments start with a //

The RIGHT button will control the RIGHT servo.

The LEFT button will control the LEFT servo.

Circuit HINTS:
-you will need to wire a second button to a new pin on your breadboard
-you will need to wire a second servo to a new pin on your breadboard

Program HINTS – click here for some starter code:
-you only need ONE void setup function – don’t go copy-pasting everything
-you only need ONE void loop – don’t go copy-pasting everything
-you will create a new variable for the servo that you add.  I would use variable names like servoR (right servo) and servoL (left servo).
-you will create a new variable for the button that you add.  I would use variable names like buttonR (controls the right servo) and buttonL (controls the left servo).