With Phidgets 21 if I wanted to open a remote device with Python, I would say: motorControl.openRemoteIP("192.168.83.106", 5001, -1, "") With Phidget 22, I can open a locally attached device easily enough: MyServoChannel = RCServo() MyServoChannel.openWaitForAttachment(10000) But...