2

次のようにPython/NXT / libusbを使用した簡単な作業例があります(注:USBインターフェイスを備えたLegoのNXTを使用):

import nxt.locator
from nxt.motor import *

def flip_cube(b):
   m_arm = Motor(b, PORT_B)
   m_arm.turn(75, 85)
   m_arm.turn(-50, 85)

b = nxt.locator.find_one_brick()
flip_cube(b)

上記は問題なく動作します。

トレーニング演習として、Pythonコードを「オブジェクト化」して、コードの周りにライブラリを配置できるようにしますが、LibUSBライブラリがusbデバイスを見つけられないと文句を言います。は?私は何を間違っているのですか。クラス構造を使用したコードの試みは次のとおりです。

import nxt.locator
from nxt.motor import *

class BasicRobotTestCase():
    __test__ = True

    def __init__(self):
        b = nxt.locator.find_one_brick()

    def flip_cube(self):
        m_arm = Motor(b, PORT_B)
        m_arm.turn(75, 85)
        m_arm.turn(-50, 85)

    def test_flip_cube(self):
        flip_cube()

上記を実行すると、次のエラーが発生します(最初のサンプルを再実行しても、正常に実行されます)。

E
======================================================================
ERROR: Failure: USBError (No such device (it may have been disconnected))
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Library/Python/2.6/site-packages/nose-0.11.4-py2.6.egg/nose/loader.py", line 485, in makeTest
    return self._makeTest(obj, parent)
  File "/Library/Python/2.6/site-packages/nose-0.11.4-py2.6.egg/nose/loader.py", line 539, in _makeTest
    return MethodTestCase(obj)
  File "/Library/Python/2.6/site-packages/nose-0.11.4-py2.6.egg/nose/case.py", line 331, in __init__
    self.inst = self.cls()
  File "/Users/gnunez/git-projects/pdca_automation/rubics/tests/basic_robot_test_case.py", line 8, in __init__
    b = nxt.locator.find_one_brick()
  File "/Users/gnunez/git-projects/pdca_automation/nxt/locator.py", line 112, in find_one_brick
    for s in find_bricks(host, name, silent, method):
  File "/Users/gnunez/git-projects/pdca_automation/nxt/locator.py", line 43, in find_bricks
    for s in socks:
  File "/Users/gnunez/git-projects/pdca_automation/nxt/usbsock.py", line 83, in find_bricks
    for bus in usb.busses():
  File "build/bdist.macosx-10.6-universal/egg/usb/legacy.py", line 330, in busses
    return (Bus(),)
  File "build/bdist.macosx-10.6-universal/egg/usb/legacy.py", line 326, in __init__
    self.devices = [Device(d) for d in core.find(find_all=True)]
  File "build/bdist.macosx-10.6-universal/egg/usb/legacy.py", line 311, in __init__
    self.configurations = [Configuration(c) for c in dev]
  File "build/bdist.macosx-10.6-universal/egg/usb/core.py", line 706, in __iter__
    yield Configuration(self, i)
  File "build/bdist.macosx-10.6-universal/egg/usb/core.py", line 407, in __init__
    configuration
  File "build/bdist.macosx-10.6-universal/egg/usb/_debug.py", line 52, in do_trace
    return f(*args, **named_args)
  File "build/bdist.macosx-10.6-universal/egg/usb/backend/libusb10.py", line 423, in get_configuration_descriptor
    config, byref(cfg)))
  File "build/bdist.macosx-10.6-universal/egg/usb/backend/libusb10.py", line 357, in _check
    raise USBError(_str_error[retval.value])
USBError: No such device (it may have been disconnected)
4

1 に答える 1

1

BasicRobotTestCase を作成するとき、b 変数をインスタンスのメンバーとして保存しないと (つまりself.b) 、失われます。

編集:まあ、欠落selfは問題の原因ではありませんでした。おそらく、クラスをインスタンス化する方法がUSBグラブに何かを変更し、クラスを直接インスタンス化してみてください。

import nxt.locator
from nxt.motor import *

class BasicRobotTestCase():
    __test__ = True

    def __init__(self):
        self.b = nxt.locator.find_one_brick()   # Store the brick in self.b

    def flip_cube(self):
        m_arm = Motor(self.b, PORT_B)   # use the stored brick in self.b to create the motor
        m_arm.turn(75, 85)
        m_arm.turn(-50, 85)

    def test_flip_cube(self):
        self.flip_cube()

if __name__=="__main__":
    BasicRobotTestCase().test_flip_cube()
于 2011-09-12T07:51:51.040 に答える