A little teaser

A little teaser if something coming at VSLive next week, thatConference the week after, and HDC keynote in September. Surprisingly, I get to talk about NETMF in all three :slight_smile:

So, a little taser…I mean teaser… promise! Really, I would never hurt people. muah hahahaha :wink:

Pete

Is that the chassis Andrew had at MADExpo? I forgot where he got it from. Was a really good deal if I remember right.

Yeah, that looks like the Magician chassis from Sparkfun:

https://www.sparkfun.com/products/10825

$15. It’s a steal, for a simple robot platform. No frills, but a nice starting point.

@ Pete, are you going to have a build-it blog post and parts list at some point?

So, what magic does this robot has in it?

What? You mean that two mounting layers, two motors, two wheels, a ball caster, and a battery pack all for $15 isn’t sufficiently magical for you? :wink:

Oh, it is magical for sure :). I was referring to additional magic that Pete put in it. Hard to say from the static image (beside the obvious that Pete is on the Cyberdyne’s payroll) :wink:

Looks like Cerbuino Bee with one of these:

https://www.sparkfun.com/products/10822?

plus, perhaps, an HD44780 module driving the LCD screen.

The module in the front appears to be this one:

http://www.ghielectronics.com/catalog/product/344

which seems a little odd for a robot, but I’m sure Pete’s doing something interesting with it.

That’s all that’s visible in the picture. Wouldn’t surprise me if Pete has other goodies hidden on the lower layer of the mounting platform.

Nice! Exactly what cerbuino is designed to do. Can’t wait to see it dancing.

Pete - perchance did you write a nice little wrapper class for the RN-XV command set? I have one I haven’t tried on the Bee yet.

Yeah, can’t wait to get that peice of code :slight_smile:

I’ve got a buck that says it plays trance music via midi and likely uses sound reflection analysis to determine its path to find key members of the human resistance in order to direct terminator units to them.

That SparkFun chassis is fun and dirt cheap. The motors are crap and no good for anything precise, but for $15, you can build all sorts of simple robots and not cry too much if you melt something. I bought 4 of those kits, two cerbuino bees, two of the RN-XV WiFi modules from Roving Networks (those are excellent, btw) and two motor controllers. I’ll probably have two robots built (and possibly running) side x side, although I just realized I have only the one display.

Interfacing with the RN-XV took almost no effort on my part because of the great work on the driver by Stefan Thoolen (a frequent contributor in the Netduino community). The driver works with (and was likely designed for) the Netduino, but the 4.2 DLLs in the latest commit worked unchanged on the Cerbuino Bee, because the xbee socket is just a COM port. It’s great to see portable code. To connect, it’s just two lines:

_wifi.EnableDHCP();
_wifi.JoinNetwork(ā€œ(my ssid)ā€, 0, WiFlyGSX.AuthMode.WPA2_PSK, ā€œ(my wpa key)ā€);

http://netmftoolbox.codeplex.com/SourceControl/list/changesets

I’ll do a build-up blog post after the events. I need to give them a little something extra for coming. I’ll give this much of a hint: this little guy will feature in my NETMF talks and my Windows 8 Metro talks :slight_smile:

The temp sensor is just a random sensor I had hanging around. Not sure what I’ll put on the front, but I wanted it to sense something and report back data. An air quality sensor could get me in trouble.

Oh, and the world will be over soon. I have an IP address and can ping the robot. :slight_smile:

Going to pick up an inexpensive WiFi router this week so I can have complete control over the setup.

@ Duke great idea! I should totally do that

Pete