Skip to content

Commit 783feb8

Browse files
committed
actuator_panel: allow IDs up to 255
1 parent ff2777b commit 783feb8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dronecan_gui_tool/panels/actuator_panel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(self, parent):
5252

5353
self._actuator_id = QSpinBox(self)
5454
self._actuator_id.setMinimum(0)
55-
self._actuator_id.setMaximum(15)
55+
self._actuator_id.setMaximum(255)
5656
self._actuator_id.setValue(0)
5757
self._actuator_id.setPrefix('ID: ')
5858

0 commit comments

Comments
 (0)