Controlling a robot car with unity3d through local network

Me and my team built a robot car that can be controlled directly with a gamepad and responds to command on local network something like

We would like to use Unity3d sending those http requests to the toy with keyboard inputs (WASD), I have no clue how to approach this, if anyone can help.
Thank you

,Hello,
Me and my team built a robot car that can be controlled directly with a gamepad and responds to command on local network something like:

We would like to use Unity3d sending those http requests to the toy with keyboard inputs (WASD), I have no clue how to approach this, if anyone can help.
Thank you

Hi there

Look into Unity - Scripting API: UnityWebRequest for how to send http requests from Unity, and their simple keyboard input for the buttons, Unity - Scripting API: Input.GetKey

Chris