Top Banner
Getting started with Microsoft .NET Gadgeteer Gadgeteer Club
47
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Camera_Lesson1.pdf

Getting started with Microsoft .NET Gadgeteer

Gadgeteer Club

Page 2: Camera_Lesson1.pdf

The .NET Gadgeteer Hardware At the heart of every Gadgeteer project is a mainboard.

A mainboard is made up of a programmable processor, and a number of sockets that Gadgeteer modules can plug into.

Page 3: Camera_Lesson1.pdf

Can you find the……

Touchscreen Display

Page 4: Camera_Lesson1.pdf

Camera

Can you find the……

Page 5: Camera_Lesson1.pdf

Multicolor LED

Can you find the……

Page 6: Camera_Lesson1.pdf

Button

Can you find the…… Can you find the……

Page 7: Camera_Lesson1.pdf

Potentiometer

Can you find the……

Page 8: Camera_Lesson1.pdf

USB Host

Can you find the……

Page 9: Camera_Lesson1.pdf

Ethernet

Can you find the……

Page 10: Camera_Lesson1.pdf

SD Card

Can you find the……

Page 11: Camera_Lesson1.pdf

USB Power Supply + Programming Interface

Can you find the……

Page 12: Camera_Lesson1.pdf

There are also…

• Some connector cables (same both ends)

• Some extender cards

• A black USB wire to power the power card

Page 13: Camera_Lesson1.pdf

A Closer Look at the Mainboard

Power LED Debug LED

Reset Button

Page 14: Camera_Lesson1.pdf

Mainboard Socket Numbers

Page 15: Camera_Lesson1.pdf

Mainboard Socket Types (Letters)

Page 16: Camera_Lesson1.pdf

Socket Type Compatibility Labels

“X or Y”

Page 17: Camera_Lesson1.pdf

Match socket type letters when connecting modules to the mainboard

Page 18: Camera_Lesson1.pdf
Page 19: Camera_Lesson1.pdf

• If a module is connected to the wrong socket type it won’t work (but it won’t damage anything, either)

• Red modules supply power to the mainboard. Only one red module should ever be connected to the mainboard at any time. (We only have one type of power card at the moment)

• When connecting modules, always make sure that the mainboard is not powered on, and that it is disconnected from the PC.

Page 20: Camera_Lesson1.pdf

Constructing a Digital Camera

What components will we need to make a camera like this one?

Page 21: Camera_Lesson1.pdf

We need….

• Main board

• Power board

• Screen

• Button

• Camera module

• We could also add an SD card….later….

Page 22: Camera_Lesson1.pdf

t

Connect modules to mainboard, and connect to PC via USB.

Page 23: Camera_Lesson1.pdf

Let’s connect it together like this…

Page 24: Camera_Lesson1.pdf

Creating a New Gadgeteer Project

Open Microsoft Visual Basic 2010 Express, and select New Project… from the Start Page. (Alternatively, select File > New Project).

Page 25: Camera_Lesson1.pdf

Select Gadgeteer from the list of Installed Templates, then select .NET Gadgeteer Application. You can give your project a name, then select OK.

Page 26: Camera_Lesson1.pdf

Designer Tab (Program.gadgeteer)

Solution Explorer (Project Files)

Page 27: Camera_Lesson1.pdf

Code Tab (Program.vb)

Page 28: Camera_Lesson1.pdf

Designer Tab (Program.gadgeteer)

Toolbox

Page 29: Camera_Lesson1.pdf
Page 30: Camera_Lesson1.pdf

You can rename button. For example, rename it to myButton.

Page 31: Camera_Lesson1.pdf

Click and drag to connect the button to a compatible socket.

Click on the button’s socket. Compatible sockets on the mainboard are highlighted in green.

Page 32: Camera_Lesson1.pdf

Add USBClientDP module from the toolbox, and connect it to socket 1. The USBClientDP module is both a power supply and a USB programming interface.

Page 33: Camera_Lesson1.pdf

Now make the image in VB look like the Gadgeteer you have made…

Make sure that you use the right sockets. The diagram in C# must be the same as your actual gadget.

Page 34: Camera_Lesson1.pdf

Now we will write the code to make it work

There are different parts to code in VB (and other languages). We will use terms like: • Properties • Events • Methods Don’t worry about them too much at the moment….let’s just get something that works!

Page 35: Camera_Lesson1.pdf

If it tells you text template may damage your computer…..

Make sure that you click ‘OK’

Page 36: Camera_Lesson1.pdf

When the button is pressed… We want to say that once the program has started, if the button is pressed (an event), something happens (a method)

Select Button from pull-down menu Then select ButtonPressed

Page 37: Camera_Lesson1.pdf

Find the button_ButtonPressed procedure

Add the line camera.TakePicture()

Page 38: Camera_Lesson1.pdf

When the camera receives an image… We want to say that once the program is started, if the camera receives an image (the event), something happens (the method)

…and then PictureCaptured Select camera

Page 39: Camera_Lesson1.pdf

When the camera has captured a picture, use the display’s SimpleGraphics to display the image.

Add this line of code to the procedure that appears

The DisplayImage method takes three parameters: a Picture object, an X coordinate and a Y coordinate. The PicturedCaptured event returns a Picture object, called picture, which can be directly passed to the DisplayImage method as the first parameter.

The coordinate 0, 0 (passed as the second and third parameters) refers top-left

corner of the display.

Page 40: Camera_Lesson1.pdf

This is what the completed program should look like

(comments and spare lines removed).

Page 41: Camera_Lesson1.pdf

Now let’s run our program…

Save your project and the program file to your own area.

Press ‘run’ on the toolbar

Page 42: Camera_Lesson1.pdf

What happens? Be patient…. In the output window you will see messages about debugging and rebooting. The program is being transferred to the main board, which will then reboot itself and run the program. You will know it has done this (and is ready) when it says “Program Started” in the window. ONLY THEN CAN YOU TEST YOUR CAMERA.

Page 43: Camera_Lesson1.pdf

If you see the following message in the output window, stop debugging (Shift+F5) and try again (F5): Updating display configuration. DEVICE WILL NOW REBOOT. Visual Studio might lose connection, and debugging might need to be manually restarted.

If the output window is stuck displaying the following message, press the reset button on the mainboard: Rebooting...

Page 44: Camera_Lesson1.pdf

When the Program is running…

1. Press the button – an image should be displayed on the screen.

2. You may wish to hold the camera steady and re-focus a little at a time until the image improves

Page 45: Camera_Lesson1.pdf

You can also use SimpleGraphics to perform basic drawing operations. For example, use it to overlay a rectangle on top of the picture.

Page 46: Camera_Lesson1.pdf

Use the prompts and drop-down lists to discover and select the appropriate parameters.

Page 47: Camera_Lesson1.pdf

Other things to try

Add an LED that is red while the camera is busy taking a picture and green when it is not busy

Next week:

Saving pictures to an SD Card