C#

Talking to your EV3: EV3Messenger

I was contacted Joeri van Belle last week about a new project that he is working on, a C# project that allows you to send messages to your EV3.  Using it, you can send and receive messages between your EV3 brick and PC. On the brick you can use the standard BT communication blocks, so you can do this without ...

Read More »

Stay Sharp: Monobrick for the EV3

If you’re a fan of C#, then you will love Monobrick, a communication library that works with the EV3.  It uses the EV3’s direct commands to remote control the brick.  It works with both the NXT and the EV3.  You can simply import the library into your project and start hacking away. A simple example: using System; using MonoBrick.EV3; public ...

Read More »

Kinect SDK v1.5 is out now

Over on the Kinect Blog, they announced a new version of the Kinect SDK.  I haven’t really had much of a chance to play with it lately, mainly because my application needs to be completely rewritten when they moved from beta to 1.0.  This new version has some new simple examples, which would really help with learning the new framework. ...

Read More »

Kinect for Windows SDK Beta 2

Microsoft released a new version of the Kinect SDK a few days ago and I totally missed it!  They have also made a really nice site for it, too.  You can check it out here: [LINK]. Some of the new things in this version of the SDK include: Faster  and Improved Skeletal Tracking With updates to the multi-core exemplar, Kinect ...

Read More »

Finding Bluetooth paired NXTs with WMI

Windows Management Instrumentation I’ve been programming a fair bit of C# lately and one of the things I needed to do was find a list of all the COM ports used by NXTs that had been paired with the currently connected Bluetooth controller on the laptop. WMI, or Windows Management Instrumentation, is a mechanism in Microsoft Windows that allows you ...

Read More »

Kinect SDK Beta Refresh

Microsoft has released a new refresh of the Kinect SDK. The new beta has a few driver updates and some run time enhancements.  They also worked on improving the documentation. More information about the latest Kinect SDK update can be found on the official website: [LINK] You can download the 32bit SDK here: [LINK]. The 64bit SDK can be found ...

Read More »

Mindsqualls is Back from the Dead!

After a prolonged hibernation period, the Mindsqualls project is back from the dead and version 2.0 has been released. I was using an older version in my super secret Kinect project, so it is nice to see that is being maintained again. Mindsqualls is one of the easiest to use .Net library for controlling your NXT using C# or VB.Net. ...

Read More »

Kinect SDK is Finally Here!

The Kinect SDK is here and the tutorial series of basic fundamentals on it also arrived: The Kinect SDK Beta download: [LINK] Installing and using the Kinect sensor: [LINK] Camera fundamentals: [LINK] Skeletal Tracking fundamentals: [LINK] Audio fundamentals: [LINK] Depth data directives: [LINK] Via [Kinect Hacks] Now I can finally work on my project!

Read More »

Controlling your NXT with the Kinect

After seeing the video posted on Mauro Brunato’s website, I got all sorts of ideas in my head for other cool things to do with it. With a little help from my friend SC, I managed to get my hands on one of these Kinect sensors as well. It wasn’t easy to get it working, though but with the help ...

Read More »