I need to switch off the light from a command from the pc. Is this possible using c#?
Does microcontroller recognize c# code?
|
I need to switch off the light from a command from the pc. Is this possible using c#? Does microcontroller recognize c# code? |
||||
|
|
According to the way you asked the question, it seams that you are not much familiar with writing microcontrollers software. Although .NET Micro Framework exists for them and C# is supported, the general concept of microcontroller programming is quite different compared to desktop application programming. Unless you are willing to spend some time to study microcontrollers, I would recommend you to use some USB relay board instead and control relay directly from your desktop C# application where you feel like home. You can take a look at this board which has C# examples, or take a look at this SOF topic where similar topic was discussed. |
|||
|
|
|
If you're looking for one, the Netduino is an Arduino-like board with .NET Micro Framework support integrated, and could definitely do what you're looking for. |
|||
|
|
|
This might be what you are looking for: http://www.microsoft.com/en-us/netmf/default.aspx |
|||
|
|
|
You can send some events to the ports (e.g: serial.port) from c sharp by button event but you have to use : using System.IO.Ports .... this is applied after making the real work programming in c language using for example mikroC OR ... anyother see this as ref. : (in arabic but there is other videos for the same user in English) http://www.youtube.com/watch?v=Kj-NLrP_F6k I hope it added something to your answer |
|||
|
|