├── README.MD ├── arduinoendmotorcontrol └── motorcontrol.ino ├── chatgpt ├── ChatGPTMotorControl.java └── pom.xml ├── esp32speechtotext&modeswitching └── esp32speechtotext.ino └── nodejsserver ├── .env └── server.js /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unieggy/voice-controlled-ground-aerial-robot/HEAD/README.MD -------------------------------------------------------------------------------- /arduinoendmotorcontrol/motorcontrol.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unieggy/voice-controlled-ground-aerial-robot/HEAD/arduinoendmotorcontrol/motorcontrol.ino -------------------------------------------------------------------------------- /chatgpt/ChatGPTMotorControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unieggy/voice-controlled-ground-aerial-robot/HEAD/chatgpt/ChatGPTMotorControl.java -------------------------------------------------------------------------------- /chatgpt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unieggy/voice-controlled-ground-aerial-robot/HEAD/chatgpt/pom.xml -------------------------------------------------------------------------------- /esp32speechtotext&modeswitching/esp32speechtotext.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unieggy/voice-controlled-ground-aerial-robot/HEAD/esp32speechtotext&modeswitching/esp32speechtotext.ino -------------------------------------------------------------------------------- /nodejsserver/.env: -------------------------------------------------------------------------------- 1 | 2 | JAVA_SERVER_URL=http://localhost:8080/api/process 3 | GOOGLE_APPLICATION_CREDENTIALS="your credentials " -------------------------------------------------------------------------------- /nodejsserver/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unieggy/voice-controlled-ground-aerial-robot/HEAD/nodejsserver/server.js --------------------------------------------------------------------------------