init commit

This commit is contained in:
Ruixiang Du
2019-05-08 04:33:01 -04:00
commit 7807b33529
53 changed files with 9277 additions and 0 deletions

16
scout_base/README.md Normal file
View File

@@ -0,0 +1,16 @@
# Prerequisites
* Make sure your user account has access to
* serial port (to communicate with robot base)
* keyboard input (to use keyboard control)
* Grant access to serial port
```
# Note: you can use "ls /dev/ttyUSB*" to check the serial port number on your computer
$ sudo chmod 666 /dev/ttyUSB0
```
* Add user to "input" group
```
$ sudo adduser <your-user-name> input
```