The Code that I am going to attach below is uploaded on the Arduino and this Arduino is connected via a DIP MAX232 following the scheme that i will provide as well to the USB of my Laptop. I am using Termite to communicate with the Arduino. The problem here is that I do not manage to do communicate with it. I dont get any answers or anything is shown on the Termite screen. The Tx led blinks and before I of course have tested the code in the arduino IDE. Now the arduino IDE is closed though. It shouldnt interfere.
The settings in Termite are:
- Baudrate: 9600
- Databits: 8
- Stopbits: 1
- Parity: none
- Flow control: none
- Forward: none
- Transmitted text: Append CR-LF
The scheme is from the following website (I cannot put pictures up yet as I am Newbie):
https://www.e-hack.de/max232-spannungspegelwandler-funktion-und-schaltung/
The condenstaors all have 10 micro F.
And here my code:
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println("Hallo, bitte antworten!");
while (Serial.available() == 0) {
}
String antwort = Serial.readStringUntil('\n');
Serial.print("Empfangene Antwort: ");
Serial.println(antwort);
delay(1000);
}
If you need any more information or if I forgot to provide some tell me. Thank you for your help

