23 |
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
24 |
# |
# |
25 |
|
|
26 |
|
import sys |
27 |
try: |
try: |
28 |
import serial |
import serial |
29 |
except ImportError: |
except ImportError: |
30 |
print "This program requires pyserial,", \ |
print "This program requires pyserial,", \ |
31 |
"try checking the python-serial package is installed" |
"try checking the python-serial package is installed" |
32 |
|
sys.exit(-1) |
33 |
|
|
34 |
from optparse import OptionParser |
from optparse import OptionParser |
|
import sys |
|
35 |
|
|
36 |
def read_temperature(device, sensor): |
def read_temperature(device, sensor): |
37 |
ser = serial.Serial(device, 9600, timeout=1) |
ser = serial.Serial(device, 9600, timeout=1) |