The NXT Jump » tutorial http://nxt-jump.com Just another WordPress site Sun, 02 Oct 2011 09:15:46 +0000 en hourly 1 http://wordpress.org/?v=3.1.2 Netduino Tutorial- Basic (Revision) [720 HD]http://nxt-jump.com/netduino/455/netduino-tutorial-basic-revision-720-hd/ http://nxt-jump.com/netduino/455/netduino-tutorial-basic-revision-720-hd/#comments Sun, 21 Aug 2011 10:13:08 +0000 Eric http://nxt-jump.com/netduino/455/netduino-tutorial-basic-revision-720-hd/ Continue reading ]]>

This is a revision of my first project project with the Netduino. The Netduino is like a Arduino but it is compatible with the .NET Micro Framework. Netduino tutorial I will show my first project as an introduction to netduino programming. The on-board LED will flash coping the sequence you do with the on-board button. I added a feature that allows you to set the number of times you can press the button. oz.heliohost.org
Video Rating: 5 / 5

I just got my Netduino, and I’m showing the world.

]]>
http://nxt-jump.com/netduino/455/netduino-tutorial-basic-revision-720-hd/feed/ 3
Netduino Tutorial – Flashing and Updating Firmwarehttp://nxt-jump.com/netduino/390/netduino-tutorial-flashing-and-updating-firmware/ http://nxt-jump.com/netduino/390/netduino-tutorial-flashing-and-updating-firmware/#comments Tue, 22 Mar 2011 01:15:16 +0000 Eric http://nxt-jump.com/netduino/390/netduino-tutorial-flashing-and-updating-firmware/ Continue reading ]]>

This video will show you how to completely erase and update your netduino. I am using the netduino plus but you may use the netduino mini or regular, just make sure you download the correct firmware. I suggest that you use this as a last resort if you are having problems with your netduino, ask for help on the forums first! Program can be found here: www.atmel.com In the video I say “Your netduino is ready to have some fun” YES it does have fun! Mine does, it loves its job ;) oz.heliohost.org
Video Rating: 5 / 5

]]>
http://nxt-jump.com/netduino/390/netduino-tutorial-flashing-and-updating-firmware/feed/ 0
Netduino Tutorial – Multithreading (Methods with Parameters)http://nxt-jump.com/netduino/380/netduino-tutorial-multithreading-methods-with-parameters/ http://nxt-jump.com/netduino/380/netduino-tutorial-multithreading-methods-with-parameters/#comments Sun, 27 Feb 2011 23:15:11 +0000 Eric http://nxt-jump.com/netduino/380/netduino-tutorial-multithreading-methods-with-parameters/ Continue reading ]]>

Get the Netduino from: www.netduino.com The Netduino is like a Arduino but it is compatible with the .NET Micro Framework. This project is written in C# with Visual Studio and the .NET Micro Framework. In this Netduino project I will show you how to use multithreading with methods that have parameters. You could use it to blink lights at the same time with one call of the method! Multitrheasding can reduce the use of ‘for’ loops. Code – public void yourPublicMethod(int parameter) { bool doit = false; _worker = new Thread( delegate() { doit = doWork(parameter); } ); _worker.Start(); } private bool doWork(int onTime, int offTime, uint repeat) { Do Work return true; }

Netduino Class
Video Rating: 0 / 5

]]>
http://nxt-jump.com/netduino/380/netduino-tutorial-multithreading-methods-with-parameters/feed/ 3
LEGO Mindstorms NXT: A Brief Introduction & Tutorial Part 2http://nxt-jump.com/mindstorms-nxt-2/350/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-2-2/ http://nxt-jump.com/mindstorms-nxt-2/350/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-2-2/#comments Tue, 21 Dec 2010 12:25:13 +0000 Eric http://nxt-jump.com/mindstorms-nxt-2/350/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-2-2/ Continue reading ]]>

This is part 2 of a brief introduction and tutorial to LEGO Mindstorms NXT. Topics discussed are (3) programming an NXT robot and (4) testing an NXT robot. See part 1 for a look at (1) what is included with the NXT robotics kit and (2) how to build a simple NXT robot. www.youtube.com This was my topic of choice when given an instructional video assignment in one of my college courses. UPDATE: Added captions on Nov 20, 2009. Check out my website for a hi-res download: www.chadcardwell.net
Video Rating: 4 / 5

]]>
http://nxt-jump.com/mindstorms-nxt-2/350/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-2-2/feed/ 25
LEGO Mindstorms NXT: A Brief Introduction & Tutorial Part 1http://nxt-jump.com/mindstorms-nxt-2/298/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-1-2/ http://nxt-jump.com/mindstorms-nxt-2/298/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-1-2/#comments Mon, 05 Jul 2010 15:46:58 +0000 Eric http://nxt-jump.com/mindstorms-nxt-2/298/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-1-2/ Continue reading ]]>

This is part 1 of a brief introduction and tutorial to LEGO Mindstorms NXT. Topics discussed are (1) what is included with the NXT robotics kit and (2) how to build a simple NXT robot. See part 2 for a look at (3) programming an NXT robot and (4) testing an NXT robot. www.youtube.com This was my topic of choice when given an instructional video assignment in one of my college courses. UPDATE: Added captions on Nov 20, 2009. Check out my website for a hi-res download: www.chadcardwell.net
Video Rating: 4 / 5

]]>
http://nxt-jump.com/mindstorms-nxt-2/298/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-1-2/feed/ 25
Netduino Tutorial- Medium (LEDs and Potentiometer)http://nxt-jump.com/netduino/296/netduino-tutorial-medium-leds-and-potentiometer/ http://nxt-jump.com/netduino/296/netduino-tutorial-medium-leds-and-potentiometer/#comments Thu, 01 Jul 2010 22:15:47 +0000 Eric http://nxt-jump.com/netduino/296/netduino-tutorial-medium-leds-and-potentiometer/ Continue reading ]]>

This is my second project with the Netduino. The Netduino is like a Arduino but it is compatible with the .NET Micro Framework. This project is written in C# with Visual Studio and the .NET Micro Framework. In this Netduino Tutorial I will show you how to use LEDs and Potentiometers. I got a new Arduino shield and used it on the netduino. It has: 4 red LDS 1 RGB LED 2 Potentiometers 2 Buttons Ambient light sensor Infrared detector infrared LED Download Netduino Project Source Code – oz.heliohost.org Get the Netduino from: www.netduino.com

]]>
http://nxt-jump.com/netduino/296/netduino-tutorial-medium-leds-and-potentiometer/feed/ 0
LEGO Mindstorms NXT: A Brief Introduction & Tutorial Part 1http://nxt-jump.com/nxt-education/40/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-1/ http://nxt-jump.com/nxt-education/40/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-1/#comments Sat, 26 Sep 2009 22:20:13 +0000 Eric http://nxt-jump.com/nxt-education/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-1 Continue reading ]]> This is part 1 of a brief introduction and tutorial to LEGO Mindstorms NXT. Topics discussed are (1) what is included with the NXT robotics kit and (2) how to build a simple NXT robot.

See part 2 for a look at (3) programming an NXT robot and (4) testing an NXT robot.

This was my topic of choice when given an instructional video assignment in one of my college courses.

Check out my website for a hi-res download:
http://www.chadcardwell.net

Duration : 0:8:12


[youtube l0vqZQMF0A4]

]]>
http://nxt-jump.com/nxt-education/40/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-1/feed/ 22
Where to find 'NXT Building Instructions'http://nxt-jump.com/nxt-building-instructions/38/where-to-find-nxt-building-instructions/ http://nxt-jump.com/nxt-building-instructions/38/where-to-find-nxt-building-instructions/#comments Sat, 26 Sep 2009 22:20:09 +0000 Eric http://nxt-jump.com/nxt-building-instructions/where-to-find-nxt-building-instructions Lego Mindstorms:
Follow these simple steps to find what you are looking for.

A complete set of building instructions for start to finish!

- AlphaRex
- Spike
- RoboArm
- Tribot

Enjoy!

Duration : 0:2:36


[youtube D7sju2TwXJc]

]]>
http://nxt-jump.com/nxt-building-instructions/38/where-to-find-nxt-building-instructions/feed/ 0
LEGO Mindstorms NXT: A Brief Introduction & Tutorial Part 2http://nxt-jump.com/nxt-programming/29/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-2/ http://nxt-jump.com/nxt-programming/29/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-2/#comments Fri, 25 Sep 2009 01:19:17 +0000 Eric http://nxt-jump.com/nxt-programming/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-2 Continue reading ]]> This is part 2 of a brief introduction and tutorial to LEGO Mindstorms NXT. Topics discussed are (3) programming an NXT robot and (4) testing an NXT robot.

See part 1 for a look at (1) what is included with the NXT robotics kit and (2) how to build a simple NXT robot.

This was my topic of choice when given an instructional video assignment in one of my college courses.

Check out my website for a hi-res download:
http://www.chadcardwell.net

Duration : 0:8:35


[youtube AzRRulYvVdY]

]]>
http://nxt-jump.com/nxt-programming/29/lego-mindstorms-nxt-a-brief-introduction-tutorial-part-2/feed/ 25