RS 232 - Baud Rate: 9600, Parity: EVEN, Stop Pits: 1, Data Bits: 8

Hello, I have a problem with sending data from arduino after 232, if anyone can give me pomuc configuration poert arduino because I have to send data from

Baud Rate: 9600,
Parity: EVEN,
Stop Pits: 1,
Data Bits: 8,

if anyone knows how to do it thank you in advance for your help :slight_smile:

Using hardware serial you can configure this easily. See here for reference.

Serial.begin(9600,SERIAL_8E1);

ok, thank you