I come to you again because I have a problem with the Arduino SoftwareSerial library. With a basic example I fail to see results in the serial monitor.
The basic code example:
#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11);
void setup() {
mySerial.begin(4800);
}
void loop() {
mySerial.println("HELLO");
delay(100);
}
I guess it should show the string "HELLO" on the serial port, but nothing appears. I have found that the baud setting is correct. The hardware is simple. Only an Arduino Uno v3 without any connected component.