Training and testing for new users.

For the image below, write a line of code to:

• read the voltage on A0.
int myVar = analogRead(A0);

• send the reading from A0 to the LED D5.
analogWrite(9 , myVar/4);

• turn the LED D4 off.
digitalWrite(10 , HIGH);