Skip to content

Commit f12ad5d

Browse files
committed
update drag file
1 parent a3e58d1 commit f12ad5d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

demo/drag_trial_teaching.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ def setup():
3030
print(port)
3131
print("")
3232

33-
baud = 115200
34-
_baud = input("Please input baud(default:115200):")
33+
baud = 1000000
34+
_baud = input("Please input baud(default:1000000):")
3535
try:
3636
baud = int(_baud)
3737
except Exception:
@@ -40,7 +40,7 @@ def setup():
4040
print("")
4141

4242
DEBUG = False
43-
f = input("Wether DEBUG mode[Y/n]:")
43+
f = input("Wether DEBUG mode[Y/n](default:n):")
4444
if f in ["y", "Y", "yes", "Yes"]:
4545
DEBUG = True
4646
# mc = MyCobot(port, debug=True)

0 commit comments

Comments
 (0)