hi fellows, i want to send integers to arduino via serial. for example when i send "1" the data received by arduino is "49" and when i send "a" the data received by arduino is "97"
there were two functions in python; ord() and unichr() for example unichr(97) = u"a" and ord(u"a")=97
but im not that good at C language.