Solving Approach

How do you plan to solve it?

 R= V/I                  (10mA)(1000) = 0.01A

R=5V/0.01A

R=500R
 

Code

void setup() {
  // put your setup code here, to run once:
pinMode(9, OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
digitalWrite(9, HIGH);
delay(400);

digitalWrite(9, LOW);
delay(800);

}

Output

Video

Add video of the output (know more)

 

 

Photo of Output

Add a photo of your hardware showing the output.

 

Upvote
Downvote

Submit Your Solution

Note: Once submitted, your solution goes public, helping others learn from your approach!