Sending serial from python to an arduino
I'm working on a project where I send a bunch of data through an arduino to my laptop. I'm using python serial to read in the serial data. That part is working fine. Then I do some processing and I want to send the results back to the arduino. This part is not working so well.
It seems like python serial.write() only likes to send strings? Right now I'm trying to send back one integer value. Any ideas how to do that?
[original story: Let's Make Robots]