When you run the HelloWorld manager example with a TMP1101 connected, you probably get output like this:
Code: Select all
>python HelloWorld.py
Opening....
Phidget Simple Playground (plug and unplug devices)
Press Enter to end anytime...
Hello to Device 6-Port USB VINT Hub Phidget, Serial Number: 673808
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808
Hello to Device Hub Port - Digital Input Mode, Serial Number: 673808
Hello to Device Hub Port - Digital Input Mode, Serial Number: 673808
Hello to Device Hub Port - Digital Input Mode, Serial Number: 673808
Hello to Device Hub Port - Digital Input Mode, Serial Number: 673808
Hello to Device Hub Port - Digital Input Mode, Serial Number: 673808
Hello to Device Hub Port - Digital Input Mode, Serial Number: 673808
Hello to Device Hub Port - Digital Output Mode, Serial Number: 673808
Hello to Device Hub Port - Digital Output Mode, Serial Number: 673808
Hello to Device Hub Port - Digital Output Mode, Serial Number: 673808
Hello to Device Hub Port - Digital Output Mode, Serial Number: 673808
Hello to Device Hub Port - Digital Output Mode, Serial Number: 673808
Hello to Device Hub Port - Digital Output Mode, Serial Number: 673808
Hello to Device Hub Port - Voltage Input Mode, Serial Number: 673808
Hello to Device Hub Port - Voltage Input Mode, Serial Number: 673808
Hello to Device Hub Port - Voltage Input Mode, Serial Number: 673808
Hello to Device Hub Port - Voltage Input Mode, Serial Number: 673808
Hello to Device Hub Port - Voltage Input Mode, Serial Number: 673808
Hello to Device Hub Port - Voltage Input Mode, Serial Number: 673808
Hello to Device Hub Port - Voltage Ratio Mode, Serial Number: 673808
Hello to Device Hub Port - Voltage Ratio Mode, Serial Number: 673808
Hello to Device Hub Port - Voltage Ratio Mode, Serial Number: 673808
Hello to Device Hub Port - Voltage Ratio Mode, Serial Number: 673808
Hello to Device Hub Port - Voltage Ratio Mode, Serial Number: 673808
Hello to Device Hub Port - Voltage Ratio Mode, Serial Number: 673808
Closing...
The reason the TMP1101 has nine channels is because it has five temperature channels (four thermocouples and one ambient sensor on the board for temperature correction) and four Voltage Input channels for reading the probes' raw voltage. If you want to be able to see what kind of channels these are, you can add the ChannelClass and ChannelSubClass properties to the attach handler:
Code: Select all
def AttachHandler(self, channel):
attachedDevice = channel
serialNumber = attachedDevice.getDeviceSerialNumber()
deviceName = attachedDevice.getDeviceName()
channelClass = attachedDevice.getChannelClass()
subClass = attachedDevice.getChannelSubclass()
print("Hello to Device " + str(deviceName) + ", Serial Number: " + str(serialNumber) + ", Class: " + str(ChannelClass.getName(channelClass)) + ", Subclass: " + str(ChannelSubclass.getName(subClass)))
Then the output will look like this:
Code: Select all
>python HelloWorld.py
Opening....
Phidget Simple Playground (plug and unplug devices)
Press Enter to end anytime...
Hello to Device 6-Port USB VINT Hub Phidget, Serial Number: 673808, Class: PHIDCHCLASS_HUB, Subclass: PHIDCHSUBCLASS_NONE
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808, Class: PHIDCHCLASS_TEMPERATURESENSOR, Subclass: PHIDCHSUBCLASS_TEMPERATURESENSOR_THERMOCOUPLE
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808, Class: PHIDCHCLASS_TEMPERATURESENSOR, Subclass: PHIDCHSUBCLASS_TEMPERATURESENSOR_THERMOCOUPLE
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808, Class: PHIDCHCLASS_TEMPERATURESENSOR, Subclass: PHIDCHSUBCLASS_TEMPERATURESENSOR_THERMOCOUPLE
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808, Class: PHIDCHCLASS_TEMPERATURESENSOR, Subclass: PHIDCHSUBCLASS_TEMPERATURESENSOR_THERMOCOUPLE
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808, Class: PHIDCHCLASS_TEMPERATURESENSOR, Subclass: PHIDCHSUBCLASS_NONE
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGEINPUT, Subclass: PHIDCHSUBCLASS_NONE
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGEINPUT, Subclass: PHIDCHSUBCLASS_NONE
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGEINPUT, Subclass: PHIDCHSUBCLASS_NONE
Hello to Device 4x Thermocouple Phidget, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGEINPUT, Subclass: PHIDCHSUBCLASS_NONE
Hello to Device Hub Port - Digital Input Mode, Serial Number: 673808, Class: PHIDCHCLASS_DIGITALINPUT, Subclass: PHIDCHSUBCLASS_NONE
Hello to Device Hub Port - Digital Input Mode, Serial Number: 673808, Class: PHIDCHCLASS_DIGITALINPUT, Subclass: PHIDCHSUBCLASS_NONE
Hello to Device Hub Port - Digital Input Mode, Serial Number: 673808, Class: PHIDCHCLASS_DIGITALINPUT, Subclass: PHIDCHSUBCLASS_NONE
Hello to Device Hub Port - Digital Input Mode, Serial Number: 673808, Class: PHIDCHCLASS_DIGITALINPUT, Subclass: PHIDCHSUBCLASS_NONE
Hello to Device Hub Port - Digital Input Mode, Serial Number: 673808, Class: PHIDCHCLASS_DIGITALINPUT, Subclass: PHIDCHSUBCLASS_NONE
Hello to Device Hub Port - Digital Input Mode, Serial Number: 673808, Class: PHIDCHCLASS_DIGITALINPUT, Subclass: PHIDCHSUBCLASS_NONE
Hello to Device Hub Port - Digital Output Mode, Serial Number: 673808, Class: PHIDCHCLASS_DIGITALOUTPUT, Subclass: PHIDCHSUBCLASS_DIGITALOUTPUT_DUTY_CYCLE
Hello to Device Hub Port - Digital Output Mode, Serial Number: 673808, Class: PHIDCHCLASS_DIGITALOUTPUT, Subclass: PHIDCHSUBCLASS_DIGITALOUTPUT_DUTY_CYCLE
Hello to Device Hub Port - Digital Output Mode, Serial Number: 673808, Class: PHIDCHCLASS_DIGITALOUTPUT, Subclass: PHIDCHSUBCLASS_DIGITALOUTPUT_DUTY_CYCLE
Hello to Device Hub Port - Digital Output Mode, Serial Number: 673808, Class: PHIDCHCLASS_DIGITALOUTPUT, Subclass: PHIDCHSUBCLASS_DIGITALOUTPUT_DUTY_CYCLE
Hello to Device Hub Port - Digital Output Mode, Serial Number: 673808, Class: PHIDCHCLASS_DIGITALOUTPUT, Subclass: PHIDCHSUBCLASS_DIGITALOUTPUT_DUTY_CYCLE
Hello to Device Hub Port - Digital Output Mode, Serial Number: 673808, Class: PHIDCHCLASS_DIGITALOUTPUT, Subclass: PHIDCHSUBCLASS_DIGITALOUTPUT_DUTY_CYCLE
Hello to Device Hub Port - Voltage Input Mode, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGEINPUT, Subclass: PHIDCHSUBCLASS_VOLTAGEINPUT_SENSOR_PORT
Hello to Device Hub Port - Voltage Input Mode, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGEINPUT, Subclass: PHIDCHSUBCLASS_VOLTAGEINPUT_SENSOR_PORT
Hello to Device Hub Port - Voltage Input Mode, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGEINPUT, Subclass: PHIDCHSUBCLASS_VOLTAGEINPUT_SENSOR_PORT
Hello to Device Hub Port - Voltage Input Mode, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGEINPUT, Subclass: PHIDCHSUBCLASS_VOLTAGEINPUT_SENSOR_PORT
Hello to Device Hub Port - Voltage Input Mode, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGEINPUT, Subclass: PHIDCHSUBCLASS_VOLTAGEINPUT_SENSOR_PORT
Hello to Device Hub Port - Voltage Input Mode, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGEINPUT, Subclass: PHIDCHSUBCLASS_VOLTAGEINPUT_SENSOR_PORT
Hello to Device Hub Port - Voltage Ratio Mode, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGERATIOINPUT, Subclass: PHIDCHSUBCLASS_VOLTAGERATIOINPUT_SENSOR_PORT
Hello to Device Hub Port - Voltage Ratio Mode, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGERATIOINPUT, Subclass: PHIDCHSUBCLASS_VOLTAGERATIOINPUT_SENSOR_PORT
Hello to Device Hub Port - Voltage Ratio Mode, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGERATIOINPUT, Subclass: PHIDCHSUBCLASS_VOLTAGERATIOINPUT_SENSOR_PORT
Hello to Device Hub Port - Voltage Ratio Mode, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGERATIOINPUT, Subclass: PHIDCHSUBCLASS_VOLTAGERATIOINPUT_SENSOR_PORT
Hello to Device Hub Port - Voltage Ratio Mode, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGERATIOINPUT, Subclass: PHIDCHSUBCLASS_VOLTAGERATIOINPUT_SENSOR_PORT
Hello to Device Hub Port - Voltage Ratio Mode, Serial Number: 673808, Class: PHIDCHCLASS_VOLTAGERATIOINPUT, Subclass: PHIDCHSUBCLASS_VOLTAGERATIOINPUT_SENSOR_PORT
Closing...