使用Python在Blender中处理文件时出错

时间:2011-02-09 16:48:32

标签: python arduino blender

我正在尝试从连接到Blender的外部设备读取Arduino中的数据并保存到文件中。但它给出了这个错误

SyntaxError: invalid syntax
Python script error from controller "contr#CONTR#1":
Traceback (most recent call last):
  File "SerialBGE.py", line 6, in <module>
    f=open('abc.dat', 'r')
IOError: [Errno 2] No such file or directory: 'abc.dat'

我的代码是正确的,我不明白这个问题。

serial.py

import GameLogic
import pickle
import os

os.system('dane.py')
f=open('abc.dat', 'r')
print "abc.dat = "
x=pickle.load(f)
print x
print "end of abc.dat"
f.close();
y=x[:]
for z in x:
    y.remove(z)
    print "removing " + str(z)
    print str(y) + " and " + str(x)
    f=open('abc.dat', 'w')
    pickle.dump(y, f)
    f.close()
    contr = GameLogic.getCurrentController()
    location=contr.actuators["loc"]
    y = 0.001*(ord(z)-128)
    location.dLoc=[y,0,0]
    contr.activate(location)

dane.py:

import serial
import pickle

with serial.Serial(COM3,9600) as port, open('abc.dat','r') as f:
    for i in range(0, 10):
        x = port.read(size=1)
        y=pickle.load(f)
        f.close()
        f=open('abc.dat','w')
        for i in x:
            y.append(i)
        pickle.dump(y,f)
        f.close()
port.close()

1 个答案:

答案 0 :(得分:3)

您收到错误是因为第一次运行程序时文件'abc.dat'不存在。

在'abc.dat'存在之前,当你第一次运行程序时,你需要处理初始案例。