Hi guys,
In serial debugging assistant (sscom32) i receive the following data from LCD - A5 5A 06 83 00 0F 01 00 07 which is ok.
Baude rate = 9600
Data bit = 8
Stop Bit = 1
Parity = None
I am trying to use Arduino UNO to read data but i get different values to the same baud rate . Could you help me take a look?
Thank you so much!
#include <SoftwareSerial.h>
SoftwareSerial portOne(0,1);
void setup()
{
Serial.begin(9600);
while (!Serial) {
;
}
portOne.begin(9600);
}
void loop()
{
portOne.listen();
Serial.println("Data from port one:");
while (portOne.available() > 0) {
int inByte = portOne.read();
Serial.println(inByte, HEX);
}
Serial.println();
delay(1000);
}