A simple control system of robot in terminal.
You can also see another version which coded by C Plus Plus language.
.
├── act
│ ├── stand
│ │ └── 0.txt
│ ├── walk_left
│ │ ├── 0.txt
│ │ ├── 1.txt
│ │ ├── 2.txt
│ │ ├── 3.txt
│ │ ├── 4.txt
│ │ └── 5.txt
│ └── walk_right
│ ├── 0.txt
│ ├── 1.txt
│ ├── 2.txt
│ ├── 3.txt
│ ├── 4.txt
│ └── 5.txt
├── bin
│ └── run
├── Makefile
├── obj
│ ├── main.o
│ └── robot.o
├── README.md
├── run
└── src
├── main.c
├── robot.c
└── robot.h
You just need GNU/Linux and GCC, download the repository and complie source code.
$ git clone https://github.com/graycat0918/i-am-robot.git
$ cd i-am-robot/
$ make
Execute the file named 'run' to start a control system, and press Esc
to quit.
$ ./run
Press W
/ A
/ S
/ D
to control robot.
The effect is like the following GIF image (Make sure your network is OK and wait the image for a moment).