I'm a .NET C# developer looking to do some hardware interfacing/programming. I just want something super simple to mess around with. I have done one of those basic stamp projects, but I want something with less electrical work. A self-contained piece of hardware would be fine.

  • I'm not really looking to do embedded programming... but that would actually be pretty cool if something was capable of running .net code.
  • I'm looking for something that would be easy to connect, hopefully via USB. Serial ports seems to be more hit or miss nowadays with laptops and netbooks.
  • Something I can easily send data to, like a mini LCD, or series of LED's.
  • Better yet would be something that provides feedback, like a temperature sensor.
  • The best would be something more featured that I could talk to. I would be able to send data to it, and it would send back responses. Maybe something like a servo that could report it's position? Or maybe something that I could set parameters on?

Any ideas? Thanks in advance!

link|improve this question
feedback

10 Answers

up vote 7 down vote accepted

Check out the Netduino. It is based on the Arduino but is programmed with the .Net Micro Framework.

link|improve this answer
That looks really cool! For only $34.95, that seems like such a simple place to start. I wish there was more information about the company available at their website, though. – Ben McCormack Aug 9 '10 at 12:46
2  
Ben, their forums have a WEALTH of information and examples, you should check out forums.netduino.com – brady gaster May 4 '11 at 14:27
feedback

Check out Phidgets. I haven't used them, but they look like they might be what you're looking for. Their SDK supports a variety of languages, including C#.

http://www.phidgets.com/

link|improve this answer
I've used Phidgets on a few projects and have had nothing but good experiences. The C# libraries wrap everything beautifully. – epotter Oct 2 '09 at 20:33
Those sound pretty cool. A little pricey, so I might have to stick with the basic servo kit. – John Bubriski Oct 5 '09 at 13:11
feedback

You could take a look at the .NET microframework

The SDK comes with an emulator to play with virtual hardware.

link|improve this answer
Do you know of any cheap hardware that runs on the .NET Microframework? – John Bubriski Oct 9 '09 at 13:37
No, most devkits seem to be 400+ euro|dollar. See the Turnkey link in Richard Hein's answer – Henk Holterman Oct 9 '09 at 20:20
feedback

Here's a blog about hobby robotics and C# that should give you some project ideas.

link|improve this answer
feedback

You may want to check out http://msdn.microsoft.com/en-us/netframework/bb267253.aspx, there you'll see links to Turnkey Hardware.

http://devicesolutions.net/Products/TahoeII.aspx has:

  • Meridian CPU (ARM920 @ 100MHz, 4Mbytes Flash, 8Mbytes SDRAM)
  • 3.5” Landscape TFT LCD with touch-screen
  • 9 user input buttons
  • RS232 serial (DB9)
  • USB Function
  • Ethernet
  • Accelerometer, with support for event notification including free-fall detection
  • SD Card interface
  • Temperature sensor and 2x ADC channels
  • Interface for XBee wireless module (and additional ADC channels if fitted)
  • PWM output
  • Expansion connectors that expose GPIO, I2C, SPI and UART signals

That's the closest I've seen to your needs so far....

There's a bunch of videos on Channel9 showing off contest winners/finalists using this board at http://channel9.msdn.com/tags/.NET+Micro+Framework/.

HTH.

link|improve this answer
That definitely sounds awesome! However, it would destroy my wallet, and therefore, I would die by the hand of my wife! – John Bubriski Oct 5 '09 at 13:12
feedback

Check out the .NET Micro Framework development kits from Device Solutions.

link|improve this answer
feedback

If you're into robotics: http://www.microsoft.com/robotics/default.aspx#Product. They have quite a list of partners (including Lego NXT): http://www.microsoft.com/robotics/default.aspx#FindPartner

link|improve this answer
feedback

One of my coworkers did a school project that involved a Wiimote, an Arduino board, some other hard ware, and an XNA app. He explained it to me, and it seemed very easy to get the whole thing running. Apparently there is a connector you can buy so you don't even have to hack up your Wiimote cable! I know Arduino have a big following to, and there is a lot of tutorials and things out there for it.

It's not really a full-featured game, just a proof of concept sort of thing.

Documentation: http://users.wpi.edu/~kmcmanus/DeadToLights/

Video of him and his friends playing it: http://www.youtube.com/watch?v=N3vFA1lgb34

link|improve this answer
feedback

I generally use Arduinos for smaller projects (and before that, OOPic).

For something that'll more directly interface with a desktop .NET app (e.g. without having to design your own serial comms protocol), check out Serializer.NET:

http://www.roboticsconnection.com/p-16-serializer-robot-controller.aspx

Haven't used it myself, but I've heard it's a pretty nice setup-- might pick one up at some point.

link|improve this answer
feedback

take a look at FriendlyArm products, for example Mini2440. You can setup Windows CE on it and have full debug via ActiveSynch. The hardware is quite popular and well documented. You can buy it on ebay for about 70-120$ depending on display size. http://www.friendlyarm.net/products/mini2440

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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