Skip to content

Commit

Permalink
refactor: wrong switches ports
Browse files Browse the repository at this point in the history
  • Loading branch information
PIERROOOTT committed Feb 7, 2024
1 parent fe21714 commit 2765ec8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/back_switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# reach in mm/s².
remote=True, # True if connected to a wireless VINT Hub, False if
# connected to a USB VINT Hub.
switch_ports=(5, 6) # Port numbers of the VINT Hub where the
switch_ports=(1, 2) # Port numbers of the VINT Hub where the
# switches are connected.
)

Expand Down
2 changes: 1 addition & 1 deletion examples/load_cell.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# reach in mm/s².
'remote': True, # True if connected to a wireless VINT Hub, False if
# connected to a USB VINT Hub.
'switch_ports': (5, 6), # Port numbers of the VINT Hub where the
'switch_ports': (1, 2), # Port numbers of the VINT Hub where the
# switches are connected.
}])

Expand Down
2 changes: 1 addition & 1 deletion examples/machine_position_abs.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
'absolute_mode': True, # If True, get the position in reference of
# the value given.
'reference_pos': 20, # Reference position example.
'switch_ports': (5, 6), # Port numbers of the VINT Hub where the
'switch_ports': (1, 2), # Port numbers of the VINT Hub where the
# switches are connected.
'save_last_pos': True, # If True, save the last position acquired in a
# .npy file.
Expand Down
2 changes: 1 addition & 1 deletion examples/machine_position_rel.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# reach in mm/s².
'remote': True, # True if connected to a wireless VINT Hub, False if
# connected to a USB VINT Hub.
'switch_ports': (5, 6), # Port numbers of the VINT Hub where the
'switch_ports': (1, 2), # Port numbers of the VINT Hub where the
# switches are connected.
}])

Expand Down
2 changes: 1 addition & 1 deletion examples/machine_speed.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# reach in mm/s².
'remote': True, # True if connected to a wireless VINT Hub, False if
# connected to a USB VINT Hub.
'switch_ports': (5, 6), # Port numbers of the VINT Hub where the
'switch_ports': (1, 2), # Port numbers of the VINT Hub where the
# switches are connected.
}])

Expand Down
2 changes: 1 addition & 1 deletion examples/make_zero.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# reach in mm/s².
'remote': True, # True if connected to a wireless VINT Hub, False if
# connected to a USB VINT Hub.
'switch_ports': (5, 6), # Port numbers of the VINT Hub where the
'switch_ports': (1, 2), # Port numbers of the VINT Hub where the
# switches are connected.
}])

Expand Down
2 changes: 1 addition & 1 deletion examples/sample_protection.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# reach in mm/s².
'remote': True, # True if connected to a wireless VINT Hub, False if
# connected to a USB VINT Hub.
'switch_ports': (5, 6), # Port numbers of the VINT Hub where the
'switch_ports': (1, 2), # Port numbers of the VINT Hub where the
# switches are connected.
}])

Expand Down
2 changes: 1 addition & 1 deletion examples/video_extenso.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# reach in mm/s².
'remote': True, # True if connected to a wireless VINT Hub, False if
# connected to a USB VINT Hub.
'switch_ports': (5, 6), # Port numbers of the VINT Hub where the
'switch_ports': (1, 2), # Port numbers of the VINT Hub where the
# switches are connected.
}])

Expand Down

0 comments on commit 2765ec8

Please sign in to comment.