Can I use MISO for SoftwareSerial RX?
Posted: Tue Aug 02, 2016 11:05 pm
I am using SPI for my LCD (library TFT_ILI9163C), but the MISO pin is not used. I am running out of pins on the ESP-WROOM-02 (ESP-13) and would like to use the unused MISO pin for SoftwareSerial RX.
Changing the pin function in the sketch setup() does not work:
For testing purpose, I changed the line in SPI.cpp begin() from
to
It does not work either.
Any pointers will be helpful.
Changing the pin function in the sketch setup() does not work:
Code: Select all
pinMode(MISO, INPUT);
For testing purpose, I changed the line in SPI.cpp begin() from
Code: Select all
pinMode(MISO, SPECIAL);
to
Code: Select all
pinMode(MISO, INPUT);
It does not work either.
Any pointers will be helpful.