have you tried switching the lines?
can you post a datasheet of the - maxrs232 board -
which version of the IDE do you use?
which version of software Serial?
Thanks both of you for the reply. Had to change the rx/tx lines on the maxrs232 (pins incorrectly labelled) and set the baudrate to 9600. After that, maxrs232 is detected.
However, when I connect a cable up to the maxrs232 and use the read() command, it only returns a value of 255.
Akubra:
Thanks both of you for the reply. Had to change the rx/tx lines on the maxrs232 (pins incorrectly labelled) and set the baudrate to 9600. After that, maxrs232 is detected.
However, when I connect a cable up to the maxrs232 and use the read() command, it only returns a value of 255.
255 means there is no data available. Use the Serial.available() function to get the amount of chars in the input buffer.
if (Serial.available() > 0) c = Serial.read();
else c = '';