Chapter 7 Building robot with MicroCamp kit

Size: px
Start display at page:

Download "Chapter 7 Building robot with MicroCamp kit"

Transcription

1 MicroCamp : ATmega8 Activity Kit Manual l 63 Chapter 7 Building robot with MicroCamp kit This chapter focus learning the applications of the MICROCAMP microcontroller. The building of a robot integrates knowledge and technology which includes electronics, programming, mechanical movements, and thinking process. The Microcamp Activity kit supports this concept. This kit includes all parts for building a simple mobile robot. Users can learn about programming and how to apply the microcontroller aspects via robotic activities. The Mobile robot in MICROCAMP has 2 DC Motor gearboxes for moving and 4 sensors for detecting external values. These are 2 touch sensors and 2 Infrared Reflector Line tracking sensors for use in black and white line following. Part list 48:1 DC motor gearbox x 2 Circle base plate MicroCamp board Box holder x 1 Wheel and Tire set x 2 Plastic spacer set x 1 Nut and Screw set x 1 Ploastic joiners (Straight, Right angle and Obtuse) Infrared reflector x 2 Swithc module x 2 2mm. Self-tapping screw x2 25mm. metal spacer x 2

2 64 l MicroCamp : ATmega8 Activity Kit Manual Construction 1. Fix on the 2 wheels with the rubber tires and attach them to the DC Gearbox with the 2 of the 2mm. self-tapping screws provided in the kit. 2. Install both the DC Gearboxes on the circular base plate at the specific positions shown in the picture with 4 of 3 x 6mm. machine screws. motor attached position 3. Insert the 3 x 10mm. machine screws through the hole at the corner of the Box holder with 25mm. and 2 of 3 mm. spacers. 25mm. metal spacer 2 of 3mm. plastic spacer Hole position for attached spacers 4. Place the Box holder from step 3 on the top of the Circle base plate and attach them with 3 x 10mm. screws at the specific positions. Hole position for attached box holder Hole position for attached box holder

3 MicroCamp : ATmega8 Activity Kit Manual l Insert a 3x15mm. machine screw through the Infrared Reflector sensor, followed by 2 of the 3mm. spacer. Do on both sides for this. 3 x 15mm. machine screw 3mm. spacer x 2 6. Attach both the Infrared Reflector structures from step 5 at the suitable holes at the bottom and front of the robot base. Tighten with a 3mm. nut. Hole position for attached Infrared Reflector sensor 7. Observe the distance from the floor to the sensors. The suitable distance is 3 to 5 mm. Distance is 3 to 5 mm. 8. Place MicroCamp board on the box holder. Connect sensor cables and motor cables following the diagrams shown. (P0 for Right sensor and P1 for Left sensor). Black Red Right sensor cable Black Left sensor cable Red Motor connection Infrared Reflector sensor connection

4 66 l MicroCamp : ATmega8 Activity Kit Manual 9. Attach the Straight joiner with robot base at front-right side by 3 x 10mm. machine screw and 3mm. nut. Attach 2 pieces. 10. Connect the Obtuse joiner at the end of Straight joiner. Attach the right angle joiner with Switch module by 3 x 10mm. machine screw and 3mm. nut. Make 2 sets. Bring these structures to connect at the end of the Obtuse joiner. Connect 2 sides. 11. Connect the Left Switch module cable to the P2 (PC2) connector and the Right Switch module cable to the P3 (PC3) connector. Put 4 AA batteries into battery holder at the back of MicroCamp board. The MicroCamp robot is ready for programming now.

5 MicroCamp : ATmega8 Activity Kit Manual l 67 Learning about the Switch circuit The switch that is used with the MicroCamp has the following schematic: +V Signal connector LED1 R1 510 R2 10k R3 220 DATA Indicator Switch S1 GND Pressing the switch results in two occurrences. When the switch is not pressed, let the results be logic 1 When the switch is pressed, let the results be logic 0, and LED1 light up. Since the switch can give two results, it is considered to be a digital input component. More information of Infrared Reflector Signal connector +V OUT TCRT5000 GND 10k 510 Infrared Reflector sensor The heart of this sensor circuit is the sensor that detects reflections from infrared light. It consists of the Infrared LED which emits infrared light to the surface. Photo-transistors will then receive the reflected infrared lights. If no infrared light is received, the OUT terminal will have low voltage when measured. In the case that it receives infrared light, whether low or high current passes through the photo-transistor depends on the intensity of the light received which in turn varies according to the distance of the reflection. (Sensor TCRT5000 can be used at a distance of centimeters). Therefore, 0.5 5V can be measured at the OUT terminal, and the MicroCamp will get a value of 30 to 1023.

6 68 l MicroCamp : ATmega8 Activity Kit Manual Activity 1 Basic movement of MicroCamp robot Activity 1-1 Forward and Backward movement A1.1 Open the AVR Studio to create the new project and write the C program following the Listing A1-1. Build this project. A1.2 Connect the PX-400 programmer to the MicroCamp board on The MicroCamp robot at the In-System Prog. connector. Turn-on the Robot. Downlaod the HEX code to the robot. A1.3 Turn-off power and Remove the ISP cable. A1.4 Make sure the robot is on a flat surface. Turn-on the power and observe the operation. The MicroCamp robot moves forward. See both LED motor indicators light in green color. After 1 second, both indicators change color to red and the robot moves backward. If this is incorrect you will need to re-connect the motor cable to its opposite port / polarity. Do this until your robot moves correctly. Once its done, Use this motor port configuration for all your programming activities from now on. The robot will move forward and backward continually until you turn off its power. #include <in_out.h> #include <sleep.h> #include <motor.h> // Motor driver library void main() // Endless loop forward(100); // Move the robot forward. sleep(1000); // Delays 1 second. backward(100); // Move the robot backward. sleep(1000); // Delays 1 second. Listing A1-1 The C Program that allows the Microcamp Robot to move in circles.

7 MicroCamp : ATmega8 Activity Kit Manual l 69 Activity 1-2 Circle-shape movement control A1.5 Create a new project file and write the following C Codes shown in A1-2. A1.6 Connect the PX-400 programmer to the MicroCamp board on The MicroCamp robot at the In-System Prog. connector. Turn-on the Robot. Downlaod the HEX code to the robot. A1.7 Turn-off power and Remove the ISP cable. A1.8 Make sure the robot is on a flat surface. Turn-on the power and observe the robot. The robot will be activated when you press SW1 and move in circles continually until you press the SW2 to stop the robot movement. #include <in_out.h> #include <sleep.h> #include <motor.h> void main() while((in_d(2)==1)); // Loop for checking SW1 pressed motor(1,100); // Apply full power for Motor 1 motor(2,30); // Apply 30% power for Motor 2 while((in_d(3)==1)); // Loop for checking if SW2 pressed motor_off(); // Stop all motors. Program description In Listing A1-2, the forward and backward com-- mands are not used for driving the robot. The MOTOR function is used instead. This function can control both motor outputs separately. This means that you can control both the motor s speed differently. When both speeds are not equal, the robot will move towards the direction where the motor is of a lower speed. If the speed difference is great, the MicroCamp robot will move in circles. The While command is used in this program. If SW1 at PD2 port is being pressed, the LOGIC value of O is returned. The first conditional loop is false. It then continues with the second conditional loop. If SW2 at PD3 port is press, the Program will stop both motors. The Robot will stop its movement. Listing A1-2 The C program for MicroCamp robot move circle shape activity.

8 70 l MicroCamp : ATmega8 Activity Kit Manual Activity 1-3 Square-shape movement control A1.9 Create a new project file and write the following C Codes shown in A1-3. Connect the PX-400 programmer box to the MicroCamp board on The MicroCamp robot at the In- System Prog. connector. Turn-on the Robot. Downlaod the HEX code to the robot. A1.10 Turn-off power and Remove the ISP cable. Make sure the robot is on a flat surface. Turn-on the power and observe the robot. The robot will be activated if SW1 or SW2 is being pressed. If you Press SW1, the robot will move forward and turn left continually, making a square. If you press SW2, the operation is vice versa. #include <in_out.h> #include <sleep.h> #include <motor.h> void main() if (in_d(2)==0) forward(100); sleep(900); s_right(50); sleep(300); if (in_d(3)==0) forward(100); sleep(900); s_left(50); sleep(300); // Looping // Check SW1 pressing // Move forward with full speed 0.9 second // Turn right with 50% speed 0.3 second // Check SW2 pressing // Move forward with full speed 0.9 second // Turn left with 50% speed 0.3 second Press SW2 (Move forward and Turn right) Press SW1 (Move forward and Turn left) Listing A1-3 The C Program for movement selection of the Microcamp Robot.

9 MicroCamp : ATmega8 Activity Kit Manual l 71 Activity 2 Object detection with Collision Activity 2-1 Simple collision detection This activity is program the robot to detect the collision of both switches at the front of the MicroCamp robot. After a collision is encountered, the robot will move backward and change the its direction of movement. A2.1 Create a new project file and write the following C Codes shown in A1-4. Build this project. A2.2 Connect the PX-400 programmer box to the MicroCamp board on The MicroCamp robot at the In-System Prog. connector. Turn-on the Robot. A2.3 Download the HEX code to the robot. A2.4 Turn-off power and Remove the ISP cable. A2.6 Prepare the demonstration area by placing and securing boxes or objects on the surface. A2.7 Bring the robot into the demonstration area.turn-on the power and observe the robot. The MicroCamp robot will read both switch status from PD2 and PC3 port. If any switch is pressed or touches some object, the result is logic 0. In a normal operation, the robot will move forward continually. If the Left Switch module touches any object, the robot will move backward and change its moving direction to its right to avoid the object. If the Right Switch module touches any object, the robot will move backward and change its moving direction to its left to avoid the object.

10 72 l MicroCamp : ATmega8 Activity Kit Manual #include <in_out.h> #include <sleep.h> #include <motor.h> void main() while((in_d(2)==1)); if (in_c(2)==0) backward(100); // Loop until SW1 is pressed to start the program. // Repeat loop // Check status of the right switch. // If ther is a collision, the robot moves backward // for 0.4 second sleep(400); s_left(50); // and turns left for 0.3 second. sleep(300); else if (in_c(3)==0) // Check status of the left switch. backward(100); sleep(400); s_right(50); sleep(300); else forward(100); // If ther is a collision, the robot moves backward // for 0.4 second // and turns right 0.3 second. // No collision is deteced, // the robot moves forward continually. Robot attacks the object in the left. Robot attacks the object in the right. Listing A2-1 The C Program for Object Collision detection

11 MicroCamp : ATmega8 Activity Kit Manual l 73 Activity 2-2 Trapped in a corner situation When the Robot is in a corner, it is caught in between whereby to the left or right is a wall. This causes continous hitting of the walls and thus trapping the robot in this corner. The solution is to modify your exiting C Code from A2-1 to that which is shown in A2-2. A2.8 Create a new project file for making the C program according to Listing A2-2. A2.9 Connect the PX-400 programmer box to the MicroCamp board on The MicroCamp robot at the In-System Prog. connector. Turn-on the Robot. A2.10 Prepare the demonstration area by placing and securing boxes or objects on the surface. A2.11 Bring the robot into the demonstration area.turn-on the power and observe the robot. The robot will move forward and check for collision. If this happens over 5 times consecutively, the robot will spin 180 degrees to change its direction. #include <in_out.h> #include <sleep.h> #include <motor.h> #include <sound.h> void main() unsigned char cnt_=0; while((in_d(2)==1)); sound(3000,100); if (in_c(2)==0) if ((cnt_%2)==0) // Sound library // Declare variable for counting the number of // collision both left and right. // Wait for SW1 is pressed to start operation // Beep at once // Looping // Check the right-side collision // Check the counter as even number or not. // If yes, means the previous collision is left- // side collision. // Increment the counter // If not left-side collision, // clear the counter // Move backward 0.4 second cnt_++; else cnt_=0; backward(100); sleep(400); // s_left(50); // Turn left if (cnt_>5) // Check the counter over 5 or not. sleep(700); // If over, turn left more 0.7 second. sound(3000,100); // Drive sound to piezo speaker cnt_=0; // Clear counter Listing A2-2 The C program for MicroCamp robot in Trapping wall solution activity (continue..)

12 74 l MicroCamp : ATmega8 Activity Kit Manual else // If counter is less than 5, sleep(300); // Set time value for turning to 0.3 second. else if (in_c(3)==0) // Check the leftt-side collision if ((cnt_%2)==1) // Counter is odd number or not. // If yes, the previous collision is right-side. cnt_++; // Increment counter else cnt_=0; // If not, clear counter backward(100); // Robot move backward for 0.4 second sleep(400); // s_right(50); // Turn right for 0.3 second sleep(300); // else // If not collision, move forward. forward(100); Listing A2-2 The C program for MicroCamp robot in Trapping wall solution activity (final)

13 MicroCamp : ATmega8 Activity Kit Manual l 75 Activity 3 Line tracking robot From the 2 first activities, these show how to read the digtal input signal and to get the data to control robot movement. In this activity, there will be many activities about reading analog inputs and processing the data to detect black and white areas. It also detects Black and white line to control the robot to move along the line with conditions. The MicroCamp robot has 5 analog inputs that directly connects to the PC0 to PC4 of ATmega8 microcontroller. This microcontroller contains the 10-bit analog to digital converter (ADC) module. The digital conversion data is 0 to 1023 in decimal number format. C programming for this activity require a library file. It is the analog.h file. Functions in this library will define relate the input port to the analog input and reads data from ADC module to store in its memory. The resulting data range is 0 to 1023 in decimals or 0000H to 03FFH in hexadecimals. The important devices in this activity is the 2 Infrared Reflector modules. They are installed at the bottom of the robot base. They are used to detect the surface s color (black and white) including the white and black line. The Line tracking robot activity is the classic activity. It shows the basic robot s programming performance. Activity 3-1 Testing black and white area The MicroCamp robot is attached with 2 of Infrared Reflector module at bottom of the robot base ready. Thus, this activity will only dwell on programming. Before develop the robot to track the line, developers must program the robot to detect the difference between black and white color surface. (A) White surface testing This sub-activity presents how to detect the white surface. The Listing A3-1 is C program for testing Infrared Reflector operation. After execution, the program will wait for SW1 or SW2 pressing. If press SW1 : select to read data from P0 or PC0 analog port If press SW2 : select to read data from P1 or PC1 analog port After pressing the switch, the program will read data at the port pin continuously and will not switch to read another sensor unless the RESET button is pressed. Developers must press both switches to get the sensor s data.

14 76 l MicroCamp : ATmega8 Activity Kit Manual #include <in_out.h> #include <sound.h> #include <analog.h> void main() if((in_d(2)==0)) if (analog(0)>350) sound(3000,100); if((in_d(3)==0)) if (analog(1)>350) sound(3000,100); // Analog reading library // Loop for waiting the key selection to // read P0 or P1 // Check SW1 pressing // Repeat this loop // Read the value from P0 and check the // white surface. // If the white surface is deteced, // drive the sound to speaker. // Check SW2 pressing // Repeat this loop // Read the value from P1 and check the // white surface. // If the white surface is deteced, // drive the sound to speaker. Listing A3-1 The C program for MicroCamp robot in White surface testing activity Compare the sensor s data with the reference data; 350. If data values are more than 350, the color that is detected is white color. If data values are less than 350, the color that is detected is black color. After detect the white surface ready, program will send the sound signal to piezo speaker. A3.1 Make the black & white testing sheet. The white surface area is 30 x 30 cm. and black surface is 30 x 30cm. A3.2 Create the new project file and make the C program following the Listing A3-1. Build this project file. A3.3 Connect the PX-400 programmer box with MicroCamp robot and download the HEX code to the robot.

15 MicroCamp : ATmega8 Activity Kit Manual l 77 A3.4 Place the robot on the black surface first. Turn on the power and press SW1 switch. The Robot does not move. A3.5 Place the robot on the white surface and try to roll the robot. The robot produces sounds when its on a white surface. A3.6 Press the RESET switch. Place the robot on the black surface again. Press switch SW2 to test the operation of the Infrared Reflector at P1 port. Observe the robot s operation. After press SW2, robot will get data from sensors at P1 port and compare the reference value ; 350. If the reading value more than 350, means the robot detects the white area. It send sound signal to drive a piezo speaker. From step A3.6, robot detects the black surface then do not work anything. A3.7 Place the robot on the white surface and try to roll the robot. Robot drives sound always above the white surface. A3.8 If the robot cannot drive the signal when placed on the white surface in testing. The solution is (1) Decrease the reference value from 350 but not lower 100 (2) Adjust the sensor position to decrease the distance from the floor. A3.9 The Listing A3-2 is C program for testing the black surface. Developers can test with this program to check the black surface detection of robot to make sure the robot can detect white and black surface well. The procedure is same in step A3.4 to A3.8. But the decision criteria will change from higher 350 to lower 350 instead.

16 78 l MicroCamp : ATmega8 Activity Kit Manual #include <in_out.h> #include <sound.h> #include <analog.h> void main() P0 or P1 if((in_d(2)==0)) if (analog(0)<350) sound(3000,100); if((in_d(3)==0)) if (analog(1)<350) sound(3000,100); // Analog reading library // Loop for waiting key selection to read // Check SW1 pressing // Repeat this loop // Read the value from P0 and check the // black surface. // If the black surface is detected, // drive the sound to speaker. // Check SW2 pressing // Repeat the loop // Read the value from P1 and check the // black surface. // If the black surface is deteced, // drive the sound to speaker. Listing A3-2 The C program for MicroCamp robot check the Black surface activity

17 MicroCamp : ATmega8 Activity Kit Manual l 79 Activity 3-2 Robot moves along the black line The robot moving along the line has 3 scenarioes. (1) Both sensors read values that are white : The robot will move forward. Thus, this program is written so that the robot moves forward normally. (2) The left sensor reads black while the right sensor reads white : This occurs when the robot is slightly turned to the right. Thus, the program is written for the robot to move back left to resume its normal path. (3) The left sensor read white while the right sensor reads black : This occurs when the robot is slightly turned to the left. Thus, the program is written for the robot to move back to the right to resume its normal path. From all scenarioes, can make the C program in the Listing A3-3. Scenario-1 Both sensors put across Scenario-2 Left sensor detects the line Scenario-3 Right sensor detects the line A3.10 Make the simple black line sheet. It has not the cross line. Most area is white color. Size of sheet can determine suitable for your robot. A3.11 Create the new project file and make the C program following the Listing A3-3. Build this project file. A3.12 Connect the PX-400 programmer box with MicroCamp robot and download the HEX code to the robot. Turn off power and unplug ISP cable from the robot.

18 80 l MicroCamp : ATmega8 Activity Kit Manual #include <in_out.h> #include <sound.h> #include <analog.h> #include <motor.h> unsigned int AD0=350,AD1=350; void main() while((in_d(2)==1)); if((analog(0)>ad0)&&(analog(1)>ad1)) forward(100); if (analog(0)<ad0) s_left(100); if (analog(1)<ad1) s_right(100); // Motor diver library // Determine the sensor reference // value. // Wait pressing SW1 to start the // program // Both sensor detect the white // surface. // Move forward // Left sensor detects black line. // Turn left // Right sensor detects black line. // Turn right Listing A3-3 The C program for controlling the MicroCamp robot to moves along the black line A3.13 Place the robot across the black line on the sheet. Turn on power and press SW1 switch. Robot will move along the black line. It is possible that the robot moves out of the line. You can improve the precision by editing the program with adjusting the sensor reference value and adjust to the position of both the Infrared Reflector sensors.

19 MicroCamp : ATmega8 Activity Kit Manual l 81 Activity 3-3 Line crossing detection From the activity 3-2, you can improve the MicroCamp robot so that it moves along the black line and detect the junction or line with same 2 sensors. One thing to do is edit the program. When the robot moves to line crossing, both sensors will detect black line. You must add the program for support this scenario. The improved C program is shown in the Listing A3-4 A3.14 Improve the simple black line sheet from Activity 3-2. Add some cross lines. The number will depend on your inquiry. A3.15 Create the new project file and make the C program following the Listing A3-4. Build this project file. A3.16 Connect the PX-400 programmer box with MicroCamp robot and download the HEX code to the robot. Turn off power and unplug ISP cable from the robot. A3.17 Place the robot across the black line on the sheet. Turn on power and press SW1 switch. Robot will move along the black line. When the robot detects the crossing, it will brake and drive sound once. When it finds the second crossing, the robot will drive sound twice and this will increase for the subsequent crossings. Note : In the motor brake operation, robot will stop and lock the motor s shaft immediately. But sometimes, this is not enough. You must program the robot to move backwards for a short time. This will cause the robot to stop at its position.

20 82 l MicroCamp : ATmega8 Activity Kit Manual #include <in_out.h> #include <sound.h> #include <analog.h> #include <motor.h> unsigned int AD0=350,AD1=350; unsigned char i=0,j=0; void main() while((in_d(2)==1)); to // Motor control library // Sensor reference value // Crossing counter variable // Wait for SW1 to be pressed to // start if((analog(0)<ad0)&&(analog(1)<ad1)) // Detect line-crossing. j++; backward(30); // Move backward for a short time // to brake. sleep(10); motor_stop(all); // Motor brake function for (i=0;i<j;i++) // Repeat the loop // line-crossing detection sound(2500,100); sleep(50); // Drive sound forward(100); // Move forward to closs over sleep(300); // the line. if((analog(0)>ad0)&&(analog(1)>ad1)) // Both sensor detect white surface. forward(100); // Move forward if (analog(0)<ad0) // Left sensor detects black line. s_left(100); // Turn left if (analog(1)<ad1) // Right sensor detects black line. s_right(100); // Turn right Listing A3-4 The C program for controlling the MicroCamp robot to moves along the black line and detect the line-crossing.

The fi rst programmable robot kit for everyone

The fi rst programmable robot kit for everyone The fi rst programmable robot kit for everyone Fun with learning the programmable ab robotic kit. Includes building the robot platform and learning the programming min by Logo language with iconic and

More information

ROBOT LINE TRACKING MOUSE KIT C-9801

ROBOT LINE TRACKING MOUSE KIT C-9801 ROBOT LINE TRACKING MOUSE KIT TOOLS you'll need Alimentation 4 batteries 1,5 V AA (not included) The mouse is a line follower robot that follows a black line (or any other color) on a white background

More information

FOOTBALLER ROBOT KIT C-9893

FOOTBALLER ROBOT KIT C-9893 FOOTBALLER ROBOT KIT C-9893 NOTE: This kit is recommended for children aged 14 years, always accompanied by an adult www.cebekit.com - info@cebekit.com Contents Multi-Channel I/R Remote Control Box: 1.

More information

DT-ROBOT Line Follower

DT-ROBOT Line Follower DT-ROBOT Line Follower Trademarks & Copyright AT, IBM, and PC are trademarks of International Business Machines Corp. Pentium is a registered trademark of Intel Corporation. Windows is a registered trademark

More information

Experimental Procedure

Experimental Procedure 1 of 14 9/10/2018, 11:38 AM https://www.sciencebuddies.org/science-fair-projects/project-ideas/robotics_p028/robotics/obstacle-avoiding-robot (http://www.sciencebuddies.org/science-fair-projects /project-ideas/robotics_p028/robotics/obstacle-avoiding-robot)

More information

THE COMPLETE ALL IN ONE ROBOT 360 NANO BOT

THE COMPLETE ALL IN ONE ROBOT 360 NANO BOT THE COMPLETE ALL IN ONE ROBOT 360 NANO BOT LINE FOLLOWER FIVE LINE SENSORS FOR SCANNING WHITE OR BLACK LINE OBSTACLE AVOIDER TWO OBSTACLE SENSORS CAN DETECT OBSTACLES AND MEASURE DISTANCE BLUETOOTH CONTROL

More information

Arduino Robots Robot Kit Parts List

Arduino Robots Robot Kit Parts List Arduino Robots Robot Kit Parts List (1) Metal Chassis (2) Push Button Activators (2) Servo Motors w/ Cross Wheels (2) IR Receivers (1) Control Board (1) Piezo Speaker (1) Dual-Sided Screwdriver (1) Cotter

More information

Discover Robotics & Programming CURRICULUM SAMPLE

Discover Robotics & Programming CURRICULUM SAMPLE OOUTLINE 5 POINTS FOR EDP Yellow Level Overview Robotics incorporates mechanical engineering, electrical engineering and computer science - all of which deal with the design, construction, operation and

More information

RoboStamp Basic Software (A tutorial by Technotutorz)

RoboStamp Basic Software (A tutorial by Technotutorz) RoboStamp Basic Software (A tutorial by ) The Robostamp robotic kit is one of the robots used as standard in the workshops. Two versions can be built up: the izebot and the RoboTank. The Robostamp can

More information

Rover 5. Explorer kit

Rover 5. Explorer kit Rover 5 Explorer kit The explorer kit provides the perfect interface between your Rover 5 chassis and your micro-controller with all the hardware you need so you can start programming right away. PCB Features:

More information

Bitty Rover. Recommended Age: 12 and up Difficulty Level: 3/5 (Soldering Required, programming, connecting wires, small parts choking hazard)

Bitty Rover. Recommended Age: 12 and up Difficulty Level: 3/5 (Soldering Required, programming, connecting wires, small parts choking hazard) Bitty Rover Bitty Rover V2.3 Assembly Instructions Recommended Age: 12 and up Difficulty Level: 3/5 (Soldering Required, programming, connecting wires, small parts choking hazard) www.rabbitrobots.com

More information

Inter-Dimensional Technologies, Inc.

Inter-Dimensional Technologies, Inc. Inter-Dimensional Technologies, Inc. Better Technology...For A Better Life. EPC-IRD1 Electronic Pedestrian Counter User s Manual Manual Last Updated: April 2017 This User s Manual is available on our website,

More information

DIY Line Tracking Smart Car with AT89C2051

DIY Line Tracking Smart Car with AT89C2051 DIY Line Tracking Smart Car with AT89C2051 1. Introduction: A DIY Smart Car design involves mechanical structure, electronic based sensor principle, automatic control, and even knowledge of microcontroller

More information

Fingerprint Access Control F1. User Manual

Fingerprint Access Control F1. User Manual Fingerprint Access Control F1 User Manual 1. Introduction F1 is a metal shell standalone fingerprint access control, using the America Atmel s MCU, with precise electron circuit and good productive technology.

More information

TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT

TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT I Contents Overview TA0139... 1 Getting started: Arduino 2 Wheel Drive Wireless Bluetooth Robot Kit using Arduino UNO... 1 2.1. What

More information

QRPGuys Single Lever Keyer/Paddle

QRPGuys Single Lever Keyer/Paddle QRPGuys Single Lever Keyer/Paddle First, familiarize yourself with the parts and check for all the components. If a part is missing, please contact us and we will send one. You must use qrpguys.parts@gmail.com

More information

EV3 Programming Workshop for FLL Coaches

EV3 Programming Workshop for FLL Coaches EV3 Programming Workshop for FLL Coaches Tony Ayad 2017 Outline This workshop is intended for FLL coaches who are interested in learning about Mindstorms EV3 programming language. Programming EV3 Controller

More information

Q2 XBee Handheld Controller Assembly Guide

Q2 XBee Handheld Controller Assembly Guide Q2 XBee Handheld Controller Assembly Guide Copyright Quantum Robotics Inc. Q2 Controller V1.0 1 Parts List: The kit comes with 14 individual bags. 1. Case Top and Bottom 2. Case Screw Package containing:

More information

Installing 6 Indexer: PRS Standard Tools

Installing 6 Indexer: PRS Standard Tools 888-680-4466 ShopBotTools.com Installing 6 Indexer: PRS Standard Tools Copyright 2016 ShopBot Tools, Inc. page 1 Copyright 2016 ShopBot Tools, Inc. page 2 Table of Contents Overview...5 Installing the

More information

Cheap Control Systems. Cheap Six Channel (C6C) Servo Controller Version 2.3 OVERVIEW

Cheap Control Systems. Cheap Six Channel (C6C) Servo Controller Version 2.3 OVERVIEW Cheap Control Systems Cheap Six Channel (C6C) Servo Controller Version 2.3 The Cheap Six Channel (C6C) Servo Controller is a low cost embedded controller that allows the Sony Playstation 2 (PS2) game pad

More information

PING))) Kit for Stingray (#28985)

PING))) Kit for Stingray (#28985) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Obstacle Avoiding Robot

Obstacle Avoiding Robot Brigosha Technologies Obstacle Avoiding Robot Introduction An Obstacle Avoiding Robot may be defined as a robot which can avoid any unwanted obstacle in its path and is capable of changing its path. The

More information

SPIRIT. Phase 5 Analog Board Computer and Electronics Engineering

SPIRIT. Phase 5 Analog Board Computer and Electronics Engineering SPIRIT Phase 5 Analog Board Computer and Electronics Engineering In this exercise you will assemble the analog controller board and interface it to your TekBot. Print out the schematic, silkscreen and

More information

GV-EL124S Electric Strike

GV-EL124S Electric Strike GV-EL124S Electric Strike Featured with a built-in door status sensor, the GV-EL124S is a fail-secure electric strike, but it is field convertible from fail secure to fail safe. It can be mounted either

More information

Advance Robotics with Embedded System Design (ARESD)

Advance Robotics with Embedded System Design (ARESD) Advance Robotics with Embedded System Design (ARESD) LEARN HOW TO: Use Arduino hardware &Arduino programming for microcontroller based hobby project development Use WinAVRcross compiler formicrocontroller

More information

Assembly Manual for Mobile X-ray

Assembly Manual for Mobile X-ray Suitable for Kodak 2000, Kodak 2100, Kodak 2200 and Trophy Elytis - 12 th January 2011 William Green Page 1 of 8 Printed 12/01/2011, 2:07:42 PM Mobile X-ray Parts List 1. 6 x M10 x 65mm UNB CAP Bolts 2.

More information

LME Software Block Quick Reference 1. Common Palette

LME Software Block Quick Reference 1. Common Palette LME Software Block Quick Reference Common Palette Move Block Use this block to set your robot to go forwards or backwards in a straight line or to turn by following a curve. Define how far your robot will

More information

Elecraft W1 SWR/Wattmeter Enclosure by W8FGU

Elecraft W1 SWR/Wattmeter Enclosure by W8FGU Elecraft W1 SWR/Wattmeter Enclosure by W8FGU The W1 enclosure is made of Lexan, a polycarbonate, which is very strong. It also has a UV blocking coating on one side and was assembled carefully with this

More information

logic table of contents: squarebot logic subsystem 7.1 parts & assembly concepts to understand 7 subsystems interfaces 7 logic subsystem inventory 7

logic table of contents: squarebot logic subsystem 7.1 parts & assembly concepts to understand 7 subsystems interfaces 7 logic subsystem inventory 7 logic table of contents: squarebot logic subsystem 7.1 parts & assembly concepts to understand 7 subsystems interfaces 7 logic subsystem inventory 7 7 1 The Vex Micro Controller coordinates the flow of

More information

revolution How does the ibutton work? Full kit including PCB, PICAXE-08M chip and ibutton key. Spare ibutton Key

revolution How does the ibutton work? Full kit including PCB, PICAXE-08M chip and ibutton key. Spare ibutton Key AXE109S LOG020 Full kit including PCB, PICAXE-08M chip and ibutton key. Spare ibutton Key The ibutton is an electronic chip armoured in a 16mm stainless steel can. Because of this unique, durable package,

More information

Parts List Pictures for reference only

Parts List Pictures for reference only Ultimate Robot Kit MAKER WORKS TECHNOLOGY INC No. 426, F/4, Gonglehuating Business Building, Xinhu Road, Xixiang Sub-district, Bao an District, Shenzhen, 518102 China. Please contact with us if you need

More information

Goal: We want to build an autonomous vehicle (robot)

Goal: We want to build an autonomous vehicle (robot) Goal: We want to build an autonomous vehicle (robot) This means it will have to think for itself, its going to need a brain Our robot s brain will be a tiny computer called a microcontroller Specifically

More information

CINTENNA ANTENNA REPAIR GUIDE

CINTENNA ANTENNA REPAIR GUIDE The Cintenna is a great tool when looking to transmit WIRELESS DMX data over obstacles or hard to reach places. Wireless DMX can have its issues when not having a good line of sight between the transmitter

More information

Nov. 07, 2013 p. 5 - changed the B axis unit value to from Changed by Randy per Frank s request.

Nov. 07, 2013 p. 5 - changed the B axis unit value to from Changed by Randy per Frank s request. Correction notes Nov. 07, 2013 p. 5 - changed the B axis unit value to 45.1389 from 40.0000. Changed by Randy per Frank s request. Jan. 22, 2018 p. 5 - changed the B axis unit value and corresponding picture

More information

Modern Robotics Inc. Sensor Documentation

Modern Robotics Inc. Sensor Documentation Sensor Documentation Version 1.0.1 September 9, 2016 Contents 1. Document Control... 3 2. Introduction... 4 3. Three-Wire Analog & Digital Sensors... 5 3.1. Program Control Button (45-2002)... 6 3.2. Optical

More information

SERIES 5 TABLES/BENCH

SERIES 5 TABLES/BENCH Wire Manager Driveshaft Driveshaft Cover Stretcher Power Cable Low-Voltage Cable Power Supply Master Motor (can be on either side) Controller Controller Cable Lifting Column Foot SERIES 5 TABLES/BENCH

More information

Figure 18: Basic input port drawing.

Figure 18: Basic input port drawing. Appendix A Hardware Inputs The mx_ctlr.0 board has several different types of inputs and outputs allowing for a wide range of functions and actions. The inputs for the board can be broken into three basic

More information

AlteraBot Self-Test User Manual A Hardware Evaluation Guide for ECE 2031

AlteraBot Self-Test User Manual A Hardware Evaluation Guide for ECE 2031 AlteraBot Self-Test User Manual A Hardware Evaluation Guide for ECE 2031 Prepared For ECE 2031 Students Prepared By Shane Connelly May 2, 2005 1 Table of Contents Section 1: Scope 3 Introduction 3 System

More information

Power Cable. Low-Voltage Cable

Power Cable. Low-Voltage Cable Troubleshooting Guide Power Cable Low-Voltage Cable Wire Manager Power Supply Driveshaft Driveshaft Cover Master Motor (can be on either side) Controller Controller Cable Lifting Column Foot Stretcher

More information

AVR 40 Pin Rapid Robot controller board

AVR 40 Pin Rapid Robot controller board AVR 40 Pin Rapid Robot controller board User Manual Robokits India http://www.robokits.org info@robokits.org - 1 - Thank you for purchasing the AVR 40 Pin Rapid Robot controller board. This unit has been

More information

Bolt 18F2550 System Hardware Manual

Bolt 18F2550 System Hardware Manual 1 Bolt 18F2550 System Hardware Manual Index : 1. Overview 2. Technical specifications 3. Definition of pins in 18F2550 4. Block diagram 5. FLASH memory Bootloader programmer 6. Digital ports 6.1 Leds and

More information

Section 3 Board Experiments

Section 3 Board Experiments Section 3 Board Experiments Section Overview These experiments are intended to show some of the application possibilities of the Mechatronics board. The application examples are broken into groups based

More information

Robolab. Table of Contents. St. Mary s School, Panama. Robotics. Ch. 5: Robolab, by: Ernesto E. Angulo J.

Robolab. Table of Contents. St. Mary s School, Panama. Robotics. Ch. 5: Robolab, by: Ernesto E. Angulo J. Robolab 5 Table of Contents Objectives...2 Starting the program...2 Programming...3 Downloading...8 Tools...9 Icons...9 Loops and jumps...11 Multiple tasks...12 Timers...12 Variables...14 Sensors...15

More information

Model: K0073. Smart Robot Car Kit Quick Start Guide

Model: K0073. Smart Robot Car Kit Quick Start Guide Model: K0073 Smart Robot Car Kit Quick Start Guide Smart Robot Car Kit Smart Robot Car Kit M2 nuts 4 pieces M24 micro servo screws 2 bars PTZ self-tapping screws 4 bars M210 round head screws 4 bars 15

More information

If you note any errors, typos, etc. with this manual or our software libraries, let us know at

If you note any errors, typos, etc. with this manual or our software libraries, let us know at Oregon State University Robotics Club ORK 2011 Programming Guide Version 1.0 Updated: 10/28/2011 Note: Check back for more revisions and updates soon! If you note any errors, typos, etc. with this manual

More information

Manual Version March 2007

Manual Version March 2007 Manual Version 1.1 - March 2007 Page 1 Table of Contents Section1: 6922 Line Board Build... 3 6922 Line Board Version Notes... 5 6922 Line Board Build - HARD-WIRED VERSION... 5 Final Connections and Checks

More information

OPERATING PRINCIPLES FOR PHOTOELECTRIC SENSORS

OPERATING PRINCIPLES FOR PHOTOELECTRIC SENSORS OPERATING PRINCIPLES FOR PHOTOELECTRIC SENSORS Photoelectric These sensors use light sensitive elements to detect objects and are made up of an emitter (light source) and a receiver. Four types of photoelectric

More information

Heightronic 235D Assembly & Operation

Heightronic 235D Assembly & Operation Firmware version A1.002 Heightronic 235D Assembly & Operation Table of Contents TABLE OF CONTENTS... 2 SECTION GENERAL INFORMATION... 3 INTRODUCTION... 3 SPECIFICATIONS... 3 SECTION 2 ASSEMBLY & INSTALLATION...

More information

Robotics Adventure Book Scouter manual STEM 1

Robotics Adventure Book Scouter manual STEM 1 Robotics Robotics Adventure Book Scouter Manual Robotics Adventure Book Scouter manual STEM 1 A word with our Scouters: This activity is designed around a space exploration theme. Your Scouts will learn

More information

MicroCamp ATmega8 Activity Kit manual

MicroCamp ATmega8 Activity Kit manual MicroCamp : ATmega8 Activity Kit Manual l 1 MicroCamp ATmega8 Activity Kit manual www.inex.co.th www.inexglobal.com 2 l MicroCamp : ATmega8 Activity Kit Manual Content Chapter 1 MicroCamp Activity kit

More information

Project Development & Background. Equipment List. DC Power Adapter (9V,2A) Ball Castor 7805 IC L293D IC Breadboard & Jumper wires

Project Development & Background. Equipment List. DC Power Adapter (9V,2A) Ball Castor 7805 IC L293D IC Breadboard & Jumper wires Line Following Robot With Color Detection Authors : Md. Risat Abedin, Faysal Alam, Ajwad Muhtasim Dip Department of Electrical & Electronic Engineering Ahsanullah University of Science & Technology Email:

More information

Quick Guide WARNING: CHOKING HAZARD - Small parts. Not for children under 3 years old. mbot is an educational robot kit for beginners to get hands-on

Quick Guide WARNING: CHOKING HAZARD - Small parts. Not for children under 3 years old. mbot is an educational robot kit for beginners to get hands-on MAKER WORKS TECHNOLOGY INC Technical support: support@makeblock.cc www.makeblock.cc Great tool for beginners to learn graphical programming, electronics and robotics. :@Makeblock : @Makeblock : +Makeblock

More information

OpenSprinkler v2.2u Build Instructions

OpenSprinkler v2.2u Build Instructions OpenSprinkler v2.2u Build Instructions (Note: all images below are 'clickable', in order for you to see the full-resolution details. ) Part 0: Parts Check Part 1: Soldering Part 2: Testing Part 3: Enclosure

More information

Create moving images in forward and reverse with your Arduino when you connect a motor to an H-bridge and some still images BATTERY POTENTIOMETER

Create moving images in forward and reverse with your Arduino when you connect a motor to an H-bridge and some still images BATTERY POTENTIOMETER ZOETROPE Create moving images in forward and reverse with your Arduino when you connect a motor to an H-bridge and some still images Discover : H-bridges Time : 30 minutes Level : Builds on projects :

More information

Megatouch FORCE Monitor Chassis Board Replacement

Megatouch FORCE Monitor Chassis Board Replacement Megatouch FORCE Monitor Chassis Board Replacement Visit the Merit Industries, Inc. Web site http://www.meritind.com merit industries, inc. PM0337-01 Rev C Table of Contents FORCE Classic Monitor Chassis

More information

BLUETOOTH AMPLIFIER KIT

BLUETOOTH AMPLIFIER KIT PRODUCT INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS CREATE YOUR OWN WIRELESS SPEAKER WITH THIS BLUETOOTH AMPLIFIER KIT Version 1.2 Index of Sheets

More information

BalloonSat Sensor Array

BalloonSat Sensor Array BalloonSat Sensor Array The PICAXE-08M2 in the BalloonSat flight computer is a digital device. Being digital, it functions best with a series of on and off voltages and does not interact very well with

More information

Figure 1. The completed programming kit List of Parts

Figure 1. The completed programming kit List of Parts Many NearSys kits are programmed through a three pin header soldered to the PCB. Since a three pin receptacle is not a common termination for a serial cable, this kit contains the parts to make one. In

More information

The Power Turtle Drivetrain

The Power Turtle Drivetrain The Power Turtle Drivetrain Before you start, make sure you have the right parts available. Set these parts on a table, and put all other parts away for now. Brain & Battery 4 small gears 1 4x8 plate 4

More information

EQ573 Assembly guide. EQ573 Assembly guide Main board 1. Diodes. 2. Resistors (1) 3. Test pins. 4. Ceramic capacitors.

EQ573 Assembly guide. EQ573 Assembly guide Main board 1. Diodes. 2. Resistors (1) 3. Test pins. 4. Ceramic capacitors. EQ573 Assembly guide Safety warning The kits are main powered and use potentially lethal voltages. Under no circumstance should someone undertake the realisation of a kit unless he has full knowledge about

More information

C Language Reference for ActivityBot. Driving the robot a specific distance or a specific amount of turn

C Language Reference for ActivityBot. Driving the robot a specific distance or a specific amount of turn Code for Driving ActivityBot C Language Reference for ActivityBot Jeffrey La Favre - November 4, 2015 There are two types of functions for driving the robot. The first kind specifies a specific distance

More information

Digital Keypad Introduction

Digital Keypad  Introduction K2 Digital Keypad Introduction The K02 uses the latest microprocessor technology to operate door strikes and security systems that require a momentary (timed) or latching dry contact closure. All programming

More information

OpenSprinkler v2.1u Build Instructions

OpenSprinkler v2.1u Build Instructions OpenSprinkler v2.1u Build Instructions (Note: all images below are 'clickable', in order for you to see the full-resolution details. ) Part 0: Parts Check Part 1: Soldering Part 2: Testing Part 3: Enclosure

More information

Number Name Description Notes Image 0101 Resistor, 100 ohm. brown-black-browngold. ¼ watt, 5% tolerance, red-red-brown-gold. brown-black-red-gold.

Number Name Description Notes Image 0101 Resistor, 100 ohm. brown-black-browngold. ¼ watt, 5% tolerance, red-red-brown-gold. brown-black-red-gold. Passive Components 0101 Resistor, 100 brown-black-browngold. 690620 0102 Resistor, 220 red-red-brown-gold. 690700 0103 Resistor, 1000 brown-black-red-gold. 690865 0104 Resistor, 10k 0201 Capacitor, 1 µf,

More information

USER MANUAL ARDUINO I/O EXPANSION SHIELD

USER MANUAL ARDUINO I/O EXPANSION SHIELD USER MANUAL ARDUINO I/O EXPANSION SHIELD Description: Sometimes Arduino Uno users run short of pins because there s a lot of projects that requires more than 20 signal pins. The only option they are left

More information

Robotic Kits. AVR SWARM Robot Kits

Robotic Kits. AVR SWARM Robot Kits Robotic Kits The Nexus Swarm Robot Kit is the official robot for the Nexus competitions. It is a complete, high-performance mobile platform featuring two gearmotors, five reflectance sensors, two IR Cube

More information

REQUIRED MATERIALS Epiphany-DAQ board Wire Jumpers Switch LED Resistors Breadboard Multimeter (if needed)

REQUIRED MATERIALS Epiphany-DAQ board Wire Jumpers Switch LED Resistors Breadboard Multimeter (if needed) Page 1/6 Lab 1: Intro to Microcontroller Development, 06-Jan-16 OBJECTIVES This lab will introduce you to the concept of developing with a microcontroller while focusing on the use of General Purpose Input/Output

More information

Aeotec Multisensor Gen5 has been crafted to power connected lighting using Z-Wave Plus. It is powered by Aeotec s Gen5 technology.

Aeotec Multisensor Gen5 has been crafted to power connected lighting using Z-Wave Plus. It is powered by Aeotec s Gen5 technology. Multisensor Gen5 user guide. Modified on: Thu, 9 Mar, 2017 at 5:41 PM Aeotec by Aeon Labs Multisensor Gen5. Aeotec Multisensor Gen5 has been crafted to power connected lighting using Z-Wave Plus. It is

More information

Blue Point Engineering

Blue Point Engineering DMX 8-Channel Driver Overview he DMX 8- Channel Driver board is designed to provide 8- consecutive channels of standard or extended range movements for analog type R/C s with output control pulses from

More information

Micro USB Lamp Kit ESSENTIAL INFORMATION. Version 2.0 DESIGN A STYLISH LAMP WITH THIS

Micro USB Lamp Kit ESSENTIAL INFORMATION. Version 2.0 DESIGN A STYLISH LAMP WITH THIS ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS DESIGN A STYLISH LAMP WITH THIS Micro USB Lamp Kit Version 2.0 Build Instructions Before

More information

Final Design Report. Team Name: No Rest for the Weary

Final Design Report. Team Name: No Rest for the Weary EEL 4924 Electrical Engineering Design (Senior Design) Final Design Report 4 August 2009 Project Title: SLEEP Team Name: No Rest for the Weary Team Members: Renard Sumlar lrsum825@ufl.edu Brad Bromlow

More information

If I wanted to connect an LED and little light bulb and have them switch on and off with one switch, my schematic would look like the one below.

If I wanted to connect an LED and little light bulb and have them switch on and off with one switch, my schematic would look like the one below. Relays Relays are great tools for turning on and off entire circuits, either with a small control switch, or with a microcontroller like the Arduino. To understand how relays are useful and how to control

More information

Another Forking Robot

Another Forking Robot Another Forking Robot A.k.a. AFR Matt Silverman IMDL Summer 99 Table of Contents Abstract Page 3 Executive Summary 4 Introduction 5 Integrated System 5 Mobile Platform 6 Actuation 6 Sensors 6 Behaviors

More information

1 in = 25.4 mm 1 m = ft g = 9.81 m/s 2

1 in = 25.4 mm 1 m = ft g = 9.81 m/s 2 ENGR 122 Section Instructor: Name: Form#: 52 Allowed materials include calculator (without wireless capability), pencil or pen. Honor Statement: On my honor, I promise that I have not received any outside

More information

-DTZ001- Stand-Alone Proximity Access Control. User Manual

-DTZ001- Stand-Alone Proximity Access Control. User Manual -DTZ001- Stand-Alone Proximity Access Control User Manual INTRODUCTION DTZ001 is a compact, waterproof stand-alone programmable access control system that provides proximity entry for up to 2000 users,

More information

BEST Control System. Dave Wilkerson. September 12, 2015

BEST Control System. Dave Wilkerson. September 12, 2015 BEST Control System BEST Robotics, Inc. Dave Wilkerson September 12, 2015 Copyright 2012 BEST Robotics, Inc. All rights reserved. 1 Servos Joystick Return Kit AAA Battery Charger Analog WiFi key USB/Tether

More information

Arduino Smart Robot Car Kit User Guide

Arduino Smart Robot Car Kit User Guide User Guide V1.0 04.2017 UCTRONIC Table of Contents 1. Introduction...3 2. Assembly...4 2.1 Arduino Uno R3...4 2.2 HC-SR04 Ultrasonic Sensor Module with Bracket / Holder...5 2.3 L293D Motor Drive Expansion

More information

Robotics Study Material School Level 1 Semester 2

Robotics Study Material School Level 1 Semester 2 Robotics Study Material School Level 1 Semester 2 Contents UNIT-3... 4 NXT-PROGRAMMING... 4 CHAPTER-1... 5 NXT- PROGRAMMING... 5 CHAPTER-2... 6 NXT-BRICK PROGRAMMING... 6 A. Multiple choice questions:...

More information

The basic product comes with the IRS5 control board, 3 internal cables, 1 external cable with a 5 volt adapter and a mounting bracket with hardware.

The basic product comes with the IRS5 control board, 3 internal cables, 1 external cable with a 5 volt adapter and a mounting bracket with hardware. Please read these instructions and watch the Installation Video before you proceed with the installation of the PC-IRS5-01. Installation Video: http://youtu.be/os98e32vhb4 The PC-IRS5-01 Infrared Receiver

More information

EE 354 August 1, 2017 Assembly of the AT89C51CC03 board

EE 354 August 1, 2017 Assembly of the AT89C51CC03 board EE 354 August 1, 2017 Assembly of the AT89C51CC03 board The AT89C51CC03 board comes as a kit which you must put together. The kit has the following parts: No. ID Description 1 1.5" x 3.25" printed circuit

More information

LumaRail Free Stand Bed Assist Rail with IntelliBrite LED Night Light

LumaRail Free Stand Bed Assist Rail with IntelliBrite LED Night Light LumaRail Free Stand Bed Assist Rail with IntelliBrite LED Night Light Assembly and Operation Instructions Thank you for investing in this premium Platinum Health product. Please carefully follow the assembly

More information

Self-leveling Laser Marker (4V1HXL)

Self-leveling Laser Marker (4V1HXL) Self-leveling Laser Marker (4V1HXL) Congratulations on your choice of this Self-leveling Laser Marker. For the purpose of long-term use of this instrument, we suggest you to read this instruction manual

More information

INTERFACING HARDWARE WITH MICROCONTROLLER

INTERFACING HARDWARE WITH MICROCONTROLLER INTERFACING HARDWARE WITH MICROCONTROLLER P.Raghavendra Prasad Final Yr EEE What is a Microcontroller? A microcontroller (or MCU) is acomputer-on-a-chip. It is a type of microprocessor emphasizing self-

More information

ARDUINO UNO R3 BASED 20A ROBOT CONTROL BOARD [RKI-1580] Page 1

ARDUINO UNO R3 BASED 20A ROBOT CONTROL BOARD [RKI-1580]   Page 1 ARDUINO UNO R3 BASED 20A ROBOT CONTROL BOARD [RKI-1580] http://www.robokitsworld.com Page 1 1. Introduction: The Arduino UNO R3 based 20A robot control board is a versatile motor controller for driving

More information

E3S-A. Built-in Amplifier Photoelectric Sensor (Medium Size) Ordering Information. Built-in Amplifier Photoelectric Sensors. Horizontal. 7 m.

E3S-A. Built-in Amplifier Photoelectric Sensor (Medium Size) Ordering Information. Built-in Amplifier Photoelectric Sensors. Horizontal. 7 m. Built-in Amplifier (Medium Size) ES-A CSM_ES-A_DS_E Be sure to read Safety Precautions on page 0. Ordering Information Built-in Amplifier s Red light Infrared light Sensing method Appearance Connection

More information

HOW TO INSTALL NEST BOX CAMERAS IN SCHWEGLER NO. 17 SWIFT NEST BOXES

HOW TO INSTALL NEST BOX CAMERAS IN SCHWEGLER NO. 17 SWIFT NEST BOXES HOW TO INSTALL NEST BOX CAMERAS IN SCHWEGLER NO. 17 SWIFT NEST BOXES By Lynda and Chris Huxley natureofireland@eircom.net January 2015 1. The nest box cameras are colour in daylight, plus infrared in darkness

More information

Button Code Kit. Assembly Instructions and User Guide. Single Button Code Entry System

Button Code Kit. Assembly Instructions and User Guide. Single Button Code Entry System Button Code Kit Single Button Code Entry System Assembly Instructions and User Guide Rev 1.0 December 2009 www.alan-parekh.com Copyright 2009 Alan Electronic Projects Inc. 1. Introduction... 4 1.1 Concept

More information

CP5176 Assembly guide. Soldering. CP5176 Assembly guide Main PCB PCB split. Document revision 2.1 Last modification : 12/11/17

CP5176 Assembly guide. Soldering. CP5176 Assembly guide Main PCB PCB split.  Document revision 2.1 Last modification : 12/11/17 CP5176 Assembly guide Safety warning The kits are main powered and use potentially lethal voltages. Under no circumstance should someone undertake the realisation of a kit unless he has full knowledge

More information

HUB-ee BMD-S Arduino Proto Shield V1.1

HUB-ee BMD-S Arduino Proto Shield V1.1 HUB-ee BMD-S Arduino Proto Shield V1.1 User guide and assembly instructions Document Version 0.5 Introduction & Board Guide 2 Schematic 3 Quick User Guide 4 Assembly Guide 6 Kit Contents 7 1) Diodes and

More information

Arduino Uno. Power & Interface. Arduino Part 1. Introductory Medical Device Prototyping. Digital I/O Pins. Reset Button. USB Interface.

Arduino Uno. Power & Interface. Arduino Part 1. Introductory Medical Device Prototyping. Digital I/O Pins. Reset Button. USB Interface. Introductory Medical Device Prototyping Arduino Part 1, http://saliterman.umn.edu/ Department of Biomedical Engineering, University of Minnesota Arduino Uno Power & Interface Reset Button USB Interface

More information

NISTA DEVICES GmbH 2013 All Rights Reserved. Door Access Control with the VoIP interface IP epcr Release 1.02

NISTA DEVICES GmbH 2013 All Rights Reserved. Door Access Control with the VoIP interface IP epcr Release 1.02 NISTA DEICES GmbH 2013 All Rights Reserved Door Access Control with the oip interface IP 39-60 epcr Release 1.02 1 NISTA DEICES GmbH 2013 All Rights Reserved IP Door Phones IP 39-60ePCR Quick Installation

More information

Part A: Monitoring the Rotational Sensors of the Motor

Part A: Monitoring the Rotational Sensors of the Motor LEGO MINDSTORMS NXT Lab 1 This lab session is an introduction to the use of motors and rotational sensors for the Lego Mindstorm NXT. The first few parts of this exercise will introduce the use of the

More information

COMP2121 Experiment 4

COMP2121 Experiment 4 COMP2121 Experiment 4 1. Objectives In this lab, you will learn AVR programming on Parallel input/output; Some typical input/output devices; and Interrupts 2. Preparation Before coming to the laboratory,

More information

robotics/ openel.h File Reference Macros Macro Definition Documentation Typedefs Functions

robotics/ openel.h File Reference Macros Macro Definition Documentation Typedefs Functions openel.h File Reference Macros #define EL_TRUE 1 #define EL_FALSE 0 #define EL_NXT_PORT_A 0 #define EL_NXT_PORT_B 1 #define EL_NXT_PORT_C 2 #define EL_NXT_PORT_S1 0 #define EL_NXT_PORT_S2 1 #define EL_NXT_PORT_S3

More information

Embedded Systems and Kinetic Art. CS5968: Erik Brunvand School of Computing. FA3800: Paul Stout Department of Art and Art History.

Embedded Systems and Kinetic Art. CS5968: Erik Brunvand School of Computing. FA3800: Paul Stout Department of Art and Art History. Embedded Systems and Kinetic Art CS5968: Erik Brunvand School of Computing FA3800: Paul Stout Department of Art and Art History Logistics Class meets Wednesdays from 3:05-6:05 We ll start meeting in MEB

More information

Logistics. Embedded Systems. Kinetic Art. This Class. Embedded Systems and Kinetic Art. Kinetic Art

Logistics. Embedded Systems. Kinetic Art. This Class. Embedded Systems and Kinetic Art. Kinetic Art Embedded Systems and Kinetic Art CS5968: Erik Brunvand School of Computing FA3800: Paul Stout Department of Art and Art History Logistics Class meets Wednesdays from 3:05-6:05 We ll start meeting in MEB

More information

OLOGY HEIGHT-ADJUSTABLE DESKS AND BENCHES. Troubleshooting Guide

OLOGY HEIGHT-ADJUSTABLE DESKS AND BENCHES. Troubleshooting Guide Troubleshooting Guide Power Cable Cantilevers Control Box Active Touch Controller Lifting Column Foot Understructure OLOGY HEIGHT-ADJUSTABLE DESKS AND BENCHES HOW THEY WORK Each Lifting Column contains

More information

LEGO BB-8 Release: LEGO BB-8. Learn how to automate a LEGO BB-8for motion, light, and sound using Crazy Circuits. Written By: Joshua

LEGO BB-8 Release: LEGO BB-8. Learn how to automate a LEGO BB-8for motion, light, and sound using Crazy Circuits. Written By: Joshua LEGO BB-8 Learn how to automate a LEGO BB-8for motion, light, and sound using Crazy Circuits. Written By: Joshua 2018 browndoggadgets.dozuki.com/ Page 1 of 18 INTRODUCTION We absolutely LOVE the new LEGO

More information

Phi-panel backpack assembly and keypad options Dr. John Liu 12/16/2012

Phi-panel backpack assembly and keypad options Dr. John Liu 12/16/2012 Phi-panel backpack assembly and keypad options Dr. John Liu 12/16/2012 1. Introduction:... 3 Currently available:... 3 2. Backpack assembly... 4 3. Connecting to a keypad... 6 4. Rotary encoder keypads...

More information

Instruction Manual. Model RBA18

Instruction Manual. Model RBA18 Instruction Manual Model RBA18 The Robo-Arm Kit for Arduino is designed to teach the following: 1. How to build a mechanical arm, piece-by-piece. 2. Basic workings of mechanical arm 3. Coding and control

More information