Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to switch off the light from a command from the pc. Is this possible using c#?

Does microcontroller recognize c# code?

share|improve this question
is possible if you have .net framework on it. – Saeed Amiri Apr 5 '11 at 13:05

4 Answers

up vote 2 down vote accepted

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.

share|improve this answer

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.

share|improve this answer
+1, was what I was thinking of when I answered :). – Sam Holder Apr 5 '11 at 13:54

This might be what you are looking for: http://www.microsoft.com/en-us/netmf/default.aspx

share|improve this answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.