visual studio interface with microcontroller

Thread Starter

paresh2812

Joined Nov 13, 2014
1
hi,
i need a help to develope a small project on visual studio.
i need to on and off motor using visual studio based graphical user interface button.
so how to interface it with microcontroller..?
 

tshuck

Joined Oct 18, 2012
3,534
hi,
i need a help to develope a small project on visual studio.
i need to on and off motor using visual studio based graphical user interface button.
so how to interface it with microcontroller..?
There are a number of ways. One of the easier ways is to get a USB-to-TTL/USB-to-UART module with a virtual COM driver (most have this). Then, setup your microcontroller to respond to UART commands to turn on/off the motor.

Once that's working, create a program that communicates with the virtual COM device and send the requisite data to the microcontroller to turn i the motor on and off.
 
Top