Good afternoon everyone, I schedule in C # and acquired an Arduino to my projects recently, and I'm having difficulty finding materials explaining how to create simple integration between windows and Arduino programs. For example, how to create a program in Windows Form Aplication to light a led by clicking on a button, or create a form with simple database where the client login can be done with a card for rfid reader Arduino instead password . I already have a little idea of programming with Arduino, but as I said I want to use windows aplications to interact with it, if anyone can direct me to study materials, tutorials, or you can put some simple code in the comment as an example would be helpful.
Thank you all.
Hugs.
I schedule in C #
I program in C#.
I'm having difficulty finding materials explaining how to create simple integration between windows and Arduino programs.
What are the options for getting data into the Arduino? Do you have any shields attached? If not, then the only way to get data to the Arduino is via the serial port. C# has classes that make writing to, and reading from, the serial port super simple.
The only complex part is that the serial IO and the user interface are on different threads.
I have a C# application that deals with communicating with the Arduino. I can post that, or send it directly to you, if you want. If you want it e-mailed, PM me with an email address.