Good evening,
I have a project in which I am supposed to create my own UART between 2 arduino UNO boards. The problem is that I am not allowed to use any of the following:
I/O pins 0 and 1 (assuming an Arduino Uno),
IIC,
SPI,
SoftwareSerial library.
I looked online on how to start this but everybody seems to be using Rx and Tx which I am not allowed to.
Could someone give me an idea on how to start my project ? Also, how could I set the baud rate without using Serial.begin() ?
I suspect the idea is that you implement the equivalent of some SoftwareSerial function "from scratch."
Hopefully, class material and/or reading will have explained some of what that means. If not, you might start with Universal asynchronous receiver-transmitter - Wikipedia