Maker Pro
Maker Pro

how can i use an STM32F4 card to connect a PC monitor and create a GUI using Visual Studio.

Mahmoud_nasr

Mar 20, 2023
6
Joined
Mar 20, 2023
Messages
6
I want to use an STM32F4 card to connect a PC screen and create a graphical interface using Visual Studio.
the purpose of my project to use 3 buttons and a stm32f4 card if I press a button the led corresponds to this button lights up on the pc screen
 

Harald Kapp

Moderator
Moderator
Nov 17, 2011
13,700
Joined
Nov 17, 2011
Messages
13,700
Visual Studio is a software to create apps for a windows pc. As far as I know it can't create software for an STM32. Therefore what you want would not be possible.
You can attach an LCD to an STM32 and create a graphical GUI using e.g. this toolchain. See also here for more information.
 

charly2choo

Apr 25, 2023
5
Joined
Apr 25, 2023
Messages
5
As I see, beside the communication between the STM32F4 card and your PC, you'll have to code. Everything that is needed is to write code to handle the button presses and control the LED on the STM32F4 card, as well as send data to the PC screen for the graphical interface (you can use a development environment like STM32CubeIDE to write your code in C or C++).
 
Top