6. GPIO High Impedance

Question.2

A resistor network is connected as shown below:
What will be the current flowing through point A?

Code:

void setup() {
  pinMode(2, OUTPUT);
  digitalWrite(2, HIGH);

  pinMode(3, INPUT);
  digitalWrite(3, LOW);

  pinMode(6, OUTPUT);
  digitalWrite(6, HIGH);
}

void loop() {
}


 


 

Select Answer