0
Hello
I have a string and would like to send by Serial. But this giving error and not compiling.
My code:
#include <SoftwareSerial.h>
SoftwareSerial swSer(2, 3);
String variavel = "Hello";
void setup() {
}
void loop() {
swSer.write(variavel);
}
What error is displaying?
– Marcelo de Andrade
I’ve got it, thank you
– abduzeedo
@abduzeedo please adjust your question by putting your solution, so if someone has the same problem, already know how to solve.
– Tiedt Tech