├── .github └── workflows │ └── build_test.yaml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── include └── speak_ros_voicevox_plugin │ └── voicevox_plugin.hpp ├── package.xml ├── plugins.xml └── src └── speak_ros_voicevox_plugin.cpp /.github/workflows/build_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HansRobo/speak_ros_voicevox_plugin/HEAD/.github/workflows/build_test.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HansRobo/speak_ros_voicevox_plugin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Linter: ament_clang_format 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HansRobo/speak_ros_voicevox_plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HansRobo/speak_ros_voicevox_plugin/HEAD/README.md -------------------------------------------------------------------------------- /include/speak_ros_voicevox_plugin/voicevox_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HansRobo/speak_ros_voicevox_plugin/HEAD/include/speak_ros_voicevox_plugin/voicevox_plugin.hpp -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HansRobo/speak_ros_voicevox_plugin/HEAD/package.xml -------------------------------------------------------------------------------- /plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HansRobo/speak_ros_voicevox_plugin/HEAD/plugins.xml -------------------------------------------------------------------------------- /src/speak_ros_voicevox_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HansRobo/speak_ros_voicevox_plugin/HEAD/src/speak_ros_voicevox_plugin.cpp --------------------------------------------------------------------------------