4

我有一个连接了 2 个DS18B20温度传感器的 Arduino。我对python非常(非常)新。我正在寻找一种读取串行输入并将其解析为 sqlite 数据库的方法,但这超出了我自己。为什么在尝试将我的串行端口定义为变量时出现错误?

第一件事sys.version

2.7.1 (r271:86832, Jul 31 2011, 19:30:53) 
[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)]

我的当前,只是从串行连接程序中读取输入。

from serial import serial
import time


# open serial port
ser = serial.Serial('/dev/tty.usbmodem621',9600,timeout=2) 
ser.open()


while True:
    print('dev 0' + ser.read())     
    pass

ser.close()

我目前无法编译它。我发现的这个错误的大多数结果都告诉 add from serial import serial,但在这种情况下它没有工作。

错误。

$ python ser.py
Traceback (most recent call last):
  File "ser.py", line 1, in <module>
    from serial import serial
  File "/Users/frankwiebenga/serial.py", line 8, in <module>
AttributeError: 'module' object has no attribute 'Serial'

另外,如果我只是使用import serial我会得到同样的错误

$ python ser.py
Traceback (most recent call last):
  File "ser.py", line 1, in <module>
    import serial
  File "/Users/frankwiebenga/serial.py", line 8, in <module>
AttributeError: 'module' object has no attribute 'Serial'

另外,根据评论。创建了名为的新文件something.py,但无论使用import serialor ,仍然会出现相同的错误from serial import serial

$ python something.py 
Traceback (most recent call last):
  File "something.py", line 1, in <module>
    from serial import serial
ImportError: No module named serial

运行我的 bash 脚本时,我得到一个有效的输出,所以我知道它不是 Arduino 代码。

输出:

Requesting temperatures...DONE
Device 0: 25.62
Device 1: 25.75
Requesting temperatures...DONE
Device 0: 25.62
Device 1: 25.81

重击:

while true  # loop forever
do
   inputline="" # clear input

   # Loop until we get a valid reading from AVR
   until inputline=$(echo $inputline | grep -e "^temp: ")
   do
      inputline=$(head -n 1 < /dev/tty.usbmodem621)
   done
   echo "$inputline"
done 
4

2 回答 2

2

你可以这样做:

from serial import Serial

s = Serial(...)

或者:

import serial

s = serial.Serial(...)

选一个。

于 2012-08-24T23:22:04.300 回答
2

你需要使用import serial. serial是模块的名称,它不包含带有 name 的属性serial

http://pyserial.sourceforge.net/shortintro.html#opening-serial-ports

于 2012-08-24T23:02:28.353 回答