|
Post by bullibaum on Aug 8, 2018 7:21:13 GMT
I uploaded the example main_serial for the Shieldbuddy and tried to send input with the serial monitor in the Arduino IDE and with HTerm. When I input anything the answer should have been the input but I didn't receive anything. After exchanging SerialASC.write() with SerialASC.print() all I'm receiving are a couple of 0x00 bytes. Port and baudrate should be fine and another computer with working installation receives the correct answer so the upload from my computer is also working just not the communication. I hope anyone has a solution for my problem! greetings
|
|
|
Post by Admin on Aug 8, 2018 7:23:11 GMT
What Baudrate are you using?
|
|
|
Post by bullibaum on Aug 8, 2018 7:31:29 GMT
9600
|
|
|
Post by Admin on Aug 8, 2018 7:32:52 GMT
OK. Please send the sketch!
|
|
|
Post by bullibaum on Aug 8, 2018 7:36:42 GMT
void setup(){ SerialASC.begin(9600); SerialASC.println("Setup"); }
void loop(){ SerialASC.write(SerialASC.read()); }
when I uploaded it on my computer and tested it on another it was working. I just can`t test it on my computer.
|
|
|
Post by Admin on Aug 8, 2018 7:52:03 GMT
Hi,
Your program is fine! It works using the Arduino IDE Serial Monitor. Make sure your HTerm is sending just CR at the end of a line.
|
|
|
Post by bullibaum on Aug 8, 2018 10:14:13 GMT
It doesn't work when i try it. Is it possible that there is a problem with the driver? I tried reinstalling but that didnt help either.
|
|
|
Post by bullibaum on Aug 8, 2018 10:27:47 GMT
i tried it now with the baudrate 250000 and it's working
|
|