I’d like to build a robot car based on esp32 board that would operate in two modes:
- basic remote control with buttons
- voice control
Ideally, I want to do that through a mobile application (mobile app framework, whether it’s via Bluetooth/WiFi don’t really matter). I’m still new to the topic and all I’ve found are projects connected via already existing solutions like Blynk, Thunkable. Can someone please suggest me the way how can I do that with a custom app? I’m familiar with .NET stack so I was thinking that maybe in Xamarin Forms there’s already existing library to connect to esp32? I’m open to any solution and any suggestion will be appreciated.
Many thanks in advance
I had used kotlin to connect with wifi to an ESP32. The ESP32 is a web-server with a local IP, mobile app is connected to the same local network. So on the mobile app we create a json message to post it to the ESP32 IPS, something like this:
So every time I press the button, the listener will make a json message with the contents of two lineEdits, it will then packed the message and post it to a html conection to the esp32's IPs.