├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── basic-codes ├── human_greeter.py ├── human_greeter_with_awareness.py ├── movement_with_speech.py └── pepper_performing_dab.py ├── docs ├── navigation-1.png └── navigation-2.png ├── object-detection ├── asthama_search.py └── robot_velocity_caliberation.py ├── remote ├── remote_terminal.py └── remote_voice.py ├── requirements.txt └── topics ├── asthama_search.top └── remote_commands.top /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/README.md -------------------------------------------------------------------------------- /basic-codes/human_greeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/basic-codes/human_greeter.py -------------------------------------------------------------------------------- /basic-codes/human_greeter_with_awareness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/basic-codes/human_greeter_with_awareness.py -------------------------------------------------------------------------------- /basic-codes/movement_with_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/basic-codes/movement_with_speech.py -------------------------------------------------------------------------------- /basic-codes/pepper_performing_dab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/basic-codes/pepper_performing_dab.py -------------------------------------------------------------------------------- /docs/navigation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/docs/navigation-1.png -------------------------------------------------------------------------------- /docs/navigation-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/docs/navigation-2.png -------------------------------------------------------------------------------- /object-detection/asthama_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/object-detection/asthama_search.py -------------------------------------------------------------------------------- /object-detection/robot_velocity_caliberation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/object-detection/robot_velocity_caliberation.py -------------------------------------------------------------------------------- /remote/remote_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/remote/remote_terminal.py -------------------------------------------------------------------------------- /remote/remote_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/remote/remote_voice.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/requirements.txt -------------------------------------------------------------------------------- /topics/asthama_search.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/topics/asthama_search.top -------------------------------------------------------------------------------- /topics/remote_commands.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverickjoy/pepper-robot-programming/HEAD/topics/remote_commands.top --------------------------------------------------------------------------------