Studuino Icon Programming Environment Guide

Size: px
Start display at page:

Download "Studuino Icon Programming Environment Guide"

Transcription

1 Studuino Icon Programming Environment Guide This manual introduces the Studuino Software environment. As the Studuino programming environment develops, these instructions may be edited or revised.

2 Index 1. Introduction Studuino Setup Connecting Parts LEDs Flashing One LED Flashing Four LEDs in Order Using Repeats Buzzers Using a Buzzer Making a Melody Using Conditions and Submenus Push-button Switches Submenus Using Touch Sensors Using Light Sensors Using Sound Sensors Using Reflective Infrared Sensors Using Accelerometers Using DC Motors Making the DC Motor Move Making a Twin-motor Car DC Motor Calibration Using Servomotors Servomotor Calibration Creating a Robotic Arm that Uses Three Servomotors... 52

3 1. Introduction 1.1. Studuino Setup Before beginning, visit and download the document Studuino Programming Environment Setup for reference Connecting Parts 1 Connecting sensors, buzzers, and LEDs Sensor connecting cables are used to link sensors to the Studuino board. The cables attach to sensor/led/buzzer connectors located on the board, as shown below. The three-wire cable is used for every sensor except the accelerometer, which requires a four-wire cable. Gray wires face inside as shown. A4 A5 A6 A7 A0 A1 A2 A3 connectors Sound, light, and reflective infrared sensors can connect to A0 through A7. Touch sensors, LEDs, and buzzers can connect to A0 through A5. Accelerometers should connect to both A4 and A5. Push-button switches A0-A3 cannot be used when using a sensor with connectors A0-A3. 1

4 2 Connecting a DC Motor Up to two DC motors can be connected using connectors M1 and M2. DC motor cables can only fit into the connector one way. M1 M2 DC motor connector M1 cannot be used at the same time as servomotor connectors D2 and D4. DC motor connector M2 cannot be used at the same time as servomotor connectors D7 and D8. 3 Connecting a Servomotor Up to eight servomotors can be connected to the servomotor connectors. D9 D10 D11 D12 D2 D4 D7 D8 As shown in the picture to the right, the gray cable should be on the right. DC motor connector M1 cannot be used at the same time as servomotor connectors D2 and D4. DC motor connector M2 cannot be used at the same time as servomotor connectors D7 and D8. 2

5 4 Connecting a Battery Box Connect the battery box cable to the POWER pins. Sensors/LEDs/buzzers/switches can use voltage supplied via USB, but DC motors and servomotors require voltage from the power jack. When USB is disconnected, all devices require voltage from the power jack to operate. POWER 3

6 2. LEDs 2.1. Flashing One LED Learning targets: Setting ports Placing icons Flashing and turning off an LED Transferring a program 1 Connect an LED to a sensor/led/buzzer connector. Use connector A0 for the LED. LED A0 Gray wires face inside as shown. 2 Port Settings Select Edit from the menu, then select Port Settings from the pull down menu to open the setting dialog box. First, uncheck all the boxes. Then check A0 under Sensor/LED/buzzer and select LED from the menu. 4

7 3 Place an LED icon. Drag & drop an LED icon from the icon palette to the first Operation Icon box in the Program Field. LED icon Icon Palette Operation icon box Program Field 4 Turn the LED switch on. on the LED icon you've just placed. Select ON in the Attribute Field at the bottom. A misplaced icon can be deleted by right-clicking on it and selecting Delete from the context menu. Delete Right-click Attribute Field 5

8 5 Transfer the program. Connect the Studuino board to the PC via USB cable and click the transfer your program. button to It can take several seconds to transfer a program. This message will disappear after the transfer completes. Do not disconnect the USB cable during a transfer! This can cause incomplete data transfers or software crashes. See 6. Troubleshooting in the Studuino Programming Environment Manual if you're having trouble transferring your program. 6 Checking the result After the data finishes transferring, the LED on the board will flash automatically. While the USB cable is connected, power for the LED is supplied by the PC. You can also power your Studuino using the battery box. 6

9 2.2. Flashing Four LEDs in Order Learning targets: Deleting and inserting icons Wait icons 1 Connect four LEDs to sensor/led/buzzer connectors on the Studuino board. Use connectors A0, A1, A2, and A3 for the LEDs. LED 4 A0 A1 A2 A3 2 Port Settings Choose LED for A0, A1, A2, and A3 under Port Settings. Refer to 2.1. Flashing One LED for how to select Port Settings.. Gray cable faces inside as shown. 3 Place LED icons. Place LED icons in Operation icon boxes 1 through 8 as shown below. Refer to 2.1. Flashing One LED for how to place icons. Drag and drop icons you've placed to copy them. 7

10 4 Set up the LED icons as shown below. NO Switch Connector 1 ON A0 2 OFF A0 3 ON A1 4 OFF A1 5 ON A2 6 OFF A2 7 ON A3 8 OFF A3 The LEDs will not flash if the program is transferred as is. Processes 1 through 8 are executed almost instantly and the flashes of the LEDs cannot be seen by human eyes. 5 Inserting Wait icons Insert a Wait icon between each LED icon in the. We'll use the Wait icons to make the flash duration longer. To create an empty operation icon space, right-click on an Operation icon and select Add a column from the context menu. Right-click 8

11 Place a Wait icon in the new space and set the duration. Repeat this process to add a Wait icon after each ON LED icon. Duration 6 Transfer the program again. Run it and see whether the LEDs flash in order. This program makes four LEDs flash and turn off in order. To repeat the program, press the RESET button. RESET button 9

12 2.3. Using Repeats Learning target: Loop functions Use Repeats and the program from the previous section to make the four LEDs flash in order repeatedly. 1 Place a Start Repeat icon in the first Repeat icon box. Drag & Drop Repeat icon boxes 2 Place an End Repeat icon in the last box. A Repeat Settings dialog box appears when an End Repeat icon is placed. The number of repeats determines how many times the LEDs will flash. A misplaced End Repeat icon can be Drag & Drop deleted by right-clicking on it and selecting Delete from the context menu. Right-click 3 Transfer the program and the LEDs will flash according to the number of repeats that were set. 10

13 To clear any program you've created, select Edit from the menu then click on Reset Menu. Port Settings will also be reset. 3. Buzzers 3.1. Using a Buzzer Learning target: Buzzer settings 1 Connect a buzzer to a sensor/led/buzzer connector on the Studuino board. Use connector A0 for the buzzer. Buzzer A0 Gray wires face inside as shown. 2 Port Settings Choose Buzzer for A0 under Port Settings. Refer to 2.1. Flashing One LED for how to select Port Settings.. 3 Place a Buzzer icon. Place a Buzzer icon in the first blank Operation icon space as shown below. 11

14 Refer to 2.1. Flashing One LED for how to place icons. 4 Select a note. Set the pitch and length of the note. 5 Transfer the program and see if the buzzer sounds. Duration Refer to 2.1. Flashing One LED for how to transfer a program. After transferring, this program plays a note once for the duration you set. To repeat the note, press the Reset button. RESET button 12

15 3.2. Making a Melody Learning targets: Melody icons Test mode Now we're going to create a melody while checking the pitch and duration of each note. 1 Use the same steps as the previous section, using Melody icons instead of a Buzzer icon. Place two Melody icons in a row in the Operation icon boxes. Refer to 2.1. Flashing One LED for how to place icons. 2 Select a note. Choose scales and notes (or rests), then click to add them to the list. 13

16 To delete a programmed note, right-click on the note, then click OK when the dialog box appears. Right-click Example: Twinkle, Twinkle, Little Star Each Melody icon can hold up to eight notes

17 3 Make sure the USB cable is connected before clicking the Test button. This message will disappear after several seconds, the Test button will turn gray and Test mode will start. Test You can use Test mode to hear and adjust your melody in real time. Don't disconnect the USB cable while in Test mode! This can cause the software to crash. 4 Hear the notes you've programmed by clicking on a Melody icon. Select a tempo of 90, 120, or

18 5 the Test button again to close Test mode and transfer your program. here to transfer your program and play the melody. This program plays a set melody once after it s been transferred. To repeat the melody, press the Reset button. RESET button 16

19 4. Using Conditions and Submenus 4.1. Push-button Switches Learning target: Setting conditions Use the push-button switches on the Studuino board to create a program that plays a melody and makes the LED flash. 1 Connect a buzzer and LED to sensor/led/buzzer connectors on the Studuino board. Connect the LED to A4 and the buzzer to A5. LED A4 Buzzer A5 Gray wire should face inside as shown. 2 Port Settings Choose LED for A4 and Buzzer for A5 under Port Settings. Tick the boxes A0-A3 under Buttons. Refer to 2.1. Flashing One LED for how to select Port Settings. 17

20 3 Place two LED icons and a Melody icon Refer to 2.1. Flashing One LED for how to place icons. 4 Use the steps in 2.1. Flashing One LED and 3.2. Making a Melody to set each icon's attributes. 1. LED ON 2. Melody 3. LED OFF Set as above. 5 Place a Single Condition Icon in the Condition boxes under each icon. Drag & Drop 18

21 6 Set each condition. Select 1. A0 Button1 ON 2. A1 Button2 ON 3. A2 Button3 ON Set as above. Drag from yellow to gray Select to change from ON to OFF and vice versa. 7 Use Repeat icons to make your program loop steps 1 to 3 indefinitely. Refer to 2.3. Using Repeats for how to use Repeat icons. Select Repeat indefinitely in the Repeat Settings dialog. 8 Transfer the program and check to see if it works. Press A1 to play the melody. Press A0 to turn the LED on. Press A2 to turn the LED off. 19

22 4.2. Submenus Learning target: Submenus Use Submenus and push-button switches to create a program that makes the LED blink while a melody plays. 1 Use the program from the previous section and add Submenu and Condition icons. Drag & Drop Drag & Drop Set A3 Button4 ON 2 Move the End Repeat icon to the fourth space. Refer to 2.3. Using Repeats for how to use Repeat icons. Select Repeat indefinitely in the Repeat Settings dialog. 20

23 3 the Submenu 1 tab to show the Submenu. 4 As shown below, place and set icons in the Operation icon boxes. 1: LED 2: Buzzer 3: Wait 4: LED 5: Buzzer 6: Wait 21

24 5 Transfer the program and check to see if it works. Hold down A3 and a melody will play in time with the blinking LED. Dual-condition Icons Placing a Dual-condition icon allows you to set two conditions for a sensor. AND: When both conditions are satisfied, the action will be executed. OR: When either of the two conditions is satisfied, the action will be executed. 22

25 4.3. Using Touch Sensors Learning target: Touch sensors Now we re going to make a program that causes the LED to flash when the touch sensor is pressed. 1 Connect an LED and touch sensor to sensor/led/buzzer connectors on the Studuino board. Use A4 for the LED and A5 for the touch sensor. LED A4 Touch Sensor 2 Port Settings A5 Gray cables should face inside as shown. Choose LED for A4 and Touch sensor for A5 under Port Settings. Refer to 2.1. Flashing One LED for how to select Port Settings. 3 Place LED icons in the Operation boxes and Condition icons in the Condition boxes. Set them as shown below. 23

26 Use Repeat icons to loop steps 1-2. Refer to 2.3. Using Repeats for how to use Repeat icons. Select Repeat indefinitely in the Repeat Settings dialog. 4 Transfer the program and check to see if it works. The LED will keep flashing while the touch sensor is pressed. 24

27 4.4. Using Light Sensors Learning targets: Light sensors Sensor Viewer Use a light sensor to create a program that makes the LED flash in a dark environment. 1 Connect an LED and a light sensor to the Studuino board. Connect the LED to A4 and the light sensor to A5. LED A4 Light Sensor A5 Gray cables should face inside as shown. 2 Port Settings Choose LED for A4 and Light sensor for A5 under Port Settings. Refer to 2.1. Flashing One LED for how to select Port Settings. 25

28 3 Use the Sensor Viewer to check the sensor values. Choose Run from the menu, then Sensor Viewer. The Sensor Viewer will appear. Make sure the Studuino board is properly connected to the PC via USB cable. It will take several seconds to open the Sensor Viewer. Sensor Viewer See whether the sensor value changes as the brightness of the light is varied. Ex: Under a fluorescent light. Shaded by a hand. Light sensor value 26

29 4 After checking the sensor value, exit the sensor viewer. 1 Left click 5 Place an LED icon in the operation area and a single-condition icon in the condition area. Set them as shown below. 27

30 6 Specify the range of the light sensor. Range Setting Description (for a set value) = Same value < Less than the value > Greater than the value Within range specified Outside range specified In the example below, the condition is satisfied when the sensor value falls below 3. 7 Add a condition that turns the LED off when more light is present. 28

31 8 Use Repeat icons to loop steps 1-2. Refer to 2.3. Using Repeats for how to use Repeat icons. Select Repeat indefinitely in the Repeat Settings dialog. 9 Transfer the program and check to see if it works. Under a fluorescent light. Shaded by a hand. If the program does not work properly, change the condition settings. 29

32 4.5. Using Sound Sensors Learning target: Sound sensors Make a program that changes the number of flashing LEDs in response to the volume of a sound. 1 Connect four LEDs and a sound sensor to the Studuino board. Connect LEDs to A0-A3 and the sound sensor to A4. LED 4 A0 A1 A2 A3 Make sure cables are inserted correctly.sensor/led/buzzer Sound sensor A4 2 Port Settings Choose LED for A0-A3 and Sound sensor for A4 under Port Settings. Refer to 2.1. Flashing One LED for how to select Port Settings. 30

33 3 Open the Sensor Viewer to see the sound sensor value. Refer to 4.4. Using Light Sensors for more information. Notice how the sensor value changes as the volume of the sound varies. Ex. When it's quiet When the sensor detects sound Sound sensor value 4 As shown below, place LED and Condition icons in their corresponding spaces. After placing the icons, set their attributes

34 Use Repeat icons to loop steps 1-8. Refer to 2.3. Using Repeats for how to use Repeat icons. Select Repeat indefinitely in the Repeat Settings dialog. 5 Transfer the program and check to see if it works. The number of LED flashes will vary, depending on the loudness of the sound detected by the sensor. Softer Louder 32

35 4.6. Using Reflective Infrared Sensors Learning target: Reflective infrared sensors Create a program that uses the reflective infrared sensor to change the note the buzzer plays. 1 Connect a buzzer and a reflective infrared sensor to sensor/led/buzzer connectors on the Studuino board. Connect the buzzer to A0 and the reflective infrared sensor to A1. Buzzer A0 A1 Reflective infrared sensor Make sure cables are inserted correctly. 2 Port Settings Choose Buzzer for A0 and Reflective infrared sensor for A1 under Port Settings. Refer to 2.1. Flashing One LED for how to select Port Settings. 33

36 3 Open the Sensor Viewer to see the reflective infrared sensor value. Refer to 4.4. Using Light Sensors for more information. Notice how the sensor value changes as the distance between the object and the reflective infrared sensor varies. Ex. Object is far from the sensor Object is near the sensor 赤外線フォトリフレクタ 赤外線フォトリフレクタ Reflective infrared sensor value What is a reflective infrared sensor? A reflective infrared sensor works by emitting invisible infrared rays. After hitting an object, the rays are reflected back toward the source. The sensor detects the intensity of the reflected rays. More reflective colors, such as white, cause the sensor value to increase more easily. However, when an object is too close, the value gets smaller. (The sensor will reach its maximum value when placed approximately 6 mm away from an object.) 34

37 4 As shown below, place buzzer and Condition icons in their corresponding spaces. After placing the icons, set their attributes

38 5 Use Repeat icons to loop steps 1-8. Refer to 2.3. Using Repeats for how to use Repeat icons. Select Repeat indefinitely in the Repeat Settings dialog. 6 Transfer the program and check to see if it works. Buzzer Block is farther Lower note Block is closer Higher note Reflective infrared sensor 36

39 4.7. Using Accelerometers Learning target: Accelerometers Make a program that uses the accelerometer to report the degree of tilt using light and sound. 1 Connect three LEDs, the sound sensor, and the accelerometer to the sensor/led/buzzer connectors on the Studuino board. Connect LEDs to A0-A2, the buzzer to A3, and the accelerometer to A4-A5. LED 3 A0 A1 A2 Buzzer A3 Make sure cables are inserted correctly. The accelerometer requires connectors A4 and A5 because it has four wires. Accelerometer A4-A5 2 Port Settings Choose LED for A0-A2, Buzzer for A3, and Accelerometer for A4-A5 under Port Settings. Refer to 2.1. Flashing One LED for how to select Port Settings. 37

40 3 Open the Sensor Viewer to see the accelerometer value. Refer to 4.4. Using Light Sensors for more information. As the accelerometer is moved in different angles, each value changes as shown below. What is an accelerometer? An accelerometer works by detecting acceleration in the X, Y and Z axes. It calculates how speed varies over different periods of time. Z X Y An accelerometer, even when in a fixed position, will never show a value of 0 because it detects gravitational acceleration*. Objects are pulled toward the ground by Earth's gravity. This force can be used to measure angles (tilt) relative to the ground. Gravitational acceleration is the force exerted on an object by gravity. 38

41 4 As shown below, place icons in their corresponding spaces. After placing the icons, set their attributes See below for Submenu 1. See below for Submenu

42 5 Use Repeat icons to loop steps 1-6. Refer to 2.3. Using Repeats for how to use Repeat icons. Select Repeat indefinitely in the Repeat Settings dialog. 6 Transfer the program and check to see if it works. Assemble the LED, buzzer, and accelerometer blocks as shown below. Example LED A0 LED A1 LED A2 Accelerometer Connect this way. Buzzer The left-hand LED will blink when level. Middle LED blinks and buzzer sounds when tilted to the right. Right-hand LED blinks and buzzer sounds when tilted to further. 40

43 5. Using DC Motors 5.1. Making the DC Motor Move Learning target: DC motor settings 1 Connect the DC motor to the DC motor connector on the Studuino board. Use connector M1 for the DC motor. DC motor M1 2 Port Settings Check DC motor box M1. Refer to 2.1. Flashing One LED for how to select Port Settings.. 3 As shown below, place DC motor icons in the Operation icon boxes. Drag & Drop 41

44 4 DC motor settings Specifies which connector the DC motor is using. Specifies the rotation time as 0.1 seconds. Maximum time is 25.5 seconds. Specifies the rotation direction. Specifies the rotation speed of the DC motor Specifies whether or not to use braking when the motor stops. Use Test mode to see how the DC motor actually moves while inputting the settings. Refer to 3.2. Making a Melody for more information about Test mode. When checking the DC motor, connect the battery box to the Studuino board and turn on the switch. The USB cable does not supply enough power to operate the DC motors. 42

45 5.2. Making a Twin-motor Car Learning target: Motion icons 1 Assemble the car as shown below. (1) Attach wheels to the DC motors. Make a symmetrical pair. (2) Attach both DC motors to the bottom of the Studuino mount. (3) Use blocks to make a rear wheel. (4) Connect the DC motors and battery box to the Studuino board. M1: Right DC motor M2: Left DC motor POWER: Battery box (5) Secure the battery box to the Studuino mount. Complete 43

46 2 Port Settings Check DC motor boxes M1 and M2. Refer to 2.1. Flashing One LED for how to select Port Settings. 3 Use Test mode to see how the DC motor actually moves while inputting the settings. Refer to 3.2. Making a Melody for more information about Test mode. When checking the DC motor, connect the battery box to the Studuino board and turn on the switch. The USB cable does not supply enough power to operate the DC motors. Motion icons Forward Both (right and left) motors rotate forward Left turn (F) Only the right motor rotates forward Right turn (F) Only the left motor rotates forward Rotate The right and left motors turn in opposite directions. Backward Both (right and left) motors rotate in reverse Left turn (B) Only the right motor rotates in reverse Right turn (B) Only the left motor rotates in reverse 44

47 4 Select and place Motion icons to create a program that makes your car reach a goal. Example: A program that makes the car travel to three specified locations in order. Programming tips Before transferring the program, use Test mode to verify the proper time, speed, distance, and rotation angle for each Motion icon. Example 5 Transfer the program if your car moves as planned. Pressing the Reset button will make the program start over from the beginning. RESET button Your car may run differently depending on the type of floor and the strength of your batteries. 45

48 5.3. DC Motor Calibration Learning target: DC motor settings Every DC motor is different and each one may rotate at different speeds. If you make a car using two DC motors and it veers to the left or right when moving forward, you can fix this issue by calibrating your DC motors. 1Connect your DC motors to the Studuino. Line up your DC motors side-by-side to compare how fast each one rotates. 2Port Settings Tick the box next to DC motor connectors M1 and M2 under Port Settings. Refer to 2.1. Flashing One LED for how to select Port Settings. 3Select Edit from the menu, then select Motor Calibration from the pull down menu to open the setting dialog box. Make sure the Studuino board is properly connected to the PC via USB cable. 46

49 on Motor Calibration and you will see the dialog box below. The bottom half of the window is used to calibrate your DC motors. 4 on the Rotate button and your motors will rotate. Your motors will rotate at maximum speed. 5 Use the sliders to adjust the speed of your motors. Use the slider to adjust the faster motor until both motors are rotating at the same speed. Stop once you're finished to stop your motors. Adjust speed using the slider Slow Fast 6 OK to close the dialog box. OK to apply settings. 47

50 6. Using Servomotors 6.1. Servomotor Calibration Learning target: Servomotor calibration Due to individual differences in each servomotor, there may be several degrees of deviation in their angles. This deviation needs to be adjusted through calibration. 1 Adjusting the drive shaft angle of the servomotor Before connecting the servomotor, check to see if the drive shaft is attached correctly. From the default position, turn the block part of the drive shaft right and left. If there is a large difference in how much each side turns, this means the block is slipping and needs to be adjusted. Cable Drive shaft Aligned Body Default Misaligned To prevent the inner gears from getting damaged, the block part is made to turn freely when a large force is applied to the drive shaft. Turn the block part by hand in the opposite direction until the drive shaft clicks into the proper position. Do not turn the drive shaft block unless absolutely necessary. This can damage the servomotor. If the deviation is nominal, use the calibration settings in the software. 48

51 2 Connect the servomotor to the servomotor connector on the Studuino board. Use connector D9 for the servomotor Connect the battery box. Make sure cables are inserted correctly. 3 Port Settings Check Servomotor box D9. Refer to 2.1. Flashing One LED for how to select Port Settings. 4 As shown below, place DC motor icons in the operation area. Drag & Drop 49

52 5 Select Edit from the menu, then select Motor Calibration from the pull down menu to open the setting dialog box. Make sure the Studuino board is properly connected to the PC via USB cable. When Motor Calibration is selected, all connected servomotors are set to 90 degrees. At this time, the Test mode window shown below will appear. Connect the battery box to the board and turn on the power. The drive shaft and body are at a 90 degree angle. 50

53 6 If the block portion isn't properly aligned, try inputting values in the Motor Calibration menu until you find a suitable angle. Enter offset values until you reach the correct angle. Adjustment needed If using a different servomotor for a connector, be sure to re-calibrate the servomotor. After calibration, we recommend putting a sticker on the connector used for the servomotor so it can be easily identified. 51

54 6.2. Creating a Robotic Arm that Uses Three Servomotors Learning target: Servomotors 1 Calibrate three servomotors, following the steps in the previous section. Use connectors D9, D10, and D11 for the servomotors. 2 Assemble the robotic arm as show below. Part 1 D9 Complete Part 2 D10 Assemble the same as Part 1. Complete Part 3 D11 Complete 52

55 Assembling the Arm (1) Assemble part 1-3 as shown. Part 2 Part 3 Part 1 (2) Mount the battery box on the mount as shown, and connect the cable to the POWER pins. POWER (3) Attach the arm as shown and connect each servomotor to the board. D9 D10 D11 黒黒灰 Make sure cables are inserted correctly. 53

56 3 Port Settings In the Port Settings dialog box, tick boxes D9, D10, and D11 in the servomotor area. Also, tick boxes A0 through A3 in the Button area. Refer to 2.1. Flashing One LED for how to select Port Settings.. 4 Place icons and complete setting as shown below. Select Repeat indefinitely in the Repeat Settings dialog

57 Transfer the program and check to see if it works. A1: Arm bends downward A3: Arm bends to the left A0: Arm bends to the right A2: Arm opens 55

How To Program An Nxt Mindstorms On A Computer Or Tablet Computer

How To Program An Nxt Mindstorms On A Computer Or Tablet Computer NXT Generation Robotics Introductory Worksheets School of Computing University of Kent Copyright c 2010 University of Kent NXT Generation Robotics These worksheets are intended to provide an introduction

More information

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205]

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Users Manual Robokits India info@robokits.co.in http://www.robokitsworld.com Page 1 Bluetooth + USB 16 Servo Controller is used to control up to

More information

North Texas FLL Coaches' Clinics. Beginning Programming October 2014. Patrick R. Michaud pmichaud@pobox.com republicofpi.org

North Texas FLL Coaches' Clinics. Beginning Programming October 2014. Patrick R. Michaud pmichaud@pobox.com republicofpi.org North Texas FLL Coaches' Clinics Beginning Programming October 2014 Patrick R. Michaud pmichaud@pobox.com republicofpi.org Goals Learn basics of Mindstorms programming Be able to accomplish some missions

More information

Quick Start Guide to computer control and robotics using LEGO MINDSTORMS for Schools

Quick Start Guide to computer control and robotics using LEGO MINDSTORMS for Schools Quick Start Guide to computer control and robotics using LEGO MINDSTORMS for Schools www.lego.com/education/mindstorms LEGO, the LEGO logo and MINDSTORMS are trademarks of the LEGO Group. 2004 The LEGO

More information

2013 G Miller. 3 Axis Brushless Gimbal Controller Manual

2013 G Miller. 3 Axis Brushless Gimbal Controller Manual 2013 G Miller 3 Axis Brushless Gimbal Controller Manual P a g e 2 When you receive your 3 axis controller board from dys.hk in the packet will be the following items the sensor 3rd Axis board the main

More information

CREATE A 3D MOVIE IN DIRECTOR

CREATE A 3D MOVIE IN DIRECTOR CREATE A 3D MOVIE IN DIRECTOR 2 Building Your First 3D Movie in Director Welcome to the 3D tutorial for Adobe Director. Director includes the option to create three-dimensional (3D) images, text, and animations.

More information

Windows 10.1 Tablet (UB-15MS10 and UB-15MS10SA) FAQ December 2014

Windows 10.1 Tablet (UB-15MS10 and UB-15MS10SA) FAQ December 2014 Windows 10.1 Tablet (UB-15MS10 and UB-15MS10SA) FAQ December 2014 Navigation... 2 Question 1: What are charms used for?... 2 Question 2: How do I navigate while using a mouse or trackpad?... 3 Question

More information

How To Turn On A Robot On A Computer On A Black Box On A Pc Or Macbook

How To Turn On A Robot On A Computer On A Black Box On A Pc Or Macbook Written Directions for EV3 Line Follow (Heaviside Algorithm) Description: Given a black line and the light sensor on the EV3 robot, we want to have the light sensor read values from the reflected light.

More information

Table of Contents. Use. Troubleshooting. Setup. Welcome. 11 How to arm/disarm system/camera(s) 19 Sync Module setup issues. 3 Installing the Blink app

Table of Contents. Use. Troubleshooting. Setup. Welcome. 11 How to arm/disarm system/camera(s) 19 Sync Module setup issues. 3 Installing the Blink app User Guide Table of Contents Welcome Setup Use Troubleshooting 2 What s in the box 2 What you need 3 Installing the Blink app 4 Setting up the Sync Module 5 Connecting the Sync Module to Your Wi-Fi 7 Adding

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

Six-servo Robot Arm. DAGU Hi-Tech Electronic Co., LTD www.arexx.com.cn. Six-servo Robot Arm

Six-servo Robot Arm. DAGU Hi-Tech Electronic Co., LTD www.arexx.com.cn. Six-servo Robot Arm Six-servo Robot Arm 1 1, Introduction 1.1, Function Briefing Servo robot, as the name suggests, is the six servo motor-driven robot arm. Since the arm has a few joints, we can imagine, our human arm, in

More information

Contents Contents Contents Overview Charging your headset Wearing the headset Powering on the headset Connecting your headset for dictation

Contents Contents Contents Overview Charging your headset Wearing the headset Powering on the headset Connecting your headset for dictation 1 Contents Contents Contents 2 Overview 3 Charging your headset 4 Wearing the headset 4 Powering on the headset 4 Connecting your headset for dictation 5 The adapter 5 Adjusting your computer's audio settings

More information

PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL

PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL Rev. D PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL 10 BORIGHT AVENUE, KENILWORTH NEW JERSEY 07033 TELEPHONE: 800-524-0273 FAX: 908-686-9317 TABLE OF CONTENTS Page

More information

Configuration Software User Instruction

Configuration Software User Instruction Configuration Software User Instruction V1.0 Index Index... 1 Configuration Software... 1 1 Install Driver...1 2 Install Configuration Software...1 How to use Baseflight Configurator...1 Flight Controller

More information

Installing the IF-NMEASC & SC30 Windows XP Drivers & Software

Installing the IF-NMEASC & SC30 Windows XP Drivers & Software Installing the IF-NMEASC & SC30 Windows XP Drivers & Software The following document will outline the installation and use of the IF-NMEASC and SC-30 USB drivers and SC-30Tool software in three parts:

More information

How to connect your Victron to a computer with VE Bus Quick Configure

How to connect your Victron to a computer with VE Bus Quick Configure How to connect your Victron to a computer with VE Bus Quick Configure Before connecting your Victron to a computer the following is important: - Only identical models with VE Bus software (see sticker

More information

2/26/2008. Sensors For Robotics. What is sensing? Why do robots need sensors? What is the angle of my arm? internal information

2/26/2008. Sensors For Robotics. What is sensing? Why do robots need sensors? What is the angle of my arm? internal information Sensors For Robotics What makes a machine a robot? Sensing Planning Acting information about the environment action on the environment where is the truck? What is sensing? Sensing is converting a quantity

More information

Servo Motors (SensorDAQ only) Evaluation copy. Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply

Servo Motors (SensorDAQ only) Evaluation copy. Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply Servo Motors (SensorDAQ only) Project 7 Servos are small, relatively inexpensive motors known for their ability to provide a large torque or turning force. They draw current proportional to the mechanical

More information

PRINTER DRIVER GUIDE (KODAK 305 Photo Printer)

PRINTER DRIVER GUIDE (KODAK 305 Photo Printer) PRINTER DRIVER GUIDE () Microsoft, Windows, Windows XP, Windows Vista and Windows 7 are registered trademarks of Microsoft Corporation in the United States and/or other countries. Adobe, Adobe Photoshop

More information

Microsoft PowerPoint 2010

Microsoft PowerPoint 2010 Microsoft PowerPoint 2010 Starting PowerPoint... 2 PowerPoint Window Properties... 2 The Ribbon... 3 Default Tabs... 3 Contextual Tabs... 3 Minimizing and Restoring the Ribbon... 4 The Backstage View...

More information

PS3/PS2/PC 3IN1 Wired Racing Wheel. User Manual

PS3/PS2/PC 3IN1 Wired Racing Wheel. User Manual PS3/PS2/PC 3IN1 Wired Racing Wheel User Manual 1. Introduction Thank you for purchasing 3IN1 wired wheel designed for PS3, PS2, and PC consoles, which is compatible with all of the PS/PS1/PS2/PS3 and PC

More information

Alarm Security Kit - NVR

Alarm Security Kit - NVR Alarm Security Kit - NVR EN The alarm configuration menu (see above right screenshot) allows you to configure and change settings for the PIR movement sensors, window/door sensors, remote controls (key

More information

Animated Lighting Software Overview

Animated Lighting Software Overview Animated Lighting Software Revision 1.0 August 29, 2003 Table of Contents SOFTWARE OVERVIEW 1) Dasher Pro and Animation Director overviews 2) Installing the software 3) Help 4) Configuring the software

More information

Introduction Configuring Your HP Mouse Batteries Replacing the Batteries Mouse Sensor Technology Navigating the HP Mouse Control Center

Introduction Configuring Your HP Mouse Batteries Replacing the Batteries Mouse Sensor Technology Navigating the HP Mouse Control Center Introduction Congratulations on your purchase of an HP mouse. This mouse is the latest in a wide range of computer peripherals manufactured by HP. It is designed to provide you with the highest level of

More information

CONTENTS. What is ROBOTC? Section I: The Basics

CONTENTS. What is ROBOTC? Section I: The Basics BEGINNERS CONTENTS What is ROBOTC? Section I: The Basics Getting started Configuring Motors Write Drive Code Download a Program to the Cortex Write an Autonomous Section II: Using Sensors Sensor Setup

More information

AimTrak Playstation 2 User Guide

AimTrak Playstation 2 User Guide AimTrak Playstation 2 User Guide http://www.ultimarc.com 1 Table of Contents Contents...2 1. Introduction...2 2. Buttons and Wiring...3 3. Setup Guide...4 3.1 A Note on Firmware...4 3.2 Initial Setup....4

More information

Gear View Basic. User Help. Version 2.2.0. Written by: Product Documentation and R&D Date: August 2015 LX-DOC-GVB-2.2.0-UH-EN-REVA

Gear View Basic. User Help. Version 2.2.0. Written by: Product Documentation and R&D Date: August 2015 LX-DOC-GVB-2.2.0-UH-EN-REVA Gear View Basic User Help Version 2.2.0 Written by: Product Documentation and R&D Date: August 2015 2015 Lexmark International Technology, S.A. All rights reserved. No part of this publication may be reproduced,

More information

ezsystem elab16m Project 1F: Alarm System (Full Project description)

ezsystem elab16m Project 1F: Alarm System (Full Project description) ezsystem elab16m Project 1F: Alarm System (Full Project description) ezsystem The aim of ezsystem is to enable Creativity and Innovation at an early age in a Problem Based Learning (PBL) approach. ezsystem

More information

Table of Contents Getting Started... 3 The Motors... 4 The Control Board... 5 Setting up the Computer with Mach3... 6 Starting up the Equipment...

Table of Contents Getting Started... 3 The Motors... 4 The Control Board... 5 Setting up the Computer with Mach3... 6 Starting up the Equipment... User Manual Table of Contents Getting Started... 3 The Motors... 4 The Control Board... 5 Setting up the Computer with Mach3... 6 Starting up the Equipment... 12 G-Code Example... 13 2 Getting Started

More information

Connecting to the Internet

Connecting to the Internet Connecting to the Internet Connecting the Gateway to the Internet Configuration of TCP/IP Protocol Installing the USB Drivers Connecting Ethernet Network Devices Connecting USB Network Devices Connecting

More information

How To Use Mview On A Powerline 2.2 (Powerline) On A Pc Or Macbook 2 (Powerplst) On An Iphone Or Ipa 2 (Aldo) On Your Iphon 2 (

How To Use Mview On A Powerline 2.2 (Powerline) On A Pc Or Macbook 2 (Powerplst) On An Iphone Or Ipa 2 (Aldo) On Your Iphon 2 ( mview for V8.53 and Later Motion Software mview is an elevator monitoring application. Through 1 Ethernet, the computer running mview may be connected directly to a single Motion 2000 or Motion 4000 controller

More information

5. Tutorial. Starting FlashCut CNC

5. Tutorial. Starting FlashCut CNC FlashCut CNC Section 5 Tutorial 259 5. Tutorial Starting FlashCut CNC To start FlashCut CNC, click on the Start button, select Programs, select FlashCut CNC 4, then select the FlashCut CNC 4 icon. A dialog

More information

How to read this guide

How to read this guide How to read this guide The following shows the symbols used in this Quick start guide with descriptions and examples. Symbol Description Example P oint Reference Caution [ ] This symbol explains information

More information

Epson Brightlink Interactive Board and Pen Training. Step One: Install the Brightlink Easy Interactive Driver

Epson Brightlink Interactive Board and Pen Training. Step One: Install the Brightlink Easy Interactive Driver California State University, Fullerton Campus Information Technology Division Documentation and Training Services Handout Epson Brightlink Interactive Board and Pen Training Downloading Brightlink Drivers

More information

Introduction to Autodesk Inventor for F1 in Schools

Introduction to Autodesk Inventor for F1 in Schools Introduction to Autodesk Inventor for F1 in Schools F1 in Schools Race Car In this course you will be introduced to Autodesk Inventor, which is the centerpiece of Autodesk s digital prototyping strategy

More information

Congratulations for making the decision to become one of the many proud KT-X robot owners.

Congratulations for making the decision to become one of the many proud KT-X robot owners. Congratulations for making the decision to become one of the many proud KT-X robot owners. The following quick start guide will enable to get your KT-X up and running in as little time as possible. Before

More information

Mobility with Eye-Fi Scanning Guide

Mobility with Eye-Fi Scanning Guide Mobility with Eye-Fi Scanning Guide Scan and Transfer Images Wirelessly with Eye-Fi This document is to be used in addition to the scanner s user guide located on the installation disc. The instructions

More information

Inserting the SIM card in the MobiGater device. Connecting the MobiGater Device

Inserting the SIM card in the MobiGater device. Connecting the MobiGater Device WWW.MOBIGATER.COM 2 Inserting the SIM card in the MobiGater device There is a small cover on the bottom side of the MobiGater device Move the cover in the direction from? to. Move the SIM card holder in

More information

AEO Head Movement Tracker X-GYRO 1000 USER MANUAL(V1.1bata 20091019)

AEO Head Movement Tracker X-GYRO 1000 USER MANUAL(V1.1bata 20091019) AEO Head Movement Tracker X-GYRO 1000 USER MANUAL(V1.1bata 20091019) Introduction: X-GYRO 1000 is a two axis head tracking system, based on G sensor technique, designed for tracking complicated three-dimensional

More information

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION NXT User Guide Introduction WELCOME TO LEGO MINDSTORMS EDUCATION LEGO MINDSTORMS Education is the next generation in educational robotics, enabling students to discover Science, Technology, Engineering

More information

idex Manual Contact details Producer: FOCI BV. The Netherlands www.foci.nl info@foci.nl

idex Manual Contact details Producer: FOCI BV. The Netherlands www.foci.nl info@foci.nl idex USB Manual Contact details Producer: FOCI BV. The Netherlands www.foci.nl info@foci.nl 2 Index Index... 3 1. General... 4 2. Get started!... 5 3. First use... 7 4. FOCI idex Software... 14 5. Operating

More information

System update procedure for Kurio 7 (For build number above 110)

System update procedure for Kurio 7 (For build number above 110) System update procedure for Kurio 7 (For build number above 110) IMPORTANT NOTE: Before starting the procedure, please check your current Android build number, that can be found as follows: exit the Kurio

More information

Compressor Supreme Force Feedback User Manual

Compressor Supreme Force Feedback User Manual 1. Setting up Compressor Supreme 1. Connect the gear shifter to the back panel of the steering wheel column. 2. Connect the foot pedals to the back panel of the steering wheel column. 3. Connect the A.C.

More information

OPERATION MANUAL. IWB Setup Software/EyeRIS NEC edition

OPERATION MANUAL. IWB Setup Software/EyeRIS NEC edition IWB Setup Software/EyeRIS NEC edition OPERATION MANUAL This manual describes installation and operation procedures of the driver / the calibration software Supported model NP03Wi NP04Wi UM352W (for the

More information

Introduction to Autodesk Inventor for F1 in Schools

Introduction to Autodesk Inventor for F1 in Schools F1 in Schools race car Introduction to Autodesk Inventor for F1 in Schools In this course you will be introduced to Autodesk Inventor, which is the centerpiece of Autodesk s Digital Prototyping strategy

More information

Lenovo Miix 2 8. User Guide. Read the safety notices and important tips in the included manuals before using your computer.

Lenovo Miix 2 8. User Guide. Read the safety notices and important tips in the included manuals before using your computer. Lenovo Miix 2 8 User Guide Read the safety notices and important tips in the included manuals before using your computer. Notes Before using the product, be sure to read Lenovo Safety and General Information

More information

SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9

SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9 SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9 Learning Goals: At the end of this lab, the student should have basic familiarity with the DataMan

More information

COLOR TFT LCD MONITOR. User Manual

COLOR TFT LCD MONITOR. User Manual COLOR TFT LCD MONITOR User Manual GENERAL INFORMATION Thank you for choosing our TFT LCD(liquid crystal display) monitor. This product employs integrate circuits, low power consumption, and no radiation

More information

SMART BOARD USER GUIDE FOR PC TABLE OF CONTENTS I. BEFORE YOU USE THE SMART BOARD. What is it?

SMART BOARD USER GUIDE FOR PC TABLE OF CONTENTS I. BEFORE YOU USE THE SMART BOARD. What is it? SMART BOARD USER GUIDE FOR PC What is it? SMART Board is an interactive whiteboard available in an increasing number of classrooms at the University of Tennessee. While your laptop image is projected on

More information

SA-9600 Surface Area Software Manual

SA-9600 Surface Area Software Manual SA-9600 Surface Area Software Manual Version 4.0 Introduction The operation and data Presentation of the SA-9600 Surface Area analyzer is performed using a Microsoft Windows based software package. The

More information

PN-L702B LCD MONITOR TOUCH PANEL DRIVER OPERATION MANUAL. Version 2.1

PN-L702B LCD MONITOR TOUCH PANEL DRIVER OPERATION MANUAL. Version 2.1 PN-L702B LCD MONITOR TOUCH PANEL DRIVER OPERATION MANUAL Version 2.1 Contents Setting up the PC...3 Installing the touch panel driver...3 Touch Panel Settings...4 How to configure settings...4 Calibration...5

More information

How To Use An Eyefi Card With A Wireless Network On A Iphone Or Ipad Or Ipa (For A Computer) With A Camera On A Blackberry Or Ipo (For An Ipo) With An Eyefi Card

How To Use An Eyefi Card With A Wireless Network On A Iphone Or Ipad Or Ipa (For A Computer) With A Camera On A Blackberry Or Ipo (For An Ipo) With An Eyefi Card Troubleshoot guide : Eye-Fi Introduction This document will provide information and guidelines to solve problems that may occur when using the wireless Eye-Fi connection. The Eye-Fi card is an SD card

More information

Pro Flight Rudder Pedals

Pro Flight Rudder Pedals 1 of 5 19/12/2006 16:43 Pro Flight Rudder Pedals USER MANUAL GETTING STARTED Introduction The Saitek Pro Flight Rudder Pedals are solid 3-axis rudder pedals designed to maximise realism by enabling foot

More information

EVA Drivers 6.1 and TWAIN Installation Guide for EVA Classic Digital Sensors

EVA Drivers 6.1 and TWAIN Installation Guide for EVA Classic Digital Sensors 8 Westchester Plaza, Suite 112, Elmsford, NY 10523 (914) 592-6100 Fax (914) 592-6148 www.imageworkscorporation.com EVA Drivers 6.1 and TWAIN Installation Guide for EVA Classic Digital Sensors Note: This

More information

Tutorial for Programming the LEGO MINDSTORMS NXT

Tutorial for Programming the LEGO MINDSTORMS NXT Tutorial for Programming the LEGO MINDSTORMS NXT Table of contents 1 LEGO MINDSTORMS Overview 2 Hardware 2.1 The NXT Brick 2.2 The Servo Motors 2.3 The Sensors 3 Software 3.1 Starting a Program 3.2 The

More information

Specifications. What s Inside The box

Specifications. What s Inside The box Tablet of Contents Specifications.1 What s inside the box Tablet Parts Getting started... Connection to Internet..6 Task Bar..8 Install and Uninstall 9 Camera.10 HDMI.11 Trouble Shooting 11 Specifications

More information

USER MANUAL. EZRUN Series Brushless Speed Controller EZRUN-150A-PRO

USER MANUAL. EZRUN Series Brushless Speed Controller EZRUN-150A-PRO USER MANUAL EZRUN Series Brushless Speed Controller EZRUN-150A-PRO User Manual of EZRUN-150A-PRO Brushless ESC HW-SM405ENG-20130809 Page - 1 - Declaration Thanks for purchasing our Electronic Speed Controller

More information

Mirror Mount Video Monitor/Recorder with Front and Rear View Night Cameras PLCMDVR5

Mirror Mount Video Monitor/Recorder with Front and Rear View Night Cameras PLCMDVR5 Mirror Mount Video Monitor/Recorder with Front and Rear View Night Cameras PLCMDVR5 www.pyleaudio.com Instruction Manual Installation and Connection: 1. Please disconnect your car battery. 2. In the contents

More information

The Basics of Robot Mazes Teacher Notes

The Basics of Robot Mazes Teacher Notes The Basics of Robot Mazes Teacher Notes Why do robots solve Mazes? A maze is a simple environment with simple rules. Solving it is a task that beginners can do successfully while learning the essentials

More information

Parts List. Navigation

Parts List. Navigation Parts List quantity description 1 LCD-200 Display 1 LCD-200 Display cable 1 CD-ROM 2 dual lock or velcro 1 1GB SD card (optional) 1 CAN termination plug Navigation Main Menu Begin Log/Stop Log page 4 Log

More information

FANTEC MR-35HDC HARD DISK COPYSTATION

FANTEC MR-35HDC HARD DISK COPYSTATION FANTEC MR-35HDC HARD DISK COPYSTATION POWER Red= Blue=Dup 0 Copy Start 1 Compare Mute BIG Prescan JBOG Erase Reset USER MANUAL MENU MENU... 1 1. Product Introduction... 2 2. Operation in function... 3

More information

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION NXT User Guide Introduction WELCOME TO LEGO MINDSTORMS EDUCATION LEGO MINDSTORMS Education is the next generation in educational robotics, enabling students to discover Science, Technology, Engineering

More information

Micro Cam Software. User Manual V1.3

Micro Cam Software. User Manual V1.3 Micro Cam Software User Manual V1.3 CONTENT CHAPTER 1: MICRO CAM SOFTWARE INSTALLATION AND CONNECTION... - 1-1.1 SOFTWARE MICRO CAM INSTALLATION... - 1-1.2 WIRED DEVICE CONNECTION... - 4-1.3 SOFTWARE OPERATION

More information

STEELSERIES FREE MOBILE WIRELESS CONTROLLER USER GUIDE

STEELSERIES FREE MOBILE WIRELESS CONTROLLER USER GUIDE STEELSERIES FREE MOBILE WIRELESS CONTROLLER USER GUIDE INTRODUCTION Thank you for choosing the SteelSeries Free Mobile Controller! This controller is designed by SteelSeries, a dedicated manufacturer of

More information

Creating a Project with PSoC Designer

Creating a Project with PSoC Designer Creating a Project with PSoC Designer PSoC Designer is two tools in one. It combines a full featured integrated development environment (IDE) with a powerful visual programming interface. The two tools

More information

Quick Start Guide. DVR DS-7200HWI-SH Series DVR. www.hikvision.com. First Choice For Security Professionals

Quick Start Guide. DVR DS-7200HWI-SH Series DVR. www.hikvision.com. First Choice For Security Professionals Quick Start Guide DVR DS-7300HWI-SH Series DVR DS-7200HWI-SH Series DVR NOTE: For more detailed information, refer to the User s Manual on the CD-ROM. You must use your PC or MAC to access the files. www.hikvision.com

More information

User Guide. Temperature and Humidity Datalogger. Model 42280

User Guide. Temperature and Humidity Datalogger. Model 42280 User Guide Temperature and Humidity Datalogger Model 42280 Introduction Congratulations on your purchase of the Extech 42280 Thermometer and Relative Humidity Datalogger. The 42280 is a wall-mount, tripod

More information

SECURITY SYSTEM MANAGEMENT SOFTWARE FOR WINDOWS. Quick Start Instructions

SECURITY SYSTEM MANAGEMENT SOFTWARE FOR WINDOWS. Quick Start Instructions TM SECURITY SYSTEM MANAGEMENT SOFTWARE FOR WINDOWS Quick Start Instructions Introduction WinLoad for Windows was developed to simplify and speed up the task of programming Paradox control panels. Remote

More information

Microsoft PowerPoint 2011

Microsoft PowerPoint 2011 Microsoft PowerPoint 2011 Starting PowerPoint... 2 Creating Slides in Your Presentation... 3 Beginning with the Title Slide... 3 Inserting a New Slide... 3 Adding an Image to a Slide... 4 Downloading Images

More information

Table of Contents. System Requirement of MP3 Player:... 4. Connection and Downloading... 7. Downloading DRM10 Files... 8.

Table of Contents. System Requirement of MP3 Player:... 4. Connection and Downloading... 7. Downloading DRM10 Files... 8. Table of Contents Instructions... 1 Precautions... 2 System requirements... 4 System Requirement of MP3 Player:... 4 Introduction... 5 Features... 5 Charging the Battery... 6 Connection and Downloading...

More information

CNC Turning Training CNC MILLING / ROUTING TRAINING GUIDE. www.denford.co.uk Page 1

CNC Turning Training CNC MILLING / ROUTING TRAINING GUIDE. www.denford.co.uk Page 1 CNC Turning Training www.denford.co.uk Page 1 Table of contents Introduction... 3 Start the VR Turning Software... 3 Configure the software for the machine... 4 Load your CNC file... 5 Configure the tooling...

More information

EV3 Programming. Overview for FLL Coaches. A very big high five to Tony Ayad

EV3 Programming. Overview for FLL Coaches. A very big high five to Tony Ayad EV3 Programming Overview for FLL Coaches A very big high five to Tony Ayad 2013 Nature s Fury Coach Call Basic programming of the Mindstorm EV3 Robot People Introductions Deborah Kerr & Faridodin Lajvardi

More information

FREE FALL. Introduction. Reference Young and Freedman, University Physics, 12 th Edition: Chapter 2, section 2.5

FREE FALL. Introduction. Reference Young and Freedman, University Physics, 12 th Edition: Chapter 2, section 2.5 Physics 161 FREE FALL Introduction This experiment is designed to study the motion of an object that is accelerated by the force of gravity. It also serves as an introduction to the data analysis capabilities

More information

Getting Started... 1. What s included... 1. Setting up Fitbit One on a computer... 2. Mac & PC Requirements... 2

Getting Started... 1. What s included... 1. Setting up Fitbit One on a computer... 2. Mac & PC Requirements... 2 User Manual Table of Contents Getting Started... 1 What s included... 1 Setting up Fitbit One on a computer... 2 Mac & PC Requirements... 2 Installing Fitbit Connect on a computer... 2 Installing Fitbit

More information

Unsuccessful Calibration 2. Proper Cable Routing 5. Latch Bolt Operation 6. Audio/Visual Feedback 7. Touch-To-Open Functionality 10.

Unsuccessful Calibration 2. Proper Cable Routing 5. Latch Bolt Operation 6. Audio/Visual Feedback 7. Touch-To-Open Functionality 10. 5099250_Troubleshooting_English_KW Rev 01 Troubleshooting Guide 1 2 3 4 5 6 7 8 Unsuccessful Calibration 2 Proper Cable Routing 5 Latch Bolt Operation 6 Audio/Visual Feedback 7 Touch-To-Open Functionality

More information

TE100-P21/TEW-P21G Windows 7 Installation Instruction

TE100-P21/TEW-P21G Windows 7 Installation Instruction Hardware Installation TE100-P21/TEW-P21G Windows 7 Installation Instruction 1. Go to http://www.trendnet.com/downloads/ to download the Windows 7 Utility. Save the file to your desktop. 2. Right click

More information

understanding sensors

understanding sensors The LEGO MINDSTORMS NXT 2.0 robotics kit includes three types of sensors: Ultrasonic, Touch, and Color. You can use these sensors to build a robot that makes sounds when it sees you or to build a vehicle

More information

Table of Contents. 1. Overview... 3. 1.1 Materials Required. 3 1.2 System Requirements. 3 1.3 User Mode 3. 2. Installation Instructions..

Table of Contents. 1. Overview... 3. 1.1 Materials Required. 3 1.2 System Requirements. 3 1.3 User Mode 3. 2. Installation Instructions.. Table of Contents 1. Overview..... 3 1.1 Materials Required. 3 1.2 System Requirements. 3 1.3 User Mode 3 2. Installation Instructions.. 4 2.1 Installing the On Call Diabetes Management Software. 4 2.2

More information

User Guide LUXXOR VIDEO MICROSCOPE. 2 Luxxor Video Microscope Set Up

User Guide LUXXOR VIDEO MICROSCOPE. 2 Luxxor Video Microscope Set Up 2 Luxxor Video Microscope Set Up User Guide LUXXOR VIDEO MICROSCOPE Column When removed from its packaging, the Luxxor Video Microscope will be configured as shown, with the Vertical Slide and Slide Stop

More information

Additional Guides. TETRIX Getting Started Guide NXT Brick Guide

Additional Guides. TETRIX Getting Started Guide NXT Brick Guide Preparing the NXT Brick Now that a functional program has been created, it must be transferred to the NXT Brick and then run. This is a perfect time to take a look at the NXT Brick in detail. The NXT Brick

More information

Cassette2CD Wizard User's Manual

Cassette2CD Wizard User's Manual Cassette2CD Wizard User's Manual Table of Contents 1. Installation Instructions a. Connecting tape-deck to the computer b. Installing the Software 2. Using Cassette2CD Wizard a. Setting up and Testing

More information

Motion Activated Camera User Manual

Motion Activated Camera User Manual Brinno MAC200 User Manual Last Modified on 12/23/2015 7:51 pm EST Motion Activated Camera User Manual www.brinno.com Register@online http://www.brinno.com/support/register.html contact us: customerservice@brinno.com

More information

INSTRUCTIONS Please read all instructions carefully before using

INSTRUCTIONS Please read all instructions carefully before using Car Multimedia System XM-2DTSB79 AUX IR MIC RESET USB INSTRUCTIONS Please read all instructions carefully before using Touch calibration If touch calibration error occurs, you can adjust the touch coordinate

More information

Welcome to Bridgit @ CSU The Software Used To Data Conference.

Welcome to Bridgit @ CSU The Software Used To Data Conference. Welcome to Bridgit @ CSU The Software Used To Data Conference. Overview SMART Bridgit software is a client/server application that lets you share programs and information with anyone, anywhere in the world.

More information

Watch Your Garden Grow

Watch Your Garden Grow Watch Your Garden Grow The Brinno GardenWatchCam is a low cost, light weight, weather resistant, battery operated time-lapse camera that captures the entire lifecycle of any garden season by taking photos

More information

WINDOWS 7 MANAGE FILES AND FOLDER WITH WINDOWS EXPLORER

WINDOWS 7 MANAGE FILES AND FOLDER WITH WINDOWS EXPLORER WINDOWS 7 MANAGE FILES AND FOLDER WITH WINDOWS EXPLORER Last Edited: 2012-07-10 1 Introduce Windows Explorer... 3 Navigate folders and their contents... 5 Organize files and folders... 8 Move or copy files

More information

Video Baby Monitor System. User Guide

Video Baby Monitor System. User Guide Video Baby Monitor System User Guide What s inside Welcome!... 2 Getting started... 3 Tour of the system... 7 Everyday use...13 Cameras... 14 Motion/Alerts... 18 Recording... 21 Playing Back Pictures and

More information

Point of View SmartTV-500 Center - Android 4.2. General notices for use...2 Disclaimer...2 Box Contents...2

Point of View SmartTV-500 Center - Android 4.2. General notices for use...2 Disclaimer...2 Box Contents...2 Point of View SmartTV-500 Center - Android 4.2 English Table of Contents General notices for use...2 Disclaimer...2 Box Contents...2 1.0 Product basics...3 1.1 Buttons and connections... 3 1.2 Connecting

More information

Stop Alert Flasher with G-Force sensor

Stop Alert Flasher with G-Force sensor Stop Alert Flasher with G-Force sensor Stop Alert module creates brake light flashing effect to catch attention of the drivers behind to avoid dangerous rear end collision. The flasher module is a state

More information

INSTRUCTION MANUAL All-In-One GSM Home Alarm System SB-SP7200-GSM

INSTRUCTION MANUAL All-In-One GSM Home Alarm System SB-SP7200-GSM INSTRUCTION MANUAL All-In-One GSM Home Alarm System SB-SP7200-GSM Revised: August 28, 2014 PRODUCT REFERENCE MOUNTING ACCESSORIES PIR / MOTION DETECTION UNIT MAIN UNIT POWER ADAPTER MOUNTING ACCESSORIES

More information

Ethernet Radio Configuration Guide

Ethernet Radio Configuration Guide Ethernet Radio Configuration Guide for Gateway, Endpoint, and Repeater Radio Units April 20, 2015 Customer Service 1-866-294-5847 Baseline Inc. www.baselinesystems.com Phone 208-323-1634 FAX 208-323-1834

More information

User Manual. Thermo Scientific Orion

User Manual. Thermo Scientific Orion User Manual Thermo Scientific Orion Orion Star Com Software Program 68X637901 Revision A April 2013 Contents Chapter 1... 4 Introduction... 4 Star Com Functions... 5 Chapter 2... 6 Software Installation

More information

Scan2CRM for ACT! User Guide

Scan2CRM for ACT! User Guide Scan2CRM for ACT! User Guide APPENDIX Warranty... I Notice to user...ii Publication...III Trademarks...IV Version 9.50 - Supports ACT! by Sage for windows, ACT! 2007 (Version 9) and above. This publication

More information

SupcoLog Logger Interface Software

SupcoLog Logger Interface Software SupcoLog Logger Interface Software USER S GUIDE Table Of Contents Quick Start... 5 Overview... 5 Connecting the Logger to Your PC... 5 Setting Up the Logger To Record Data... 6 Custom Interval Setup...

More information

Capacitive Touch Lab. Renesas Capacitive Touch Lab R8C/36T-A Family

Capacitive Touch Lab. Renesas Capacitive Touch Lab R8C/36T-A Family Renesas Capacitive Touch Lab R8C/36T-A Family Description: This lab will cover the Renesas Touch Solution for embedded capacitive touch systems. This lab will demonstrate how to setup and run a simple

More information

The Coast to Coast AM Podcast for itunes 11

The Coast to Coast AM Podcast for itunes 11 The Coast to Coast AM Podcast for itunes 11 System Requirements In order to run itunes 11, please see the system requirements at http://www.apple.com/itunes/download/. A Note on Downloading Directly to

More information

Best Robotics Sample Program Quick Start

Best Robotics Sample Program Quick Start Best Robotics Sample Program Quick Start BEST Robotics Programming -- Sample Program Quick Start Page 1 Overview The documents describe the program "Best Competition Template.c" which contains the sample

More information

Point of View SmartTV HDMI 210 dongle - Android 4.2. General notices for use... 2 Disclaimer... 2 Box Contents... 2

Point of View SmartTV HDMI 210 dongle - Android 4.2. General notices for use... 2 Disclaimer... 2 Box Contents... 2 Table of Contents General notices for use... 2 Disclaimer... 2 Box Contents... 2 1.0 Product basics... 3 1.1 Connecting your device for the first time... 3 1.2 Connections... 4 1.3 Using the remote control

More information

Leaf River Outdoor Products Vibrashine, Inc. P.O. Box 557 Taylorsville, MS 39168 (601) 785-9854 FAX (601) 785-9874 www.vibrashine.

Leaf River Outdoor Products Vibrashine, Inc. P.O. Box 557 Taylorsville, MS 39168 (601) 785-9854 FAX (601) 785-9874 www.vibrashine. MULTI-CARD PICTURE VIEWER Model PV-2.5 Leaf River Outdoor Products Vibrashine, Inc. P.O. Box 557 Taylorsville, MS 39168 (601) 785-9854 FAX (601) 785-9874 www.vibrashine.com 2 THANKS and WELCOME What does

More information

St art. rp m. Km /h 1:4 2.6 4:0 7.5 3:5 5.0 4:0 5.0 4:1 2.5 3:5 7.5 4:0 0.0 4:1 5.0 4:1 7.5 4:2 0.0 4:0 2.5 4:1 0.0 3:5 2.5.

St art. rp m. Km /h 1:4 2.6 4:0 7.5 3:5 5.0 4:0 5.0 4:1 2.5 3:5 7.5 4:0 0.0 4:1 5.0 4:1 7.5 4:2 0.0 4:0 2.5 4:1 0.0 3:5 2.5. modified 29/1/15 t 3:5 2.5 3:5 5. 3:5 7.5 4:. 4: 2.5 4: 5. 4: 7.5 4:1. 4:1 2.5 4:1 5. 4:1 7.5 4:2. Km /h 25 5 75 1 125 15 175 2 225 rp m 25 5 75 1 125 1 2 3 1:4 2.6 St art Content 1 THE TIRE RACK SUPERVISE

More information