Question.5
What is the idle state of MOSI and MISO pins? (after executing the following code)
NOTE : The Master is not connected
Arduino code (SPI Slave) :
#include <SPI.h> void setup() { pinMode(MISO, OUTPUT); SPCR |= _BV(SPE); delay(2000); } void loop() { }
Select Answer
MOSI → HIGHMISO → LOW
MOSI → HIGHMISO → Floating
MOSI → FloatingMISO → HIGH
MOSI → LOWMISO → HIGH