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
MOSI→ HIGHMISO → HIGH
MOSI → HIGHMISO → Floating
MOSI → HIGHMISO → LOW
MOSI → LOWMISO → LOW
MOSI → FloatingMISO → Floating