The following method can be used for drag racing track where start and finish line use different sensor but should trigger the same lane ID.
In the Phidget setup window of PCLC you can't say that IO 2 will trigger lane 2 and IO 3 will also trigger lane 2 but you can do it by editing the phidget_sn.ini file.
Edit the phidget_sn.ini file, you will find something like this:
[17299]
DI0=LANE_1
DI0_MIN=10
DI1=LANE_2
DI1_MIN=10
DI2=LANE_3
DI2_MIN=10
DI3=LANE_4
DI3_MIN=10
[LANEPOWER]
LANEPOWER_1=OD0
LANEPOWER_SN_1=17299
LANEPOWER_2=OD1
In this example the IO 2 trigger lane 3 , after modification it will trigger lane 2:
[17299]
DI0=LANE_1
DI0_MIN=10
DI1=LANE_2
DI1_MIN=10
DI2=LANE_2
DI2_MIN=10
DI3=LANE_4
DI3_MIN=10
[LANEPOWER]
LANEPOWER_1=OD0
LANEPOWER_SN_1=17299
LANEPOWER_2=OD1
So here lane 2 will be triggered by IO 1 and IO 2....interesting for drag track.
WARNING: If you go into the phidget setup window of PCLC and you click the OK button then your special configuration will be overwrited !!!