48. SPI Data Frame

Question.3

What is the idle state of MOSI and MISO pins? (after executing the following code)

NOTE: Slave is not connected.

Arduino code (SPI Master) :

#include <SPI.h>

void setup() {
  SPI.begin();
  delay(2000);
}

void loop() {
}

Select Answer