Interface Python and Arduino With PySerial
by Hammock Boy in Circuits > Arduino
298542 Views, 83 Favorites, 0 Comments
Interface Python and Arduino With PySerial
Over the last few months I have learned how to program with Python. With one of the upcoming projects that I am working on it would be nice to have a computer’s display to view the data collected by a rover in real-time as well as crunch numbers while the rover completes its mission. The rover will have an Arduino as a brain. What I found after some searching was pySerial. This is a really neat piece of software that allows Python to send and receive data much like the Serial Monitor does.
pySerial is available to download at
pySerial is available to download at
Installation
Once you download it open up Terminal and type in:
To make sure that everything installed correctly open up Idle and type in 'Import Serial'. If no errors appears then everything is good to go.
You can check the available ports with the line
tar xfvz /Users/*Account*/Downloads/pyserial-2.6.tar.gz
cd pyserial-2.6
sudo python setup.py install
To make sure that everything installed correctly open up Idle and type in 'Import Serial'. If no errors appears then everything is good to go.
You can check the available ports with the line
ls /dev/tty.*
Program the Arduino
Now to test it out, upload the below sketch to your Arduino. I do not know how this will or will not work on Arduino clones.
void setup() {
Serial.begin(9600); // set the baud rate
Serial.println("Ready"); // print "Ready" once
}
void loop() {
char inByte = ' ';
if(Serial.available()){ // only send data back if data has been sent
char inByte = Serial.read(); // read the incoming data
Serial.println(inByte); // send the data back in a new line so that it is not all one long line
}
delay(100); // delay for 1/10 of a second
}
Program Idle
Next in Idle create a new window and create the below program.
Two things to keep in mind. To determine what serial port your Arduino is connected to look at the bottom right corner of your Arduino sketch. Whatever that is should be what is in quotes in line 3 of the Python program.
You can also change the baud rate in line 3 of the Python program and line 2 of the Arduino program as long as they stay the same.
Once you run the program it will print out the majority of ASCII characters. By first sending them to the Arduino, which will in turn send it back to the computer that Python then prints out.
from time import sleep
import serial
ser = serial.Serial('/dev/tty.usbmodem1d11', 9600) # Establish the connection on a specific port
counter = 32 # Below 32 everything in ASCII is gibberish
while True:
counter +=1
ser.write(str(chr(counter))) # Convert the decimal number to ASCII then send it to the Arduino
print ser.readline() # Read the newest output from the Arduino
sleep(.1) # Delay for one tenth of a second
if counter == 255:
counter = 32
Two things to keep in mind. To determine what serial port your Arduino is connected to look at the bottom right corner of your Arduino sketch. Whatever that is should be what is in quotes in line 3 of the Python program.
You can also change the baud rate in line 3 of the Python program and line 2 of the Arduino program as long as they stay the same.
Once you run the program it will print out the majority of ASCII characters. By first sending them to the Arduino, which will in turn send it back to the computer that Python then prints out.