Skip to content

Commit d769351

Browse files
committed
Version 3.0.7; robot dashboard reverse
1 parent d299ac3 commit d769351

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

aitk/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
#
99
# **************************************************************
1010

11-
version_info = (3, 0, 6)
11+
version_info = (3, 0, 7)
1212
__version__ = ".".join(map(str, version_info))

aitk/robots/dashboard.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def dashboard(
4747
4848
The dashboard includes:
4949
- Steering wheel slider (-1 to 1)
50-
- Gas/power slider (0 to 1)
50+
- Gas/power slider (-1 to 1)
5151
- Step button to execute movement
5252
- Seconds per step slider (0.1 to 5.0)
5353
- Visual world display widget
@@ -94,7 +94,7 @@ def step_click(button: Button) -> None:
9494
# Create power control slider
9595
power = FloatSlider(
9696
description="Gas:",
97-
min=0,
97+
min=-1,
9898
max=1,
9999
value=0,
100100
layout=Layout(width="400px"),

0 commit comments

Comments
 (0)