Compare Serial read data and analog read value

1k Views Asked by At

I am going to send a input to Arduino through serial communication. That variable should be stored in a variable. That data which I send through serial communication should be compared to an analog input value and if both becomes equal, then some action should be performed.

The data sent to Arduino through serial communication is only sent once. So, the program should store the value and therefore compare with the analog input value. What should I use, String or string conversion?

2

There are 2 best solutions below

1
On

Your analog data using analogRead() will be an int in the range of 0-1023 (though depending on your sensor, it could be much less than that but those are the min/max values). So your target value sent over the serial port can just be stored in an int variable using parseInt().

0
On

You have to determine the end of the string. If you were sending single character commands or byte values then you can simple Serial.read() the value into the "int". Where as I suspect your are sending text numbers e.g. "123" or a string of "1","2",3","\n".

Either char*(string) or String will work. But you have to build the "string" from the serial.read's and identify the end of the string. Hence noting the use of "\n". Or you can frame it to always expect the same number of characters. e.g. "0","2",3"

see previous discussion and other and another