Unit 2. Computer Control. PIC stands for PROGRAMMABLE INTERFACE CONTROLLER. A PIC chip takes in input signals and then controls output transducers

Size: px
Start display at page:

Download "Unit 2. Computer Control. PIC stands for PROGRAMMABLE INTERFACE CONTROLLER. A PIC chip takes in input signals and then controls output transducers"

Transcription

1 Unit 2 Computer Control PIC stands for PROGRAMMABLE INTERFACE CONTROLLER A PIC chip takes in input signals and then controls output transducers Name: Form:

2 2

3 ASIC or Application Specific Integrated Circuits Examples of ASICs are 741 OPERATIONAL AMPLIFIER like you saw in the electronics section or a 555 TIMER. Each of these examples has one specific application. An Op Amp amplifies; a 555 Timer produces time control. However they look exactly the same. The advantages of ASICs are that they are cheap around 35p depending on which ASIC you buy. They have one particular application and there are circuits available to download that use them. They are not versatile as they only have one function and they can not be upgraded or reprogrammed. They need to be soldered into a PCB and connected to other components to make them work. The 555 timer can sink and source up to 300mA which is very useful for directly controlling a relay. But both the 555 and the 741only have one output pin. The 741 has two input pins and these are used to compare voltages together. Both the 555 and the 741 come in 8 pin DIL (DUAL in LINE) packages. The 555 timer only has one input pin, but it can be used in two ways The PIC chip or Programmable Interface Controller comes in a variety of sizes. PICAXE is a brand of such controller we use in school. They are referred to as microcontrollers. Some advantages of the micro-controller are: increased reliability because of smaller part count, reduced stock levels as less parts are needed, simplified product assembly, greater flexibility and adaptability since the features are written into micro controller program not hardwired in to the electronic hardware and rapid product development as the changes can be written in the software not the electronic hardware. However, to programme them you will need expensive out lay for computer equipment. They have multiple input and output pins, it can be updated, but can sink or source only up to 20mA. Compared to ASICs they are very expensive. PICAXE

4 Which is better an ASIC or a PIC chip? ASIC PIC Advantages Disadvantages Advantages Disadvantages Your answer: 4

5 Where are microcontrollers used? An example of a micro-controller in use is your microwave. The microcontroller will monitor a range of inputs from the door switch, keypad and provide outputs to the light, LCD display unit, turntable motor and magnetron. One single micro-controller can replace a number of discrete (separate) parts in a circuit to simplify the operation of a product. How are Microcontrollers used? Applications that make use of micro-controllers include: Alarm systems Household appliances Medical equipment Vehicle sub-systems some cars have up to 30 micro-controllers controlling fuel mix to central locking. Electronic instrumentation Are microcontrollers available in school? In industrial applications the micro-controllers will be programmed using a language called C. However for our applications in a school setting that level of programming will not be necessary. The micro-controller system we will be using in school is called the PIC AXE system, and the PIC AXE system makes use of a far simpler BASIC programming language called BASIC. The beauty of using the PIC AXE system of programming means that you can download the software at home from: Year 8 Programmable PIC PCB The PCB here is one which year 8 has used to programme and make all sorts of different products with. It can be programmed to perform a number of different functions. Count up down food timer Bike light Metronome KIT (knightrider) 5

6 Are there different types of PIC AXE Chips? PICAXE MICROCONTROLLERS PICAXE Type IC Size Memory (lines) I/O Pins Outputs Inputs ADC Data Memory Polled Interrupt COST PICAXE L 128-prog No 1.15 PICAXE-08M prog Yes 1.50 PICAXE-14M prog Yes 1.70 PICAXE-18M prog Yes 2.00 PICAXE-18X i2c Yes 3.00 PICAXE-20M prog Yes PICAXE-20X i2c Yes PICAXE-28X i2c Yes PICAXE-28X x i2c Yes 4.50 PICAXE-40X i2c Yes PICAXE-40X x i2c Yes PICAXE Type Suffix M IC size Memory (lines) I/O Outputs Inputs ADC Data Memory Polled Interrupt refers to the order code of the chip M means music refers to the number of legs refers to the maximum number lines of programming code you can use. refers to the number of INPUTs or OUTPUTs you can connect to the chip refers to the dedicated Output connections refers to the dedicated Input connections refers to the number of ANALOGUE to DIGITAL CONVERTERS there are on the chip. L means low resolution. refers to the READ in information that can be stored refers to whether or not you can parallel process instructions However the PIC chip on its own cannot operate a system. The PIC chip will need to be interfaced (connected) to the outside world by designing a circuit and then a Printed Circuit Board (PCB). 6

7 What does a PICAXE chip look like? The N Identifies pin 1 The input and output components can then be connected to the PIC chip via the copper tracks on the PCB and the program running on the PIC chip will operate the system in a predetermined sequence. What are the rules when using a PICAXE chip? Volts Volts Serial In 2 7 Pin 0 OUTPUT and Serial Out Pin 4 In/Out 3 6 Pin 1 Input & Analogue In Pin 3 Input only 4 5 Pin 2 In/Out PIC AXE Rules 1 The maximum voltage used with a PICAXE CHIP is 5 Volts 2 PIN 0 is OUTPUT and Serial OUT 3 PIN 1 is INPUT/OUTPUT or Analogue IN 4 PIN 2 is INPUT or OUTPUT 5 PIN 3 is INPUT ONLY 6 PIN 4 is INPUT or OUTPUT 7

8 7 LEG 2 is 8 LEG 1 is 9 Leg 8 is 10 The analogue input is on PIN 8

9 How can I tell a PIC chip what I want it to do? PROGRAMMING Writing a programme is about sequencing what you want the system to do. What do you think sequencing means? At the start of a control system it is useful to write a control statement. If.. then.. For example: If it the room gets dark then switch on a light. From this statement a sequence of instructions can be written. 1. If it is dark then switch on light 2. Switch off the light 3. Go to instruction 1 However what is wrong with this sequence? (think logically) Write an improved set of instructions here 9

10 Is there another way to write a computer programme? You can write a programme to control a device by using a more visual method called FLOWCHARTING. Flowcharts use symbols. Start or Stop a flow chart N Y Word bank Label the boxes by using these descriptions: Define a SUB(routine) dotted lines GOSUB(routine) straight lines Decision (Yes and No) Action, Pause or Delay (rectangular) 10

11 A typical flow chart used to flash LEDs after a button has been pressed Computer Control Start N Is the switch pressed? Y Switch on LED 1 for 1s NOTE how many things are happening inside this one action box? Switch off LED 1 for 1s Switch on LED 2 for 1s Switch off LED 2 for 1s Switch on LED 3 for 1s Switch off LED 3 for 1s Switch on LED 4 for 1s Switch off LED 4 for 1s Switch on LED 5 for 1s Switch off LED 5 for 1s Switch on motor 1 for 1s Switch off motor 1 for 1s Switch on buzzer 1 for 1s What is the limitation of this flowchart? (hint how many times will the LEDS flash? Switch off buzzer 11

12 SAQ 1. Draw the flowchart symbol for a decision, include directional arrows. [3] 2. Name three advantages of using MICROCONTROLLERS [3] 3. What does PIC stand for? [3] 4. Name three uses for microcontrollers [3] 5. How can you identify pin number 1 on any chip? [1] 6. Draw an action box as used in a flow chart, include directional arrows. [2] A* = 13, A = 11, B = 9, C = 8, D = 6, E = 4, F = 3, G = 2 12

13 Task 1 Designing a PCB Using what you know about electronics design a circuit to light up 4 LEDS from PIC Chip when you press a push button. Draw your circuit here: Now you will earn how to convert your circuit into a PCB using Quickroute 4.0 Start Programmes Subjects Technology Quickroute 13

14 QUICKROUTE is a piece of software that will convert a SCHEMATIC diagram into a PCB layout. It is COMPUTER AIDED DESIGNING (CAD) using electronics. Step 1 Draw your schematic diagram Right mouse click on the symbols menu Next select the 8 pin DIL Step 2 Click where you want to drop the component and enter the details as shown opposite. NOTE In the OPTIONS SYMBOL menu you can toggle on/off DISPLAY IDENTS to show or not show the labels Step 3 Next select symbols and the menu for passive res/cap/ind and look for the symbol No. 74 RES STD 0.25W (resistor standard 0.25 Watts) 14

15 Place the resistors where they are in your circuit diagram and give them the correct values. Step 4 Rotate and place resistors for the input potential divider circuit. Step 5 Add the GENERIC LED from the SEMI DIODE, TRANSISTOR menu. 15

16 Step 6 Add a voltage source from the SIMULATOR SPICE menu symbol NUMBER 16. Step 7 Connect up your circuit. Left click the line icon. Left click where you want it to start. Left click where you want it to connect. Right mouse click to end the line. To delete Left click the select tool to select a line and press delete. Step 8 Check your circuit looks similar to this one 16

17 Step 9 In this image the DISPLAY IDENTS are toggled ON. The schematic is now finished save it to a folder called TECHNOLOGY and call it PICDR1.BUT you can only use 7 letters with no spaces. Print off your SCHEMATIC DIAGRAM and stick it into your sketch book. The next stages are: NET COMPILE and then SCHEMATIC CAPTURE Read on only when you have saved your file 17

18 Changing the schematic into a PCB layout. Step 1 Click the net compile icon. Step 2 look for faults where joints have not been made and fix them e.g. this line is not joined delete the line and do it again. Step 3 click SCHEMATIC CAPTURE and the SCHEMATIC drawing will be converted into a rats nest PCB format. The symbols have been changed into their component layouts ready for soldering. CLICK YES to drawing will be lost. Save this file as PCBPIC1 The RATS NEST is an untidy rubber banded drawing too big to make and needs proper routing. 18

19 Step 4 Open up QUICKROUTE again, so you have 2 copies open and open up the PICDR.SCH. Now you have one copy of your SCHEMATIC and one copy of your PCB Step 5 Rearrange your components to make the board as small as possible. Rotate the components so they look like your schematic drawing. SAVE YOUR FILE as PCBPIC1 Step 5 Double click the components and using your schematic diagram label the components correctly. Start at R1 and work through. Step 6 Rearrange to make the PCB as small as possible and change the LED symbol for one found in the symbols menu. The rubber bands remain behind. 19

20 Step 7 Add copper tracks from the NET LINE menu No (0.03 inches) Step 7 From the VIEW menu click CURRENT LAYER and only the orange layer will be shown. No add ROUND PAD no. 72 to MOST of the pads use No. 88 for the LEDs Step 8 Using the T tool label the PCB Note LEDS moved so they will fit next to each other Step 9 Delete the symbols and flip so it can be used as the underneath acetate. 20

21 Step 10 Add the stereo socket for programming. Downloading the Program The serial download circuit is identical for all PIC AXE chips. The circuit consists of 3 wires from the PIC AXE chip to the serial port of the computer. One wire sends data to the serial input of the PIC AXE, one wire transmits data from the serial output of the PIC AXE to the computer, and the third wire is the common ground line between PIC AXE and computer Download stereo socket Above View 22K Serial Out Serial In 0V 10K PICAXE How can I get a 5 volt supply from a 6Volt battery? 4 x 1.5 Volts = Volt drop now 5.3 Volts to PIC chip circuit 100µF 21

22 Step 10 should look like this. The stereo socket has been added A thin outline added Copper sections filled in to assist in the speed of etching the board Your name on the PCB Must be added 22

23 Writing Programmes Programming your chip Checklist Is the battery connected? Have you got a programming jumper? Is the lead connected into the serial port? Have you checked the quality of your soldered joints? Are you using a PICAXE 08? Is the download circuit correct on your PCB? Is the software set up for the PICAXE 08? Serial output of PC 6V battery 23

24 Program 1: Control statement: If the button is pressed light up the LEDS. If is is pressed again turn them off. PIC AXE 08 MODE. If this is wrong click view options and select

25 Programme 2 Control Statement: If button is pressed all lights flash on and off quickly. When pressed again lights go off 25

26 Programme 3 Exercise Timer control statement: If the button is pressed light up 3 leds. Turn one off every 5 seconds until a minute is up then flash one 5 times. Notice this one has a count feature Adding 1 to a variable b0 and then testing its value 26

27 Programme 4 Egg Timer: If the button is on and extinguish LEDS in sequence for 3 and half minutes 27

28 Programme 5 Programmed Nightlight: If the button is pressed then switch on all LEDS and switch them off one at a time after every 5 minutes. BUT THERE IS A FAULT IN THIS PROGRAMME. FIND IT AND FIX IT Think about how to test it without waiting for 5 minutes at a time. 28

29 For more information about the PICAXE READ the booklet from the website 29

30 Advanced programming Turning your PCB into a hot cold thermometer using a PICAXE 08 M chip 1. Remove the LED on PIN1 2. Connect a thermistor to PIN 1 (ADC) 3. Use the debug 0 and readadc1, b0 command 4. Read off the values of temperature on the screen 5. Use these values along with the VAR command to make a 3 LED thermometer Control statement: Turn on 2 LEDS at room temperature; 3 LEDS if it is hotter than room temperature and only 1 if it is colder than room temperature. 30

RKP08 Component List and Instructions

RKP08 Component List and Instructions RKP08 Component List and Instructions PCB layout Constructed PCB RKP08 Scematic RKP08 Project PCB Page 1 Description The RKP08 project PCB has been designed to use PIC microcontrollers such as the Genie

More information

ELECTRONIC DICE CHIP FACTORY ELECTRONIC DICE PROJECT. What is a microcontroller? Example use of a microcontroller.

ELECTRONIC DICE CHIP FACTORY ELECTRONIC DICE PROJECT. What is a microcontroller? Example use of a microcontroller. 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

Laboratory of Sensors Engineering Sciences 9 CFU

Laboratory of Sensors Engineering Sciences 9 CFU Laboratory of Sensors Engineering Sciences 9 CFU Contacts Alexandro Catini catini@ing.uniroma2.it Phone: +39 06 7259 7347 Department of Electronic Engineering First Floor - Room B1-07b Course Outline THEORY

More information

Programmable Control. Name Class Teacher. Ellon Academy Technical Faculty

Programmable Control. Name Class Teacher. Ellon Academy Technical Faculty Programmable Control Name Class Teacher Ellon Academy Technical Faculty Learning Intentions o Gain the ability to design and evaluate solutions to engineering problems in a range of contexts o I will gain

More information

The GENIE Light Kit is ideal for introducing simple lighting projects, such as an electronic die, a wearable badge or a night-time warning system.

The GENIE Light Kit is ideal for introducing simple lighting projects, such as an electronic die, a wearable badge or a night-time warning system. Introduction 1 Welcome to the GENIE microcontroller system! The GENIE Light Kit is ideal for introducing simple lighting projects, such as an electronic die, a wearable badge or a night-time warning system.

More information

What are output transducers An output transducer will convert electrical signals passed to it by the process into another form of energy.

What are output transducers An output transducer will convert electrical signals passed to it by the process into another form of energy. What are output transducers An output transducer will convert electrical signals passed to it by the process into another form of energy. ACTIVITY Can you find the symbols of the output components listed

More information

09/05/2014. Engaging electronics for the new D&T curriculum. Geoff Hampson Managing Director of Kitronik. Presentation overview

09/05/2014. Engaging electronics for the new D&T curriculum. Geoff Hampson Managing Director of Kitronik. Presentation overview Presentation overview Engaging electronics for the new D&T curriculum Geoff Hampson Managing Director of Kitronik What to include Free web resources Electronic project ideas Using programmable components

More information

revolution GETTING STARTED Appendix H - Frequently Asked Questions (FAQ). Section 1 92

revolution GETTING STARTED Appendix H - Frequently Asked Questions (FAQ).  Section 1 92 Section 1 92 Appendix H - Frequently Asked Questions (FAQ). Where can I purchase PICAXE microcontrollers? All microcontrollers can be purchased from within the PICAXE section of the online store at www.tech-supplies.co.uk

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

solutions for teaching and learning

solutions for teaching and learning RKP18Motor Component List and Instructions PCB layout Constructed PCB Schematic Diagram RKP18Motor Project PCB Page 1 Description The RKP18Motor project PCB has been designed to use PIC microcontrollers

More information

3. The circuit is composed of 1 set of Relay circuit.

3. The circuit is composed of 1 set of Relay circuit. Part Number : Product Name : FK-FA1420 ONE CHANNEL 12V RELAY MODULE This is the experimental module for a relay controller as the fundamental controlling programming. It is adaptable or is able to upgrade

More information

Introduction 1. Liquid crystal display (16 characters by 2 rows) Contrast dial: turn the dial to adjust the contrast of the display (see page 5)

Introduction 1. Liquid crystal display (16 characters by 2 rows) Contrast dial: turn the dial to adjust the contrast of the display (see page 5) Welcome to the GENIE Serial LCD module. Introduction 1 The GENIE Serial LCD module allows GENIE-based projects to display messages on a 16 character by 2 row liquid crystal display (LCD). This worksheet

More information

solutions for teaching and learning

solutions for teaching and learning RKOneAnalogue Component List and Instructions PCB layout Constructed PCB Schematic Diagram RKOneAnalogue Software Development PCB Page 1 Description The RKOneAnalogue software development PCB has been

More information

The PICAXE VSM Tutorial is split into a number of chapters. Each chapter can be downloaded free of charge from the website.

The PICAXE VSM Tutorial is split into a number of chapters. Each chapter can be downloaded free of charge from the  website. PICAXE VSM Tutorial Part 1 The PICAXE VSM Tutorial is split into a number of chapters. Each chapter can be downloaded free of charge from the www.picaxevsm.com website. Part 1 Part 2 Part 3 Part 4 Park

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

XYLOPHONE KIT ESSENTIAL INFORMATION. Version 2.0 CREATE YOUR OWN ELECTRONIC MUSICAL INTRUMENT WITH THIS

XYLOPHONE KIT ESSENTIAL INFORMATION. Version 2.0 CREATE YOUR OWN ELECTRONIC MUSICAL INTRUMENT WITH THIS ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS CREATE YOUR OWN ELECTRONIC MUSICAL INTRUMENT WITH THIS XYLOPHONE KIT Version 2.0 Build Instructions

More information

RECORD & PLAYBACK KIT

RECORD & PLAYBACK KIT ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS ADD AN AUDIO MESSAGE TO YOUR PRODUCT WITH THIS RECORD & PLAYBACK KIT Version 2.1 Build Instructions

More information

PIC DESIGN (version 1) 2/11/2009

PIC DESIGN (version 1) 2/11/2009 PIC DESIGN (version 1) 2/11/2009 The decision to design and construct a custom microcontroller was dictated by both practical and educational reasons. Although microcontroller development boards are readily

More information

DELUXE STEREO AMPLIFIER KIT

DELUXE STEREO AMPLIFIER KIT ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS CREATE YOUR OWN SPEAKER DOCK WITH THIS DELUXE STEREO AMPLIFIER KIT Version 2.0 Build Instructions

More information

AXE033 SERIAL/I2C LCD & CLOCK

AXE033 SERIAL/I2C LCD & CLOCK AXE033 SERIAL/I2C LCD & CLOCK 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

PICAXE EXPERIMENTER BOARD (AXE090)

PICAXE EXPERIMENTER BOARD (AXE090) (AXE00) Description: The PICAXE experimenter board allows circuits for any size/revision of PICAXE chip ( / / ) to be quickly tested using a prototyping breadboard. The experimenter board provides power

More information

Touch Control Switch + - R6 R4 R8 R7 CAT# Grading. Assembly Instructions by Earl D. Gates SUNY Oswego Fall Conference 2007.

Touch Control Switch + - R6 R4 R8 R7 CAT# Grading. Assembly Instructions by Earl D. Gates SUNY Oswego Fall Conference 2007. Grading Name: Class: Shade the number in column A that reflects your ability. In column B, have your instructor do the same. 6. Ability to identify and use basic electronic assembly tools. 8. Ability to

More information

Strobe Light. Student Lab Guide. Engineering Teaching Laboratory. Lab Partner(s) Page 1 of 10

Strobe Light. Student Lab Guide. Engineering Teaching Laboratory. Lab Partner(s) Page 1 of 10 Strobe Light Student Lab Guide Engineering Teaching Laboratory Name Date Lab Partner(s) Page 1 of 10 NEW TERMS Electric Circuit: Electric circuits are paths for transmitting electric current, or moving

More information

QUASAR KIT No DIGITAL DOWN TIMER 99 MIN WITH PIC

QUASAR KIT No DIGITAL DOWN TIMER 99 MIN WITH PIC QUASAR KIT No 1173 - DIGITAL DOWN TIMER 99 MIN WITH PIC KIT 1173 is a digital countdown timer based on a micro controller, thus securing reliability and excellent operation under any circumstances. It

More information

12v Power Controller Project Board

12v Power Controller Project Board 12v Power Controller Project Board 12 Volt Power Controller Introduction This board provides three functions... DC power gate Low voltage disconnect Voltage / current display The typical usage for this

More information

SRI-02 Speech Recognition Interface

SRI-02 Speech Recognition Interface SRI-02 Speech Recognition Interface Data & Construction Booklet The Speech Recognition Interface SRI-02 allows one to use the SR-07 Speech Recognition Circuit to create speech controlled electrical devices.

More information

Example use of a microcontroller.

Example use of a microcontroller. 1 ELECTRONIC PETS 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

TKEY-1. CW touch key. (no electromechanical contacts) Assembly manual. Last update: June 20,

TKEY-1. CW touch key. (no electromechanical contacts) Assembly manual. Last update: June 20, TKEY-1 CW touch key (no electromechanical contacts) Assembly manual Last update: June 20, 2017 ea3gcy@gmail.com Updates and news at: www.ea3gcy.com Thanks for constructing the TKEY-1A CW touch key Have

More information

Schematic Diagram: R2,R3,R4,R7 are ¼ Watt; R5,R6 are 220 Ohm ½ Watt (or two 470 Ohm ¼ Watt in parallel)

Schematic Diagram: R2,R3,R4,R7 are ¼ Watt; R5,R6 are 220 Ohm ½ Watt (or two 470 Ohm ¼ Watt in parallel) Nano DDS VFO Rev_2 Assembly Manual Farrukh Zia, K2ZIA, 2016_0130 Featured in ARRL QST March 2016 Issue Nano DDS VFO is a modification of the original VFO design in Arduino Projects for Amateur Radio by

More information

AQA GCSE Design and Technology 8552

AQA GCSE Design and Technology 8552 AQA GCSE Design and Technology 8552 Systems approach to designing Unit 2 Energy, materials, systems and devices 6 Objectives Understand the principles of electronic systems Use systems diagrams and flowcharts

More information

629/P32 (X10/P32) PIC CHIP. On - Off Operating Instructions (Revision 2)

629/P32 (X10/P32) PIC CHIP. On - Off Operating Instructions (Revision 2) 629/P32 (X10/P32) PIC CHIP On - Off Operating Instructions (Revision 2) This manual is a living document, therefore it will change when needed to clarify and explain the operation of the 629/P32 (X10/P32)

More information

LED Knight Rider. Yanbu College of Applied Technology. Project Description

LED Knight Rider. Yanbu College of Applied Technology. Project Description LED Knight Rider Yanbu College of Applied Technology Project Description This simple circuit functions as a 12 LED chaser. A single illuminated LED 'walks' left and right in a repeating sequence, similar

More information

AXE Stack 18. BASIC-Programmable Microcontroller Kit. An inexpensive introduction to microcontroller technology for all ability levels

AXE Stack 18. BASIC-Programmable Microcontroller Kit. An inexpensive introduction to microcontroller technology for all ability levels Ltd AXE Stack 18 BASIC-Programmable Microcontroller Kit a division of An inexpensive introduction to microcontroller technology for all ability levels Free Windows interface software Programmable in BASIC

More information

Ca Bling! Pacificon 2011 Norcal Buildathon Project

Ca Bling! Pacificon 2011 Norcal Buildathon Project Ca Bling! Pacificon 2011 Norcal Buildathon Project 10/23/2011 ver 1.1 by W1REX / QRPme www.qrpme.com The Ca Bling! Kit is a small Picaxe micro controller development board designed by W1REX as a project

More information

Assembly Instructions (8/14/2014) Your kit should contain the following items. If you find a part missing, please contact NeoLoch for a replacement.

Assembly Instructions (8/14/2014) Your kit should contain the following items. If you find a part missing, please contact NeoLoch for a replacement. NeoLoch NLT-28P-LCD-5S Assembly Instructions (8/14/2014) Your kit should contain the following items. If you find a part missing, please contact NeoLoch for a replacement. Kit contents: 1 Printed circuit

More information

Introduction to microcontrollers

Introduction to microcontrollers Page 1 Page 2 Contents Introduction 2 Worksheet 1 - Switch on the LED 3 Worksheet 2 - Make the LED flash 5 Worksheet 3 - Keep the LED lit for a short time 7 Worksheet 4 - Set up a latch 9 Worksheet 5 -

More information

Guide To Making Schematic Components For ExpressSCH

Guide To Making Schematic Components For ExpressSCH Guide To Making Schematic Components For ExpressSCH The ExpressSCH program includes hundreds of components and symbols that you can use to draw your schematics. However, sometimes we may not have all of

More information

Instruction Manual for BE-SP3 Circuit. 10/21/07

Instruction Manual for BE-SP3 Circuit. 10/21/07 Page 1 of 54 Instruction Manual for BE-SP3 Circuit. 10/21/07 Page 1 Index: Page 2 BE-SP3 Circuit Specifications. Page 3-4 Intro to the BE-SP3. Page 5 Basics of serial to parallel. Page 6-7 ASCII Code.

More information

output devices. connected to the controller. data communications link. relay systems. user program. MECH1500Quiz1ReviewVersion2 Name: Class: Date:

output devices. connected to the controller. data communications link. relay systems. user program. MECH1500Quiz1ReviewVersion2 Name: Class: Date: Class: Date: MECH1500Quiz1ReviewVersion2 True/False Indicate whether the statement is true or false. 1. The number and type of I/Os cannot be changed in a fixed PLC. 2. In a PLC system, there is a physical

More information

Variable Power Supply Digital Control Circuit Diagram Using Lm317

Variable Power Supply Digital Control Circuit Diagram Using Lm317 Variable Power Supply Digital Control Circuit Diagram Using Lm317 DIGITAL POWER SUPPLY USING LM317 A Major Project Report Submitted partial fulfillment of the requirement for the award of the Degree of

More information

solutions for teaching and learning

solutions for teaching and learning Circuit Construction Op-Amp Comparator Project The circuit diagram on the right is the circuit for your project, it is called an op-amp comparator circuit, it is called a comparator circuit as it compares

More information

Electronic Lock CodeLock AVR 1 DIY electronic door lock

Electronic Lock CodeLock AVR 1 DIY electronic door lock Electronic Lock CodeLock AVR 1 DIY electronic door lock CodeLock AVR LCD CodeLock AVR electronic lock is realised with Atmel AVR micro-controller AT90S2313, ATtiny2313 or ATtiny45. 1 user code in the program

More information

MIAC-01 Now you are in control

MIAC-01 Now you are in control Page 1 Now you are in control General purpose industrial controller Full graphical programming language supplied A wide variety of applications Page 2 Introduction What does it do? MIAC (Matrix Industrial

More information

Engineering Diploma Resource Guide ST450 ETP Electronic Circuits (Engineering)

Engineering Diploma Resource Guide ST450 ETP Electronic Circuits (Engineering) Engineering Diploma Resource Guide ST40 ETP Electronic Circuits (Engineering) Introduction Electronics makes a fundamental difference to modern life. The birth of this technology is a story of the twentieth

More information

CORRIGENDUM ISSUED FOR NATIONAL COMPETITIVE BIDDING UNDER TEQIP PHASE-II

CORRIGENDUM ISSUED FOR NATIONAL COMPETITIVE BIDDING UNDER TEQIP PHASE-II CORRIGENDUM ISSUED FOR NATIONAL COMPETITIVE BIDDING UNDER TEQIP PHASE-II The prebid meeting for the packages to be purchased under national competitive bidding for TEQIP Phase II was held on 15/10/2013

More information

Mechatronics and Measurement. Lecturer:Dung-An Wang Lecture 6

Mechatronics and Measurement. Lecturer:Dung-An Wang Lecture 6 Mechatronics and Measurement Lecturer:Dung-An Wang Lecture 6 Lecture outline Reading:Ch7 of text Today s lecture: Microcontroller 2 7.1 MICROPROCESSORS Hardware solution: consists of a selection of specific

More information

High Power (15W + 15W) Stereo Amplifier

High Power (15W + 15W) Stereo Amplifier High Power (15W + 15W) Stereo Amplifier Build Instructions Issue 1.0 Build Instructions Before you put any components in the board or pick up the soldering iron, just take a look at the Printed Circuit

More information

Images Scientific OWI Robotic Arm Interface Kit (PC serial) Article

Images Scientific OWI Robotic Arm Interface Kit (PC serial) Article Images Scientific OWI Robotic Arm Interface Kit (PC serial) Article Images Company Robotic Arm PC Interface allows real time computer control and an interactive script writer/player for programming and

More information

Specification. 1.Power Supply direct from Microcontroller Board. 2.The circuit can be used with Microcontroller Board such as Arduino UNO R3.

Specification. 1.Power Supply direct from Microcontroller Board. 2.The circuit can be used with Microcontroller Board such as Arduino UNO R3. Part Number : Product Name : FK-FA1410 12-LED AND 3-BOTTON SHIELD This is the experimental board for receiving and transmitting data from the port of microcontroller. The function of FK-FA1401 is fundamental

More information

UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING MSC SYSTEMS ENGINEERING AND ENGINEERING MANAGEMENT SEMESTER 2 EXAMINATION 2016/2017

UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING MSC SYSTEMS ENGINEERING AND ENGINEERING MANAGEMENT SEMESTER 2 EXAMINATION 2016/2017 TW30 UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING MSC SYSTEMS ENGINEERING AND ENGINEERING MANAGEMENT SEMESTER 2 EXAMINATION 2016/2017 MICROPROCESSOR BASED SYSTEMS MODULE NO: EEM7016 Date: Wednesday 17 May

More information

Build Your Own Home Security System

Build Your Own Home Security System Build Your Own Home Security System Student Lab Guide Engineering Teaching Laboratory Name Date Lab Partner(s) NEW TERMS Electric Circuit: Electric circuits are paths for transmitting electric current,

More information

Locktronics PICmicro getting started guide

Locktronics PICmicro getting started guide Page 2 getting started guide What you need to follow this course 2 Using the built-in programs 3 Create your own programs 4 Using Flowcode - your first program 5 A second program 7 A third program 8 Other

More information

solutions for teaching and learning

solutions for teaching and learning RKAmp3 Component List and Instructions PCB layout Constructed PCB Schematic RKAmp3 Stereo Amplifier Page 1 Description The RKAmp3 stereo amplifier PCB has been designed around the 2 x 7watt stereo amplifier

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

Wireless Power Panel Meter (WPPM)

Wireless Power Panel Meter (WPPM) Wireless Power Panel Meter (WPPM) Kyle Coan & Phil Perrigo Senior Project Description Western Washington University November 3, 2009 Prof. Todd Morton Page 1 of 13 Introduction With recent development

More information

DMX512-4 Channel PWM Driver Board #805

DMX512-4 Channel PWM Driver Board #805 DMX512-4 Channel PWM Driver Board #805 Overview The 4-channel PWM driver board provides four open drain (collector) type outputs that can be directly controlled from a DMX512 network. The four channels

More information

ARRL ETP Solder Hour Clock Kit Construction Manual

ARRL ETP Solder Hour Clock Kit Construction Manual ARRL ETP Solder 101 24-Hour Clock Kit Construction Manual Do a complete parts check cross checking the individual parts against the parts list. Pay particular attention to the color code for the resistors:

More information

PIC Dev 14 Through hole PCB Assembly and Test Lab 1

PIC Dev 14 Through hole PCB Assembly and Test Lab 1 Name Lab Day Lab Time PIC Dev 14 Through hole PCB Assembly and Test Lab 1 Introduction: The Pic Dev 14 is a simple 8-bit Microchip Pic microcontroller breakout board for learning and experimenting with

More information

DLA. DMX512 Analyzer. DLA Users Manual SV2_00 B.lwp copyright ELM Video Technology, Inc.

DLA. DMX512 Analyzer. DLA Users Manual SV2_00 B.lwp copyright ELM Video Technology, Inc. DLA DMX512 Analyzer DLA DLA-HH 1 Table Of Contents IMPORTANT SAFEGUARDS... 2 DLA OVERVIEW... 3 CONNECTION... 3 OPERATION... 3 HARDWARE SETUP... 4 DLA-HH (PORTABLE) LAYOUT... 4 CHASSIS LAYOUT... 4 DLA MENU

More information

INTRODUCTION TO THE PICAXE SYSTEM

INTRODUCTION TO THE PICAXE SYSTEM INTRODUCTION TO THE PICAXE SYSTEM A PIC microcontroller is often described as a computeronachip. It is an integrated circuit that contains memory, processing units, and input/output circuitry in a single

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

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

MP3 audio amplifier. Build Instructions. Issue 2.0

MP3 audio amplifier. Build Instructions. Issue 2.0 MP3 audio amplifier Build Instructions Issue 2.0 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). The components

More information

Microprocessors/Microcontrollers

Microprocessors/Microcontrollers Microprocessors/Microcontrollers A central processing unit (CPU) fabricated on one or more chips, containing the basic arithmetic, logic, and control elements of a computer that are required for processing

More information

Universal Keying Adapter 3+

Universal Keying Adapter 3+ Universal Keying Adapter 3+ The Universal Keying Adapter Version 3+ kit will allow you to key nearly any transmitter or transceiver with a straight key, electronic keyer, computer serial or parallel port

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

Connecting LEDs to the ADB I/O

Connecting LEDs to the ADB I/O Application Note AN-2 By Magnus Pettersson September 26 1996 Connecting LEDs to the I/O Introduction The following notes are for those of you who are a bit inexperienced with hardware components. This

More information

Pacific Antenna Two Tone Generator

Pacific Antenna Two Tone Generator Pacific Antenna Two Tone Generator Description Our Two Tone Generator kit provides two non-harmonic, sine wave signals for testing audio circuits Outputs of approximately 700Hz and 1900Hz and the combination

More information

Touch Sense Controller

Touch Sense Controller Touch Sense Controller Paul Boston May 11, 2011 (Modified May 22, 2014) (Modified Dec 28, 2015) The Touch Sense Controller is a microprocessor-controlled circuit designed to provide a switch closure when

More information

Prototyping & Engineering Electronics Kits Basic Kit Guide

Prototyping & Engineering Electronics Kits Basic Kit Guide Prototyping & Engineering Electronics Kits Basic Kit Guide odysseyboard.com Please refer to www.odysseyboard.com for a PDF updated version of this guide. Guide version 1.0, February, 2018. Copyright Odyssey

More information

Supplement for module D041 incl. ATMega8 Prozessor

Supplement for module D041 incl. ATMega8 Prozessor Supplement for module D041 incl. ATMega8 Prozessor V 1.4 16. March 2006 2006 by Peter Küsters This document is in copyright protected. It is not permitted to change any part of it. It is not permitted

More information

Onwards and Upwards, Your near space guide Overview of the NearSys Two Sensor Temperature Array Figure 1. A complete Two Sensor Temperature Array

Onwards and Upwards, Your near space guide Overview of the NearSys Two Sensor Temperature Array Figure 1. A complete Two Sensor Temperature Array The NearSys Two Sensor Temperature Array is a kit that permits a BalloonSat to measure two separate temperatures. When plugged into a flight computer like the BalloonSat Mini, the flight computer provides

More information

Board Of Education USB (#28850)

Board Of Education USB (#28850) 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 Sales: sales@parallax.com 1-888-512-1024 Tech Support: support@parallax.com 1-888-99-STAMP Web Site:

More information

REDACTION BASED ATM MONITORING SYSTEM USING MSP 430

REDACTION BASED ATM MONITORING SYSTEM USING MSP 430 REDACTION BASED ATM MONITORING SYSTEM USING MSP 430 Introduction: Now a day s electronic devices become smaller and lower in power Requirements, and they are less expensive. we have begun to adorn our

More information

Figure 1. A complete Temperature Sensor

Figure 1. A complete Temperature Sensor The NearSys Temperature Sensor is a kit that permits a BalloonSat to measure the temperature of the air, interior, or object the sensor itself is placed in contact with. When plugged into a flight computer

More information

MB68k-100 Assembly and Bench Check, A

MB68k-100 Assembly and Bench Check, A MB68k-100 Assembly and Bench Check, A The document outlines the board assembly procedure. The Troubleshoot Testing section also offers some optional inline assembly test steps. At the writing of this document,

More information

Pacific Antenna Easy TR Switch Kit

Pacific Antenna Easy TR Switch Kit Pacific Antenna Easy TR Switch Kit Kit Description The Easy TR Switch is an RF sensing circuit with a double pole double throw relay that can be used to automatically switch an antenna between a separate

More information

Programmable timer PICAXE programming editor guide Page 1 of 13

Programmable timer PICAXE programming editor guide Page 1 of 13 Programmable timer PICAXE programming editor guide Page 1 of 13 This programming guide is for use with: A programmable timer board. PICAXE programming editor software. When the software starts a menu is

More information

Innovative Electronics for a Changing World INDEX

Innovative Electronics for a Changing World INDEX Innovative Electronics for a Changing World INDEX 1. SYSTEM DESCRIPTION 2. BOARD CONNECTIONS terminals and indicators 3. CONNECTION DIAGRAM 4. START UP GUIDE and passwords 5. HOME PAGE 6. STATUS PAGE 7.

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

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

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

3.The circuit board is composed of 4 sets which are 16x2 LCD Shield, 3 pieces of Switch, 2

3.The circuit board is composed of 4 sets which are 16x2 LCD Shield, 3 pieces of Switch, 2 Part Number : Product Name : FK-FA1416 MULTI-FUNCTION 16x2 LCD SHIELD This is the experimental board of Multi-Function 16x2 LCD Shield as the fundamental programming about the digits, alphabets and symbols.

More information

3 pyro output datalogger altimeter with an ATmega 328 microcontroller Kit assembly instructions

3 pyro output datalogger altimeter with an ATmega 328 microcontroller Kit assembly instructions 3 pyro output datalogger altimeter with an ATmega 328 microcontroller Kit assembly instructions Version date Author Comments 1.0 29/05/2013 Boris du Reau Initial version Rocket Type Micro-max Model Mid

More information

Laboratory 10. Programming a PIC Microcontroller - Part II

Laboratory 10. Programming a PIC Microcontroller - Part II Laboratory 10 Programming a PIC Microcontroller - Part II Required Components: 1 PIC16F88 18P-DIP microcontroller 1 0.1 F capacitor 3 SPST microswitches or NO buttons 4 1k resistors 1 MAN 6910 or LTD-482EC

More information

Silicon Steroids for the Stamp Help Your Projects Heft Big Loads Using Switching Transistors

Silicon Steroids for the Stamp Help Your Projects Heft Big Loads Using Switching Transistors Column #6, August 1995 by Scott Edwards: Silicon Steroids for the Stamp Help Your Projects Heft Big Loads Using Switching Transistors ONE of the outstanding characteristics of the PIC microcontroller used

More information

Design and Technology: Electronic Products

Design and Technology: Electronic Products Write your name here Surname Other names Pearson Edexcel GCSE Centre Number Candidate Number Design and Technology: Electronic Products Unit 2: Knowledge and Understanding of Electronic Products Friday

More information

BASIC Stamp 1 Project Board (#27112) Development / Education Platform for the BASIC Stamp 1

BASIC Stamp 1 Project Board (#27112) Development / Education Platform for the BASIC Stamp 1 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.stampsinclass.com

More information

Electronics Construction Manual

Electronics Construction Manual Electronics Construction Manual MitchElectronics 2018 Version 1 07/05/2018 www.mitchelectronics.co.uk CONTENTS Introduction 3 How To Solder 4 Resistors 5 Capacitors 6 Diodes and LEDs 7 Switches 8 Transistors

More information

Ultimate LPF kit: Relay-switched LPF kit

Ultimate LPF kit: Relay-switched LPF kit Ultimate LPF kit: Relay-switched LPF kit PCB Revision 4 1. Introduction Thank you for purchasing the QRP Labs relay-switched low-pass filter (LPF) kit. This kit is designed to complement the Ultimate3

More information

Part 2: Building the Controller Board

Part 2: Building the Controller Board v3.01, June 2018 1 Part 2: Building the Controller Board Congratulations for making it this far! The controller board uses smaller components than the wing boards, which believe it or not, means that everything

More information

PROGRAMMING AND CUSTOMIZING

PROGRAMMING AND CUSTOMIZING PROGRAMMING AND CUSTOMIZING THE PICAXE MICROCONTROLLER SECOND EDITION DAVID LINCOLN Mc Grauu Hill New York Chicago San Francisco Lisbon London Madrid Mexico City Milan New Delhi San Juan Seoul Singapore

More information

Now you are in control

Now you are in control Page 1 Now you are in control General purpose industrial controller Full graphical programming language supplied A wide variety of applications trademark of. Page 2 Introduction What does it do? MIAC (Matrix

More information

EVAL-ADT7516. SPI -/I 2 C -Compatible, Temperature Sensor, 4-Channel ADC and Quad Voltage Output DAC FEATURES APPLICATIONS

EVAL-ADT7516. SPI -/I 2 C -Compatible, Temperature Sensor, 4-Channel ADC and Quad Voltage Output DAC FEATURES APPLICATIONS SPI -/I 2 C -Compatible, Temperature Sensor, 4-Channel ADC and Quad Voltage Output DAC EVAL-ADT7516 FEATURES Easy evaluation of the ADT7516 Can be used to emulate ADT7517 and ADT7519 Evaluation software

More information

SNAP-MICRO Instruction manual Elenco Electronics Inc. Rev A

SNAP-MICRO Instruction manual Elenco Electronics Inc. Rev A TM SNAP-MICRO I Instruction manual Elenco Electronics Inc. Rev A Index to Pages. About This Manual 3. SECTION : ELECTRONIC COMPONENTS 4-6 Connectors, Resistors, Switches, Diodes, Motors, Speakers, Transistors,

More information

MT2 Introduction Embedded Systems. MT2.1 Mechatronic systems

MT2 Introduction Embedded Systems. MT2.1 Mechatronic systems MT2 Introduction Embedded Systems MT2.1 Mechatronic systems Mechatronics is the synergistic integration of mechanical engineering, with electronics and intelligent computer control in the design and manufacturing

More information

Keywords Digital IC tester, Microcontroller AT89S52

Keywords Digital IC tester, Microcontroller AT89S52 Volume 6, Issue 1, January 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Digital Integrated

More information

None. MICROCONTROLLERS III

None. MICROCONTROLLERS III MICROCONTROLLERS III PREREQUISITES: MODULE 10: MICROCONTROLLERS II. OUTLINE OF MODULE 11: What you will learn about in this Module: Use of a much more powerful microcontroller: the PIC16F877 In-circuit

More information

Shack Clock kit PCB Revision: QCU Rev 1 or QCU Rev 3

Shack Clock kit PCB Revision: QCU Rev 1 or QCU Rev 3 1. Introduction Shack Clock kit PCB Revision: QCU Rev 1 or QCU Rev 3 Thank you for purchasing this QRP Labs Shack Clock kit. The kit uses the same PCB and bag of components as some other QRP Labs kits.

More information

solutions for teaching and learning

solutions for teaching and learning RKAmp1 Component List and Instructions PCB layout Constructed PCB Schematic RKAmp1 Stereo Amplifier Page 1 Description The RKAmp1 stereo amplifier PCB has been designed around the 2 x 1watt stereo amplifier

More information