V3.2 UNIVERSAL PROJECT BOARD. UniBoard Updated 12th June E l e c t r o n i c A s s e m b l y G u i d e

Size: px
Start display at page:

Download "V3.2 UNIVERSAL PROJECT BOARD. UniBoard Updated 12th June E l e c t r o n i c A s s e m b l y G u i d e"

Transcription

1 V3.2 UNIVERSAL PROJECT BOARD UniBoard Updated 12th June 2007 E l e c t r o n i c A s s e m b l y G u i d e

2 1 Outline Please read the Disclaimer and Guarantee before commencing construction. T he UniBoard was designed to aid students in their initial tinkering with the Picaxe 08 and 08M range of microprocessor controllers. It is an easy to assemble board that can be tailored to many projects and demonstrations. UniBoard has the ability to be set up in a range of ways. The board features two high current outputs suitable for driving motors directly. UniBoard also has 3 low current outputs and a range of on board inputs including two light sensors and a pushbutton. The structure of UniBoard allows many experiments to be performed on the one board, eliminating the need for upgrades in equipment from one project board to another, or using a separate motor driver board. While UniBoard has 9 key tutorial tasks associated with it, we are sure you will find more ideas for projects as you go along! The key tutorials allow students to build the following exciting projects: Stop Light Simulator LED Chaser Egg Timer Light Direction Sensor Music Box Light Seeking Robot Line Following Robot Infra Red Communicator Lie Detector 1

3 UniBoard uses the renowned Picaxe processors from Microchip Inc and Revolution Education, These processors allow students to easily pick up the art of programming, electronics, and mechatronics within minutes of assembly. The UniBoard system allows students to explore all features of this magnificent chip. Key Features Two onboard high current outputs capable of driving up to 1 Amp each. Suitable for driving motors, relays and incandescent lamps. Three onboard multicolour LEDs show the status of each output Two onboard light sensors wired in resistance divider circuit to show direction of light. Pushbutton switch input onboard eliminates the need for extra wires off board Board is capable of becoming a mechatronics light-seeking robot with only the addition of two motors and two capacitors. (high current board not necessary) Regulated onboard power conditioning allows power input from 4.5 to 9V. How it works: summary At the heart of UniBoard is the Picaxe 08M processor. The high current outputs are connected to software pin 0 and pin 1. The three LED s are connected to software output pin 0(red),1(orange) and 2(green). Input pin 4 is connected to the light dependent resistor (LDR) divider circuit and input pin 3 is connected to a pushbutton switch, which is appropriately grounded by R4. R1 and R2 comprise the standard download circuit, and R3 together with ZD1 regulate the incoming power to the appropriate voltage. C1 and C2 further provide power conditioning and power line noise reduction before supplying power to IC1, the main picaxe processor. 2

4 2 Construction Refer to the following full page layout diagram. Start by mounting the picaxe 8 pin chip. There is a small indent or notch at one end of the chip. This indent must correspond with the layout diagram. After inserting into the board, bend some pins on the under side so that it does not fall out while assembling other components. Make sure you have the board the right way around! The components go on the non solder side; this is the side that does not have the circuit tracks. Mount resistors R4 to R9 first as per the layout diagram. Leave the long ends poking through the holes. It does not matter which way around the resistors are placed. Then mount R1 to R3. Now mount the three Light Emitting Diodes (LEDs) D4, D5, D6 as per the layout diagram. Make sure that your colors correspond with the diagram. Also make sure that the notch (flat spot) on each LED is towards the top of the board. Image shows a notch on the LED plastic body. Next place the two LDRs (R10 and R11) allowing plenty of length in the legs to allow them to be moved around later. 3

5 Now insert the diodes D1, D2 and D3, in their appropriate positions. Unlike resistors, all diodes must be placed the right way around. There is a band that indicates which leg is which. This band can be silver or black depending on the diode. The band direction must correspond to the layout diagram. Finally, insert the two transistors, switch and capacitors C1 and C2. Ensure that the transistors are oriented the same way as in the diagram. C2 is a polarized capacitor. The negative side of the capacitor must be installed closest to the picaxe chip. The negative side can be distinguished by finding a negative sign on the side of the capacitor. A short video of building the UniBoard is available at: 4

6 5

7 3 Before you solder checklist: (tick off) Red green and orange LEDs have a notch pointing upwards All diodes are facing the right way around as per the diagram above The Picaxe processor has a notch facing downwards The electrolytic capacitor C2 has the negative (-) end towards picaxe Parts List Resistors Value (Ohms) Colour code R1 22K red red orange gold R2,R4,R8,R9 10K brown black orange gold R3 120 brown red brown gold R5,R6,R7 220 red red brown gold R10,R11 LDR 48K Diodes D1 D2 and D3 D4 D5 D6 Capacitors C1 C2 Other IC1 Q1 Q2 SW1 5.1V zener 1W 1N4001 diode LED LED LED 100nf polyester cap 100uf electrolytic Picaxe 08M KSP13 or similar darlington KSP13 or similar darlington pushbutton switch 6

8 4 Building the download cable: You will need 1 x 3m stereo 3.5mm cable and a DB9 plug with back shell: 7

9 1. Simply cut the 3m stereo cable in half and expose the leads. The other half of the cable can be used for another download cable. 2. Now solder the leads as follows: Shield Pin 2 Red wire Pin 3 White wire Pin 5 8

10 Now mount the DB9 connector into the plastic backshell, ensuring the cable clamp is fitted: Now close the backshell and insert the screws as follows: A 5 minute video explaining how to build the download cable is at: 9

11 Tutorial 1 Programming a stop light Let s get started. The below code shows how easy it is to control each output through a basic program. See if you can follow what the code is doing. main: high 0 wait 30 low 0 high 2 wait 30 low 2 high 1 wait 3 low 1 goto main Remember that the red LED is connected to output 0. So when this output is told to go high, the LED turns on. The LED stays on for 30 seconds by the command wait 30. Then the green LED turns on, then the orange LED and so on. The program loops forever by using the goto command. 10

12 5 Tutorial 2 Programming a light chaser This tutorial introduces variables. Variables are just places that the picaxe stores numbers. These numbers can change depending on what the code is doing. The picaxe 08M supports 14 variables labelled b0,b1,b2, up to b13. What happens when you change the value of b1, b2 and b3 in the below code? You can vary each variable from a value of 0 to 255. b1 = 100 b2 = 100 b3 = 100 main: high 0 pause b1 low 0 high 1 pause b2 low 1 high 2 pause b3 low 2 high 1 pause b2 low 1 goto main 11

13 6 Tutorial 3 Egg Timer This tutorial introduces loops that can be used to execute code more than once, and save on code space. It also introduces the pushbutton switch, which in this case, starts and stops the timer. An example of using symbols is used to make the code more user friendly. symbol switch1 = pin3 symbol greenled = 2 main: pause 500 if switch1 = 1 then startcount goto main startcount: high greenled pause 1000 for b0 = 1 to 200 high greenled pause 100 low greenled pause 100 if pin3 = 1 then main next goto finished finished: for b0 = 1 to 10 sound 2,(120,20,0,50) next goto main 12

14 7 Tutorial 4 Light Direction Sensor This tutorial introduces the debug command. This command is very useful for not only finding the value of analogue inputs, but is great for checking the status of pins, and checking to see where the code is up to. Also the gosub command is introduced. This command can be used to neatly space out each task within the program. main: gosub checklightlevel debug pause 1000 goto main checklightlevel: readadc 4,b1 return The above code can be simplified to just 5 lines: main: readadc 4,b1 debug pause 1000 goto main 13

15 7 Tutorial 5 Music Box There are many interesting commands within the picaxe vocabulary. Some include: Servo used to control a typical radio control actuator arm Infrain receives IR commands from another chip or from a remote Infraout sends IR via a special IR LED Readtemp reads the temperature from a temperature sensor Serout sends a serial string back to the computer. Suits data logging All of the above commands can easily be used with minimal code space. Another command is the play command, and sound command. These commands can make the picaxe play tunes through a piezo electric speaker. Main: Play 0,0 Wait 10 Goto main So what do the 0,0 numbers do after the play command? In the programming editor, click help/basic commands. There you will see the vocabulary that the picaxe can use. Under the play command, we see that the next digit chooses one of 4 pre defined tunes. The next digit after this tells the picaxe if any LEDs are to flash with the beat of the music. Have a play with the numbers and see their effect, it s the best way to learn! 14

16 7 Tutorial 6 Constructing a light seeking robot 15

17 Building the motorized base Extra items required for this tutorial: 2 x 4.5V medium duty motors Blank CD 2 x 0.1uF capacitors Two lengths of wire Two lengths of Hot Glue with dispenser 1. Start by mounting each 0.1uF capacitor and wire to the motors 16

18 2. Press the pinion gear firmly onto the shaft of the motor. 3. Now, using plenty of hot glue, mount the motors to the outer edge of the blank CD. Make sure that the CD shiny side becomes the bottom of the robot. The motors should be about 45 degrees from the CD. The motors should protrude well away from the CD to give plenty of room for the battery pack. (which will sit in between the motors) 17

19 7 4. Now the battery pack can be hot glued to the middle of the CD. Make sure that the switch is positioned as in this photo. Ensure that the battery pack is off center to the CD. This will move the center of balance of the robot to the rear, and stop it from nose diving! A blob of hot glue can be added as a skid to stop the power button from being damaged.

20 8 Connecting the UniBoard to the robot base

21 Be very careful not to mix up the motor wires. Signs you have mixed up the wires may include: Robot moves away from the light. Robot moves backwards 20

22 9 Programming the robot Try typing the following simple code into Programming Editor to get your robot moving! Main: High 0 Pause 1000 Low 0 Pause 2000 High 1 Pause 1000 Low 1 Pause 2000 High 0 High 1 Pause 1000 Low 0 Low 1 Pause 5000 Goto main What does the above program do? Well, let s dissect it. Software pin 0 is connected to the left motor and software pin 1 is connected to the right motor. So if we make pin 0 high, the left motor will turn on, and if we make pin 1 high the right motor will turn on.

23 The program above simply turns on the left motor, waits two seconds, turns on the right motor, waits two seconds, then turns on both motors, then waits five seconds before returning to the start of the program. A better way to control the robot is to utilize its two light sensors. The robot can then be programmed to search for a bright light and follow it. You can copy the following program into the programming editor which will turn your robot into a light seeker. Main: Readadc 4,b1 Pause 100 If b1 > 95 then right If b1 < 90 then left High 1 High 0 Pause 100 Low 1 Low 0 Goto main Right: High 0 Pause 60 Low 0 Goto main Left: High 1 Pause 60 Low 1 Goto main 22

24 How it works (detail): The first thing the robot does is it checks to see whether a greater amount of light is coming from the left or the right light sensor (Light dependent resistor (LDR)). It does this by measuring the voltage at the junction between the two LDRs. When dark, an LDR conducts less current by increasing its resistance. When in light, the resistance decreases and more current flows through the LDR. Our light seeking robot has two LDRs connected in series as above. When the light level reaching both LDRs is the same intensity, the output to pin 4 is roughly half the supply voltage. When the left LDR is darker than the right, the voltage measured at pin 4 is higher than half the supply voltage. 23

25 When the right LDR is darker than the left, the voltage measured at pin 4 is lower than half the supply voltage. Pin 4 on the picaxe has an internal Analogue to Digital Converter (ADC). Essentially the picaxe is able to measure the voltage that is on its pin 4. The command to do this is readadc pinnumber,variable. So the line Readadc 4,b1 in the code checks the voltage level at the LDR resistance divider point. Let us say that the voltage measured is high. This means that the right light sensor is exposed to more light than the left sensor. The robot should then turn right to get closer to the light. The program does this by using the line If b1 > 95 then right. The program jumps to the right sequence which turns on the LEFT motor, spinning the robot to the right! The opposite occurs if the voltage measured is low. In this case the line If b1 < 90 then left makes the program jump to the turn left command, which turns on the RIGHT motor to spin the robot to the left. If the value of the voltage is between 90 and 95 then it is safe to say that the light source is more or less straight ahead. The program then turns on both motors to go forwards. 24

26 10 Tutorial 7 Line Following Robot The Line Following Robot utilizes an infra-red sensor array purchased from or from It is part number AXE121 and can be purchased within Australia here: Current Recommended Retail price is $36 including GST. School discounts apply. 25

27 The line tracker also utilizes a robot base found at with catalogue number K1235. Current recommended retail price is $ School discounts apply. First, build the line tracker AXE121 as per the instructions that came with the module. Next, connect the supplied 5 core ribbon cable to the UniBoard s second row of pins. The 5 wires connect to the following inputs of the UniBoard: Cable number Connected to UniBoard Function 1 +5V Aux +5V 2 Left sensor Pin 3 3 Center sensor not connected 4 Right sensor Pin 4 5 Gnd Ground Now use hot glue to glue the UniBoard, battery pack and line tracker board to the robot base. The pins that came with the robot base can be soldered directly to the UniBoard, which enables the motor wires to easily connect and disconnect. If you have followed the colour codes of the robot base instructions, the following colour wires can be connected to the UniBoard. 26

28 Sample program: main: if pin3 = 1 then left if pin4 = 1 then right high 0 high 1 pause 10 low 0 low 1 pause 5 goto main right: high 0 pause 10 low 0 pause 5 goto main left: high 1 pause 10 low 1 pause 5 goto main 27

29 11 Tutorial 8 Infra-Red Communicator This tutorial shows how one UniBoard can communicate with another UniBoard through invisible Infra Red (IR) light. Above, one UniBoard is fitted with an IR transmitter, the other is fitted with transmitter and receiver. Only two parts are required for the transmitter: 28

30 1 x 330 ohm resistor 1 x IR LED transmitter The Receiver The receiver requires the following components: 1 x IR receiver 1 x 4.7uF capacitor 1 x 220 ohm resistor 1 x 4.7K resistor 29

31 RX Sample Program: main: infrain2 if infra = 1 then soundout goto main soundout: sound 2,(100,100) goto main TX sample program: main: infraout 1,1 pause 500 goto main The above RX program beeps a piezo speaker every time it receives an IR command. The above TX program continuously transmits an IR signal. By switching on the two boards, a range test should show the boards communicating within 7 or so metres of each other. 30

32 Tutorial 9 Lie Detector This tutorial shows how the UniBoard can be made into a simple lie detector. The prototyping area is made into a moisture sensor, where a finger can be applied. When people tell lies, generally certain signals can be captured and analysed to see if they are telling the truth. This can be in the form of elevated heart beat, heavier breathing, and increased sweating. This kit senses how conductive your finger is, and if you are sweating a lot, it will light up the red LED. 31

33 Programming the lie detector Open your programming editor and type in the following program. main: readadc 4,b1 if b1> 145 then greenlight high 0 wait 1 low 0 goto main greenlight: high 2 wait 1 low 2 goto main How the program works: When your finger is on the prototyping area, a small current goes through the 820K resistor, and through your finger to the ground holes. The more sweat on your finger, the lower the analogue signal read by the Picaxe processor. The code simply reads the voltage level at pin 4 using the readadc command, and puts it into variable b1. The variable is then tested to see if it is higher than 145. If it is higher than 145, then it is assumed that you are not lying. Hence the green light turns on. If the variable is equal to or lower than 145, then there is a low resistance through your finger, and you are probably lying, hence the red LED turns on. The sample rate is once per second. You can calibrate the lie detector by changing the 145 value to something else. It will be more prone to light the red LED if you increase the value, and will be more prone to light the green LED if you lower the value. Remember that the UniBoard may contain leaded solder; hence you should never lick your fingers to test whether the lie detector is working. Use a damp cloth to wet your fingers instead. 32

34 33

35 10 Disclaimer and Guarantee The guarantee on this kit is limited to the replacement of faulty parts only for a period of 12 months after purchase. The guarantee cannot cover time expenses or loss of income due to incorrect assembly and/or fault finding and bug fixing. Note that all electronic components in this kit are from quality suppliers, and it is extremely unlikely that any part included in this kit is faulty. Check your soldering; check component placement, resistor values, and batteries carefully. An incorrectly placed component may not only harm the component, but also other components in the kit. Before applying power, double-check all placement of components carefully. It is recommended that help be sought in the construction of this kit if the builder believes that the level of electronic knowledge required is out of his/her domain. Should this help be unavailable, please return the fully sealed kit for a refund or exchange. Kits cannot be refunded or exchanged after construction has begun. Circuit diagram produced and designed in TinyCad. UniBoard is a trademark of APMP. All rights reserved. Picaxe, Rev-Ed, Microchip inc, and TinyCad are trademarks of their respective companies. This document is copyright APMP, Unauthorised reproduction is prohibited.

AXE114S BINARY CLOCK. revolution Revolution Education Ltd. Email: info@rev-ed.co.uk Web: www.rev-ed.co.uk Version 1.1 12/09/08 AXE114.PMD.

AXE114S BINARY CLOCK. revolution Revolution Education Ltd. Email: info@rev-ed.co.uk Web: www.rev-ed.co.uk Version 1.1 12/09/08 AXE114.PMD. AXE114S BINARY CLOCK Features: The PICAXE binary clock kit tells the time by lighting up blue LEDs in a binary pattern. This is a useful tool for teaching students binary code or simply just confusing/

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

The $25 Son of a cheap timer This is not suitable for a beginner. You must have soldering skills in order to build this kit.

The $25 Son of a cheap timer This is not suitable for a beginner. You must have soldering skills in order to build this kit. The $25 Son of a cheap timer This is not suitable for a beginner. You must have soldering skills in order to build this kit. Micro Wizard has been manufacturing Pinewood Derby timers for over 10 years.

More information

revolution Contents: Introduction Power 28-pin Project Board with input/output cables

revolution Contents: Introduction Power 28-pin Project Board with input/output cables 28-PIN IN IN PROJECT BOARD Contents: AXE020 28-pin Project Board with input/output cables Introduction The 28-pin project board is designed to allow rapid prototyping with 28-pin PICAXE microcontrollers.

More information

Analog control unit for mobile robots

Analog control unit for mobile robots Analog control unit for mobile robots Soldering kit for experimentation For Fischertechnik robots and others Most diverse functions Requires no programming Patented sensor technology Summary We are pleased

More information

Electronics and Soldering Notes

Electronics and Soldering Notes Electronics and Soldering Notes The Tools You ll Need While there are literally one hundred tools for soldering, testing, and fixing electronic circuits, you only need a few to make robot. These tools

More information

PICAXE DATALOGGER (AXE110P)

PICAXE DATALOGGER (AXE110P) (AXE110P) Contents: Section 1 - General Information Section 2 - Self Assembly Kit Section 3 - Circuit Diagram Section 4 - Input/Output pins and default sensors Section 5 - Staring a new Datalogger Mission

More information

WHO ANSWERED FIRST? FIND OUT WITH THIS QUIZ BUZZER KIT

WHO ANSWERED FIRST? FIND OUT WITH THIS QUIZ BUZZER KIT WHO ANSWERED FIRST? FIND OUT WITH THIS QUIZ BUZZER KIT BUILD INSTRUCTIONS Before you put any components in the board or pick up the soldering iron, just take a look at the Printed Circuit Board (PCB).

More information

TEECES DOME LIGHTING SYSTEMS

TEECES DOME LIGHTING SYSTEMS This lighting system was designed by John V (Teeces) to be a simple, customizable, expandable and affordable solution for dome lighting. An Arduino micro-controller is used to tell LED driver chips which

More information

PolyBot Board. User's Guide V1.11 9/20/08

PolyBot Board. User's Guide V1.11 9/20/08 PolyBot Board User's Guide V1.11 9/20/08 PolyBot Board v1.1 16 pin LCD connector 4-pin SPI port (can be used as digital I/O) 10 Analog inputs +5V GND GND JP_PWR 3-pin logic power jumper (short top 2 pins

More information

PICAXE COLOUR SENSOR. revolution. Overview: Contents (AXE045 Colour Sensor): Contents (AXE112S Starter Pack): General Operation:

PICAXE COLOUR SENSOR. revolution. Overview: Contents (AXE045 Colour Sensor): Contents (AXE112S Starter Pack): General Operation: PICAXE COLOUR SENSOR Overview: The PICAXE Colour Sensor is a complete RGB (red green blue) colour sensor module for colour detection and sorting operations. The sensor can be interfaced to all PICAXE chips

More information

revolution Revolution Education Ltd. Email: info@rev-ed.co.uk Web: www.rev-ed.co.uk Vesrion 2.128/08/02 PICLOCK.P65 SELF -ASSEMBL Order Codes:

revolution Revolution Education Ltd. Email: info@rev-ed.co.uk Web: www.rev-ed.co.uk Vesrion 2.128/08/02 PICLOCK.P65 SELF -ASSEMBL Order Codes: PIC IC L -A IC LOCK SELF ELF-A -ASSEMBL SSEMBLY KIT IT IT (V2) Order Codes: CHI008 PIC Lock Self-Assembly Kit 1 2 3 4 5 6 7 8 9 0 # SW + OUT + 6V 0V Ú LK1 LK2 Features 12 key telephone style keypad bicolour

More information

K8025 VIDEO PATTERN GENERATOR. Check the picture quality of your monitor or TV, ideal for adjustment or troubleshooting.

K8025 VIDEO PATTERN GENERATOR. Check the picture quality of your monitor or TV, ideal for adjustment or troubleshooting. K8025 ILLUSTRATED ASSEMBLY MANUAL H8025IP 1 VIDEO PATTERN GENERATOR Check the picture quality of your monitor or TV, ideal for adjustment or troubleshooting. Forum Participate our Velleman Projects Forum

More information

- 35mA Standby, 60-100mA Speaking. - 30 pre-defined phrases with up to 1925 total characters.

- 35mA Standby, 60-100mA Speaking. - 30 pre-defined phrases with up to 1925 total characters. Contents: 1) SPE030 speech synthesizer module 2) Programming adapter kit (pcb, 2 connectors, battery clip) Also required (for programming) : 4.5V battery pack AXE026 PICAXE download cable Specification:

More information

Kit 106. 50 Watt Audio Amplifier

Kit 106. 50 Watt Audio Amplifier Kit 106 50 Watt Audio Amplifier T his kit is based on an amazing IC amplifier module from ST Electronics, the TDA7294 It is intended for use as a high quality audio class AB amplifier in hi-fi applications

More information

Joule Thief 3.0 Kit. June 2012, Rev 1 1 http://www.easternvoltageresearch.com Joule Thief 3.0

Joule Thief 3.0 Kit. June 2012, Rev 1 1 http://www.easternvoltageresearch.com Joule Thief 3.0 Kit Instruction Manual Eastern Voltage Research, LLC June 2012, Rev 1 1 http://www.easternvoltageresearch.com HIGH BRIGHTNESS LED THIS KIT USES A 1W CREE, HIGH BRIGHTNESS LED. DO NOT STARE AT THIS (OR

More information

Example use of a microcontroller.

Example use of a microcontroller. 1 ALARM SYSTEMS What is a microcontroller? A microcontroller is often described as a 'computer-on-a-chip'. It can be used as an electronic brain to control a product, toy or machine. The microcontroller

More information

GLOLAB Universal Telephone Hold

GLOLAB Universal Telephone Hold GLOLAB Universal Telephone Hold 1 UNIVERSAL HOLD CIRCUIT If you have touch tone telephone service, you can now put a call on hold from any phone in the house, even from cordless phones and phones without

More information

DET Practical Electronics (Intermediate 1)

DET Practical Electronics (Intermediate 1) DET Practical Electronics (Intermediate 1) 731 August 2000 HIGHER STILL DET Practical Electronics (Intermediate 1) Support Materials CONTENTS Section 1 Learning about Resistors Section 2 Learning about

More information

Example use of a microcontroller. Revolution Education Ltd. Web: www.picaxe.co.uk

Example use of a microcontroller. Revolution Education Ltd. Web: www.picaxe.co.uk 1 ELECTRONIC DICE What is a microcontroller? A microcontroller is often described as a 'computer-on-a-chip'. It can be used as an electronic brain to control a product, toy or machine. The microcontroller

More information

Your Multimeter. The Arduino Uno 10/1/2012. Using Your Arduino, Breadboard and Multimeter. EAS 199A Fall 2012. Work in teams of two!

Your Multimeter. The Arduino Uno 10/1/2012. Using Your Arduino, Breadboard and Multimeter. EAS 199A Fall 2012. Work in teams of two! Using Your Arduino, Breadboard and Multimeter Work in teams of two! EAS 199A Fall 2012 pincer clips good for working with breadboard wiring (push these onto probes) Your Multimeter probes leads Turn knob

More information

PICAXE RF CONNECT KIT (AXE213)

PICAXE RF CONNECT KIT (AXE213) PICAXE RF CONNECT KIT (AXE213) Kit Contents: PCB AXE213 Transmitter & Receiver PCB Pair R1-3 10k resistor (brown black orange gold) R4-5 470 resistor (yellow violet brown gold) R6 22k resistor (red red

More information

Assembly Instructions: Shortwave Radio Kit

Assembly Instructions: Shortwave Radio Kit Assembly Instructions: Shortwave Radio Kit MTM Scientific, Inc P.O. Box 522 Clinton, MI 49236 U.S.A Introduction Fig 1: The assembled Shortwave Radio Kit The SHORTWAVE RADIO KIT (#SWRAD) from MTM Scientific

More information

BMD16N-SD. version 1.2

BMD16N-SD. version 1.2 BMD16NSD version 1.2 Feedback decoder with 16 contacts with integrated current detection for the S88bus Compatible with a.o. Märklin Digital, Uhlenbrock Intellibox, Fleischmann TwinCenter and LDT HSI88

More information

Your EdVenture into Robotics You re a Programmer

Your EdVenture into Robotics You re a Programmer Your EdVenture into Robotics You re a Programmer Introduction... 3 Getting started... 4 Meet EdWare... 8 EdWare icons... 9 EdVenture 1- Flash a LED... 10 EdVenture 2 Beep!! Beep!!... 12 EdVenture 3 Robots

More information

INTRODUCTION TO SERIAL ARM

INTRODUCTION TO SERIAL ARM INTRODUCTION TO SERIAL ARM A robot manipulator consists of links connected by joints. The links of the manipulator can be considered to form a kinematic chain. The business end of the kinematic chain of

More information

K128. USB PICmicro Programmer. DIY Electronics (HK) Ltd PO Box 88458, Sham Shui Po, Hong Kong. http://www.kitsrus.com mailto: peter@kitsrus.

K128. USB PICmicro Programmer. DIY Electronics (HK) Ltd PO Box 88458, Sham Shui Po, Hong Kong. http://www.kitsrus.com mailto: peter@kitsrus. K128 USB PICmicro Programmer DIY Electronics (HK) Ltd PO Box 88458, Sham Shui Po, Hong Kong http://www.kitsrus.com mailto: peter@kitsrus.com Last Modified March 31 2003 Board Construction The board is

More information

RS232/DB9 An RS232 to TTL Level Converter

RS232/DB9 An RS232 to TTL Level Converter RS232/DB9 An RS232 to TTL Level Converter The RS232/DB9 is designed to convert TTL level signals into RS232 level signals. This cable allows you to connect a TTL level device, such as the serial port on

More information

Tutorials Drawing a 555 timer circuit

Tutorials Drawing a 555 timer circuit Step 1 of 10: Introduction This tutorial shows you how to make an electronic circuit using Livewire and PCB Wizard 3. You should follow this tutorial to learn the basic skills you will need to use Livewire

More information

TEACHING RESOURCES SCHEMES OF WORK DEVELOPING A SPECIFICATION COMPONENT FACTSHEETS HOW TO SOLDER GUIDE GET IN TUNE WITH THIS FM RADIO KIT. Version 2.

TEACHING RESOURCES SCHEMES OF WORK DEVELOPING A SPECIFICATION COMPONENT FACTSHEETS HOW TO SOLDER GUIDE GET IN TUNE WITH THIS FM RADIO KIT. Version 2. TEACHING RESOURCES SCHEMES OF WORK DEVELOPING A SPECIFICATION COMPONENT FACTSHEETS HOW TO SOLDER GUIDE GET IN TUNE WITH THIS FM RADIO KIT Version 2.0 Index of Sheets TEACHING RESOURCES Index of Sheets

More information

MICROCONTROLLER INTERFACING CIRCUITS

MICROCONTROLLER INTERFACING CIRCUITS 1 Section 3 MICROCONTROLLER INTERFACING CIRCUITS What is a PIC Microcontroller? A PIC microcontroller is a single integrated circuit small enough to fit in the palm of a hand. Traditional microprocessor

More information

DIY Y6. Build Manual V.A 2014

DIY Y6. Build Manual V.A 2014 DIY Y6 Build Manual V.A 2014 1 Contents Thanks for purchasing a DIY Y6! These instructions will show you how to assemble a Y6 using the Pixhawk autopilot system and ArduCopter/APM:Copter firmware. If you

More information

Example use of a microcontroller.

Example use of a microcontroller. 1 SAFETY LIGHT What is a microcontroller? A microcontroller is often described as a 'computer-on-a-chip'. It can be used as an electronic brain to control a product, toy or machine. The microcontroller

More information

!Operation:!1. Connect an external power source to J1 (+ and - IN terminals). The

!Operation:!1. Connect an external power source to J1 (+ and - IN terminals). The The CB500 Electronic Circuit Breaker is an resettable circuit breaker (fuse) that disconnects power when the trip setting is exceeded. There are 4 trip settings that can easily be changed and set during

More information

Model 201 Wiegand Touchpad Reader Installation Guide

Model 201 Wiegand Touchpad Reader Installation Guide Model 201 Wiegand Touchpad Reader Installation Guide P/N 460353001C 15AUG11 2011 UTC Fire & Security. All rights reserved. This document may not be copied in whole or in part or otherwise reproduced without

More information

AXE033 SERIAL/I2C LCD

AXE033 SERIAL/I2C LCD AXE033 SERIAL/I2C LCD The serial LCD and clock module allows microcontroller systems (e.g. PICAXE) to visually output user instructions or readings, without the need for a computer. This is especially

More information

TX GSM SMS Auto-dial Alarm System. Installation and User Manual

TX GSM SMS Auto-dial Alarm System. Installation and User Manual TX GSM SMS Auto-dial Alarm System Installation and User Manual Product Features: 1. 16 wireless zones, 3 wired zones alarm system, suitable for small to medium size offices and homes. 2. The system uses

More information

Martin County Amateur Radio Association. Nightfire Kits 1 LED Torch Kit 270016. Contents. Description

Martin County Amateur Radio Association. Nightfire Kits 1 LED Torch Kit 270016. Contents. Description Nightfire Kits 1 LED Torch Kit 270016 1 Contents Nightfire Kits LED Torch Kit 270016... 1 Description... 1 Safety and Assembly of the kit... 6 Required and Useful Tools... 7 Assembly... 8 Checkout and

More information

R10 22k. R9 10k PICAXE-08M RXD. Sample Program: main: high 4 pause 1000 low 4 pause 1000 goto main R7 330 D7 LED-RED.

R10 22k. R9 10k PICAXE-08M RXD. Sample Program: main: high 4 pause 1000 low 4 pause 1000 goto main R7 330 D7 LED-RED. PICAXE VSM Tutorial Part PICAXE VSM Tutorial Part In the third part of our PICAXE VSM tutorial we look at how to use some of the virtual instrumentation included with the software from simple voltmeter

More information

LUCCI AIRFUSION QUEST II CEILING FAN

LUCCI AIRFUSION QUEST II CEILING FAN LUCCI AIRFUSION QUEST II CEILING FAN WITH IR REMOTE INSTALLATION OPERATION MAINTENANCE WARRANTY INFORMATION CAUTION READ INSTRUCTIONS CAREFULLY FOR SAFE INSTALLATION AND FAN OPERATION. V1.0 QUEST II IR

More information

VOLUME AND TONE CONTROL - PREAMPLIFIER K8084

VOLUME AND TONE CONTROL - PREAMPLIFIER K8084 H8084IP-1 VOLUME AND TONE CONTROL - PREAMPLIFIER K8084 When using one of our amplifiers (big or small), you always need a volume control and preferably also a tone control Features & specifications When

More information

How to connect to a Class II router using a mobile-phone data cable specifically for Solwise & Safecom routers

How to connect to a Class II router using a mobile-phone data cable specifically for Solwise & Safecom routers USB to router s serial port How to connect to a Class II router using a mobile-phone data cable specifically for Solwise & Safecom routers by Neo at RouterTech.Org Introduction Routers based on the AR7RD/AR7WRD

More information

BUILDING INSTRUCTIONS

BUILDING INSTRUCTIONS etap2hw 38 mm I2C to LCD Interface BUILDING INSTRUCTIONS October 2013 P. Verbruggen Rev 1.01 15-Oct-13 Page 1 Table of Contents Chapter 1 General Information 1.1 ESD Precautions 1.2 Further Supplies 1.3

More information

step 1 Unpack the lunchbox And check whether you have got all the components~ If you have questions please contact us at: info@unitunlikely.

step 1 Unpack the lunchbox And check whether you have got all the components~ If you have questions please contact us at: info@unitunlikely. step 1 Unpack the lunchbox And check whether you have got all the components~ If you have questions please contact us at: info@unitunlikely.com This part is called the PCB (printed circuit board). All

More information

1. Learn about the 555 timer integrated circuit and applications 2. Apply the 555 timer to build an infrared (IR) transmitter and receiver

1. Learn about the 555 timer integrated circuit and applications 2. Apply the 555 timer to build an infrared (IR) transmitter and receiver Electronics Exercise 2: The 555 Timer and its Applications Mechatronics Instructional Laboratory Woodruff School of Mechanical Engineering Georgia Institute of Technology Lab Director: I. Charles Ume,

More information

SUPER SNOOPER BIG EAR

SUPER SNOOPER BIG EAR AA-1D Super Snooper Big Ear SPECIFICATIONS Operates on 5 to 9v DC Will drive a small speaker Provides up to 1 watt of audio power Distortion > 0.2% Voltage Gain up to 46 db Size: 1 x 1.95 Rainbowkits.com

More information

200W DISCRETE POWER AMPLIFIER K8060

200W DISCRETE POWER AMPLIFIER K8060 H8060IP-1 200W DISCRETE POWER AMPLIFIER K8060 Ideal for active speaker system or subwoofer, guitar amp, home theatre systems, instrument amp, etc. Features & Specifications Specifications: Excellent value

More information

Troubleshooting Tips Lifestyle SA-2 & SA-3 Amplifier. Troubleshooting Tips

Troubleshooting Tips Lifestyle SA-2 & SA-3 Amplifier. Troubleshooting Tips Troubleshooting Tips Lifestyle SA-2 & SA-3 Amplifier Refer to the Lifestyle SA-2 & SA-3 Amplifier service manuals, part number 271720 for schematics, PCB layouts and parts lists. Preventative Repair Measures

More information

DIY QUAD. Build Manual V.A 2014

DIY QUAD. Build Manual V.A 2014 DIY QUAD Build Manual V.A 2014 1 Contents Thanks for purchasing a DIY Quad! These instructions will show you how to assemble a Quad using the Pixhawk autopilot system and ArduCopter/APM:Copter firmware.

More information

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Sensors LCD Real Time Clock/ Calendar DC Motors Buzzer LED dimming Relay control I2C-FLEXEL PS2 Keyboards Servo Motors IR Remote Control

More information

Contents. revolution MICROCONTROLLER INTERFACING CIRCUITS. www.picaxe.co.uk. 1 Section 3

Contents. revolution MICROCONTROLLER INTERFACING CIRCUITS. www.picaxe.co.uk. 1 Section 3 1 Section 3 Contents About this manual... 2 Microcontroller Interfacing Circuits... 3 What is a PIC Microcontroller?... 3 What is a PICAXE microcontroller?... 3 Interfacing to the PICAXE Microcontroller...

More information

The RSGB Centenary Receiver Project Construction Manual

The RSGB Centenary Receiver Project Construction Manual The RSGB Centenary Receiver Project Construction Manual Page 1 of 12 Introduction This project is intended for those new to radio construction. It is a fairly simple receiver for the 14MHz (20m) amateur

More information

POCKET AUDIO GENERATOR K8065

POCKET AUDIO GENERATOR K8065 POCKET AUDIO GENERATOR K8065 Great little gadget for service repair, testing, education, etc... ILLUSTRATED ASSEMBLY MANUAL H8065IP-1 VELLEMAN NV Legen Heirweg 33 9890 Gavere Belgium Europe www.velleman.be

More information

HYDRA HV OPERATION MANUAL. 2.0 Making Connections on your HYDRA speed control. Rosin core electrical solder

HYDRA HV OPERATION MANUAL. 2.0 Making Connections on your HYDRA speed control. Rosin core electrical solder HYDRA HV OPERATION MANUAL Starting Power Safe power on arming program helps prevent motor from accidentally turning on. Always use extreme care with high power systems. Auto shut down when signal is lost

More information

GUITAR PREAMPLIFIER WITH HEADPHONE OUTPUT K4102

GUITAR PREAMPLIFIER WITH HEADPHONE OUTPUT K4102 H4102IP-1 GUITAR PREAMPLIFIER WITH HEADPHONE OUTPUT K4102 Practice the guitar without disturbing others. Features & Specifications Features: An electric guitar cannot be connected to just any amplifier

More information

400W MONO/STEREO AMPLIFIER

400W MONO/STEREO AMPLIFIER 400W MONO/STEREO AMPLIFIER Universal, robust and compact are the words to describe this amplifier. Total solder points: 264 Difficulty level: beginner 1 2 3 4 5 advanced K4005B ILLUSTRATED ASSEMBLY MANUAL

More information

Overnight Sensations Speaker Kit

Overnight Sensations Speaker Kit Overnight Sensations Speaker Kit Thank you for purchasing the Overnight Sensation cabinet kit. This speaker kit was precision cut using CNC machinery for the best possible fit and finish. With a little

More information

Your EdVenture into Robotics You re a Programmer

Your EdVenture into Robotics You re a Programmer Your EdVenture into Robotics You re a Programmer meetedison.com Contents Introduction... 3 Getting started... 4 Meet EdWare... 8 EdWare icons... 9 EdVenture 1- Flash a LED... 10 EdVenture 2 Beep!! Beep!!...

More information

MAINS VOLTAGE DETECTOR K7101

MAINS VOLTAGE DETECTOR K7101 With this device wires can be very easily checked for mains voltage. H7101IP-1 MAINS VOLTAGE DETECTOR K7101 VELLEMAN NV Legen Heirweg 33 9890 Gavere Belgium Europe www.velleman.be www.velleman-kit.com

More information

Objectives: Part 1: Build a simple power supply. CS99S Laboratory 1

Objectives: Part 1: Build a simple power supply. CS99S Laboratory 1 CS99S Laboratory 1 Objectives: 1. Become familiar with the breadboard 2. Build a logic power supply 3. Use switches to make 1s and 0s 4. Use LEDs to observe 1s and 0s 5. Make a simple oscillator 6. Use

More information

Operating Instructions

Operating Instructions Operating Instructions Dear customer, Congratulations on your decision to purchase the Smart-Switch from our range! This innovative product is the world s first electronic multi-function switch system,

More information

7-SEGMENT DIGITAL CLOCK

7-SEGMENT DIGITAL CLOCK 57mm 7-SEGMENT DIGITAL CLOCK Large 57mm clock & temperature display with extra unique feature Total solder points: 263 Difficulty level: beginner 1 2 3 4 5 advanced K8089 ILLUSTRATED ASSEMBLY MANUAL H8089IP-1

More information

I Click on a link tab to jump to that page. Cover Page

I Click on a link tab to jump to that page. Cover Page Publication, Duplication, or Retransmission Of This Document Not Expressly Authorized n Writing By The nstall Doctor s Prohibited. Protected By U.S. Copyright Laws. 1997,1998,1999,2000. Factory Radio Other

More information

RC2200DK Demonstration Kit User Manual

RC2200DK Demonstration Kit User Manual Demonstration Kit User Manual Table of contents TABLE OF CONTENTS... 1 QUICK INTRODUCTION... 2 INTRODUCTION... 3 DEMONSTRATION BOARD... 4 POWER SUPPLY SECTION... 5 RS-232 INTERFACE... 6 CONNECTORS... 7

More information

The basic set up for your K2 to run PSK31 By Glenn Maclean WA7SPY

The basic set up for your K2 to run PSK31 By Glenn Maclean WA7SPY The basic set up for your K2 to run PSK31 By Glenn Maclean WA7SPY I am by no means an expert on PSK31. This article is intended to help someone get on PSK31 with a K2. These are the things I did to get

More information

Instruction Manual. This Manual covers the use of: SmartSwitch Servo Kit. DCC Stationary Decoder PLEASE READ THESE INSTRUCTIONS FULLY BEFORE USE

Instruction Manual. This Manual covers the use of: SmartSwitch Servo Kit. DCC Stationary Decoder PLEASE READ THESE INSTRUCTIONS FULLY BEFORE USE built by Instruction Manual This Manual covers the use of: PLS-125 PLS-130 PLS-135 SmartSwitch Servo Kit SmartFrog DCC Stationary Decoder PLEASE READ THESE INSTRUCTIONS FULLY BEFORE USE Contents Introduction

More information

Cover Page. Factory Radio Other Documents Available For This Vehicle:

Cover Page. Factory Radio Other Documents Available For This Vehicle: & nstall Publication, Duplication, or Retransmission Of This Document Not Expressly Authorized n Writing By The nstall Doctor s Prohibited. Protected By U.S. Copyright Laws. 1997,1998,,2000. Factory Radio

More information

Micrio WS1 Replacement Wind Speed Sensor and WC1 Replacement Wind Compass Sensor for Raymarine ST50 and ST60 Wind Instruments. Rev 4.

Micrio WS1 Replacement Wind Speed Sensor and WC1 Replacement Wind Compass Sensor for Raymarine ST50 and ST60 Wind Instruments. Rev 4. Micrio WS1 Replacement Wind Speed Sensor and WC1 Replacement Wind Compass Sensor for Raymarine ST50 and ST60 Wind Instruments. Rev 4.1 The Micrio WS1 Wind Speed Sensor and WC1 Compass Sensor are direct

More information

Modifying the Yaesu FT-847 External 22.625 MHz Reference Input

Modifying the Yaesu FT-847 External 22.625 MHz Reference Input Modifying the Yaesu FT-847 External 22.625 MHz Reference Input David Smith VK3HZ Introduction This document describes the modification of an FT-847 to allow an external 22.625 MHz Reference oscillator

More information

1218-75 Watt Audiophile Audio Amplifier

1218-75 Watt Audiophile Audio Amplifier Description Quasar kit No.1218 is part of a new line of constructions which combined form a full stereo system. The line consists of the following KITS Quasar kit No.1214 6 inputs stereo selector Quasar

More information

GLOLAB Two Wire Stepper Motor Positioner

GLOLAB Two Wire Stepper Motor Positioner Introduction A simple and inexpensive way to remotely rotate a display or object is with a positioner that uses a stepper motor to rotate it. The motor is driven by a circuit mounted near the motor and

More information

ARDUINO SEVERINO SERIAL SINGLE SIDED VERSION 3 S3v3 (REVISION 2) USER MANUAL

ARDUINO SEVERINO SERIAL SINGLE SIDED VERSION 3 S3v3 (REVISION 2) USER MANUAL ARDUINO SEVERINO SERIAL SINGLE SIDED VERSION 3 S3v3 (REVISION 2) USER MANUAL X1: DE-9 serial connector Used to connect computer (or other devices) using RS-232 standard. Needs a serial cable, with at least

More information

Glolab Talking Phone Dial Monitor

Glolab Talking Phone Dial Monitor Introduction The detects the tones generated when numbers are dialed on your touch tone telephone and speaks the numbers that were dialed. This verifies that you dialed the correct number and is especially

More information

Single Channel Loop Detector

Single Channel Loop Detector Single Channel Loop Detector Model - LD100 Series The LD100 is a single channel inductive loop detector designed for parking and access control applications. The detector is connected to an inductive loop

More information

Total solder points: 129 Difficulty level: beginner 1 2 3 4 5 advanced LIQUID LEVEL CONTROLLER K2639 ILLUSTRATED ASSEMBLY MANUAL H2639IP-1

Total solder points: 129 Difficulty level: beginner 1 2 3 4 5 advanced LIQUID LEVEL CONTROLLER K2639 ILLUSTRATED ASSEMBLY MANUAL H2639IP-1 Total solder points: 129 Difficulty level: beginner 1 2 3 4 5 advanced LIQUID LEVEL CONTROLLER K2639 Forgotten to turn off the tap, leaking washing machines,... Prevention is better than cure. So use this

More information

Total solder points: 67 Difficulty level: beginner 1 2 3. 4 5 advanced UNIVERSAL TEMPERATURE SENSOR K8067 ILLUSTRATED ASSEMBLY MANUAL

Total solder points: 67 Difficulty level: beginner 1 2 3. 4 5 advanced UNIVERSAL TEMPERATURE SENSOR K8067 ILLUSTRATED ASSEMBLY MANUAL Total solder points: 67 Difficulty level: beginner 1 2 3 4 5 advanced UNIVERSAL TEMPERATURE SENSOR K8067 Ideal for connection to computer interface boards (K8000, K8055, K8047,..) ILLUSTRATED ASSEMBLY

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS INSTALLATION INSTRUCTIONS Electric Vacuum Pump Kit 28146 Thank you for choosing STAINLESS STEEL BRAKES CORPORATION for your braking needs. Pleases take the time to read and carefully follow these instructions

More information

RGB for ZX Spectrum 128, +2, +2A, +3

RGB for ZX Spectrum 128, +2, +2A, +3 RGB for ZX Spectrum 128, +2, +2A, +3 Introduction... 2 Video Circuitry... 3 Audio Circuitry... 8 Lead Wiring... 9 Testing The Lead... 11 Spectrum +2A/+3 RGB Differences... 12 Circuitry Calculations...

More information

BUILD YOUR OWN RC SWITCH (Issue 3)

BUILD YOUR OWN RC SWITCH (Issue 3) PART ONE SINGLE ELECTRONIC RC SWITCH Fancy switching the lights using your radio, then here is a circuit you may consider building. It only uses one IC and seven other components for a single switch and

More information

ARRL Morse Code Oscillator, How It Works By: Mark Spencer, WA8SME

ARRL Morse Code Oscillator, How It Works By: Mark Spencer, WA8SME The national association for AMATEUR RADIO ARRL Morse Code Oscillator, How It Works By: Mark Spencer, WA8SME This supplement is intended for use with the ARRL Morse Code Oscillator kit, sold separately.

More information

ILISC515-A Shift Interlock (Manual Lift Door) 2015 Ford Transit, 3.7L and 3.5L

ILISC515-A Shift Interlock (Manual Lift Door) 2015 Ford Transit, 3.7L and 3.5L An ISO 9001:2008 Registered Company ILISC515-A Shift Interlock (Manual Lift Door) 2015 Ford Transit, 3.7L and 3.5L Introduction The ILISC515-A is a microprocessor driven system for controlling wheelchair

More information

K6002 TEMPERATURE CONTROLLER. Specifications

K6002 TEMPERATURE CONTROLLER. Specifications Total solder points: 169 + 99 + 67 Difficulty level: beginner 1 2 3 4 5 advanced TEMPERATURE CONTROLLER K6002 Unlike a normal thermostat, this kit has two outputs, one for "high" alarm and one for "low"

More information

Programming PIC Microcontrollers in PicBasic Pro Lesson 1 Cornerstone Electronics Technology and Robotics II

Programming PIC Microcontrollers in PicBasic Pro Lesson 1 Cornerstone Electronics Technology and Robotics II Programming PIC Microcontrollers in PicBasic Pro Lesson 1 Cornerstone Electronics Technology and Robotics II Administration: o Prayer PicBasic Pro Programs Used in This Lesson: o General PicBasic Pro Program

More information

AUTOMATIC CALL RECORDER JAMECO PART NO. 2163735

AUTOMATIC CALL RECORDER JAMECO PART NO. 2163735 AUTOMATIC CALL RECORDER JAMECO PART NO. 2163735 Experience Level: Intermediate Time Required: 1-2 Hours This project automatically records phone calls. The program, along with the adapter records each

More information

ATS Control Panel. User s Manual

ATS Control Panel. User s Manual ATS Control Panel User s Manual ARITECH is a division of GE Interlogix BV COPYRIGHT 2004 GE Interlogix BV. All rights reserved. GE Interlogix BV grants the right to reprint this manual for internal use

More information

UPS PIco. to be used with. Raspberry Pi B+, A+, B, and A. HAT Compliant. Raspberry Pi is a trademark of the Raspberry Pi Foundation

UPS PIco. to be used with. Raspberry Pi B+, A+, B, and A. HAT Compliant. Raspberry Pi is a trademark of the Raspberry Pi Foundation UPS PIco Uninterruptible Power Supply with Peripherals and I 2 C control Interface to be used with Raspberry Pi B+, A+, B, and A HAT Compliant Raspberry Pi is a trademark of the Raspberry Pi Foundation

More information

Your EdVenture into Robotics You re a Controller

Your EdVenture into Robotics You re a Controller Your EdVenture into Robotics You re a Controller Barcode - Clap controlled driving meetedison.com Contents Introduction... 3 Getting started... 4 EdVenture 1 Clap controlled driving... 6 EdVenture 2 Avoid

More information

MODEL 5010 DUAL CHANNEL SMOKE/FIRE DETECTION MODULE

MODEL 5010 DUAL CHANNEL SMOKE/FIRE DETECTION MODULE DESCRIPTION MODEL 5010 DUAL CHANNEL SMOKE/FIRE DETECTION MODULE DESCRIPTION The SST Model 5010 Two Channel Smoke/Fire Detection Module provides two independent detection input channels for the NOVA-5000

More information

3 Slot Payphone Controller

3 Slot Payphone Controller 5A2 3 Slot Payphone Controller The 3 Slot Payphone -- Part of American History Building a Coin Relay Controller Version S1BX Instruction Manual and Safety Precautions It is very important that for your

More information

XBee USB Adapter Board (#32400)

XBee USB Adapter Board (#32400) 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

The Radio-Kits Digital SWR meter kit Construction and user manual

The Radio-Kits Digital SWR meter kit Construction and user manual The Radio-Kits Digital SWR meter kit Construction and user manual Author - Steve Drury G6ALU List of contents Section Page no. 1. Features and specifications 2 2. Introduction 2. Construction 4. General

More information

The new Velleman Projects catalogue is now available. Download your copy here: www.vellemanprojects.eu

The new Velleman Projects catalogue is now available. Download your copy here: www.vellemanprojects.eu The new Velleman Projects catalogue is now available. Download your copy here: www.vellemanprojects.eu Modifications and typographical errors reserved - Velleman nv. H8098 IP 2 (rev.1.0) Velleman NV, Legen

More information

Physics 3330 Experiment #2 Fall 1999. DC techniques, dividers, and bridges R 2 =(1-S)R P R 1 =SR P. R P =10kΩ 10-turn pot.

Physics 3330 Experiment #2 Fall 1999. DC techniques, dividers, and bridges R 2 =(1-S)R P R 1 =SR P. R P =10kΩ 10-turn pot. Physics 3330 Experiment #2 Fall 1999 DC techniques, dividers, and bridges Purpose You will gain a familiarity with the circuit board and work with a variety of DC techniques, including voltage dividers,

More information

Business/Home GSM Alarm System. Installation and User Manual

Business/Home GSM Alarm System. Installation and User Manual Business/Home GSM Alarm System Installation and User Manual Brief Introduction: GSM 900/1800/1900 bands, can be used in most parts of the world Full duplex communication with the host Monitor the scene

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

How to build your first Robot! Full, step by step Instructions

How to build your first Robot! Full, step by step Instructions How to build your first Robot! Full, step by step Instructions How to make your first Robot By Frits fritsl Lyneborg http://letsmakerobots.com/user/4 PDF by servello For more info, latest version and where

More information

Nixie Clock Universal Kit V1.08. Assembly and Operation. Software Version 6.3 Revision 11. 11. 2012

Nixie Clock Universal Kit V1.08. Assembly and Operation. Software Version 6.3 Revision 11. 11. 2012 Nixie Clock Universal Kit V1.08 Assembly and Operation Software Version 6.3 Revision 11. 11. 2012 This document is copyrighted. No parts of this documentation may be used commercially. Nixie Clock Kit

More information

How To Make A Feedback Decoder For A Model Railroad

How To Make A Feedback Decoder For A Model Railroad BMD16N version 1.2 Feedback decoder with 16 contacts for the S88-bus Compatible with a.o. Märklin Digital, Uhlenbrock Intellibox, Fleischmann Twin-Center and LDT HSI-88 Compatible with the s88-n standard

More information

Total solder points: 167 Difficulty level: beginner 1 2 3 4 5 advanced DMX CONTROLLED RELAY K8072 ILLUSTRATED ASSEMBLY MANUAL

Total solder points: 167 Difficulty level: beginner 1 2 3 4 5 advanced DMX CONTROLLED RELAY K8072 ILLUSTRATED ASSEMBLY MANUAL Total solder points: 167 Difficulty level: beginner 1 2 3 4 5 advanced DMX CONTROLLED RELAY K8072 Control a relay by means of the wellknown DMX512 protocol. ILLUSTRATED ASSEMBLY MANUAL H8072IP-1 Features

More information

TECHNICAL BULLETIN ALL S2 CX S. BEHR Heater system: modifications

TECHNICAL BULLETIN ALL S2 CX S. BEHR Heater system: modifications page CX, BEHR heating unit, level 3 modification:. The heating fan motor (935) (Bosch CPB 2V 23.404) can be swapped by, i.e. a Bosch DPD 2V 3.26.7 double fan motor from a BMW5??. One of the shaft ends

More information