├── .gitignore ├── Arduino └── arduino_client │ └── arduino_client.ino ├── Computer └── EmoBotControl │ ├── .idea │ ├── EmoBotControl.iml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml │ └── EmoBotControl │ ├── __init__.py │ ├── about.py │ ├── images │ ├── about.png │ ├── exit.png │ ├── icon.png │ ├── rpi.png │ └── stream.jpg │ └── main.py ├── LICENSE.md ├── README.md ├── RaspberryPi ├── pi_server.py └── stream_client.py ├── test-tcp ├── client.py ├── client2.py ├── client3.py └── server.py └── vendor └── NewPing_v1.7.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/.gitignore -------------------------------------------------------------------------------- /Arduino/arduino_client/arduino_client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/Arduino/arduino_client/arduino_client.ino -------------------------------------------------------------------------------- /Computer/EmoBotControl/.idea/EmoBotControl.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/Computer/EmoBotControl/.idea/EmoBotControl.iml -------------------------------------------------------------------------------- /Computer/EmoBotControl/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/Computer/EmoBotControl/.idea/misc.xml -------------------------------------------------------------------------------- /Computer/EmoBotControl/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/Computer/EmoBotControl/.idea/modules.xml -------------------------------------------------------------------------------- /Computer/EmoBotControl/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/Computer/EmoBotControl/.idea/workspace.xml -------------------------------------------------------------------------------- /Computer/EmoBotControl/EmoBotControl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Computer/EmoBotControl/EmoBotControl/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/Computer/EmoBotControl/EmoBotControl/about.py -------------------------------------------------------------------------------- /Computer/EmoBotControl/EmoBotControl/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/Computer/EmoBotControl/EmoBotControl/images/about.png -------------------------------------------------------------------------------- /Computer/EmoBotControl/EmoBotControl/images/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/Computer/EmoBotControl/EmoBotControl/images/exit.png -------------------------------------------------------------------------------- /Computer/EmoBotControl/EmoBotControl/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/Computer/EmoBotControl/EmoBotControl/images/icon.png -------------------------------------------------------------------------------- /Computer/EmoBotControl/EmoBotControl/images/rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/Computer/EmoBotControl/EmoBotControl/images/rpi.png -------------------------------------------------------------------------------- /Computer/EmoBotControl/EmoBotControl/images/stream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/Computer/EmoBotControl/EmoBotControl/images/stream.jpg -------------------------------------------------------------------------------- /Computer/EmoBotControl/EmoBotControl/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/Computer/EmoBotControl/EmoBotControl/main.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/README.md -------------------------------------------------------------------------------- /RaspberryPi/pi_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/RaspberryPi/pi_server.py -------------------------------------------------------------------------------- /RaspberryPi/stream_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/RaspberryPi/stream_client.py -------------------------------------------------------------------------------- /test-tcp/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/test-tcp/client.py -------------------------------------------------------------------------------- /test-tcp/client2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/test-tcp/client2.py -------------------------------------------------------------------------------- /test-tcp/client3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/test-tcp/client3.py -------------------------------------------------------------------------------- /test-tcp/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/test-tcp/server.py -------------------------------------------------------------------------------- /vendor/NewPing_v1.7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oemdaro/MindControlledRobot/HEAD/vendor/NewPing_v1.7.zip --------------------------------------------------------------------------------