reserved pulse width stim freq int/ext trig Amplitude

Size: px
Start display at page:

Download "reserved pulse width stim freq int/ext trig Amplitude"

Transcription

1 V A A +5V 1 RA1 10kOhm B B C D J2 6P4C (RJ11) To PC R5 470ohm U2 4N33 X1 RESONATOR 4 MHz U1 14 Vdd 5 Vss 4 RB7 MCLR/ RB6 RB5 RB4 6 INT/RB0 RB2 16 RB1 OSC1 15 OSC2 PIC16F84_ R1 6.8kohm reserved pulse width stim freq int/ext trig V (+) Jumper block J3 HDR2X4 +5V R4 330ohm LED1 C D E R2 0% 10kOhm Key = a Amplitude D1 IN4004 white T1 red J1 E F R3 6.8kohm white yellow 6.3 VCT 1/8" PHONE PLUG F IRL520N Q1 Electrodes G V (+) U3 LM78L05 G H To battery 9-18 V J4 Pwr jack center = (+) C1 4700uF IN Vreg OUT C2 10uF C3 0.1uF +5V Title: pktstim H/MDL POCKET STIMULATOR Designed by: WKD Document N 0001 Revision 1.0 Checked by: Date Oct. 20, 2001 Size A H Approved by: Sheet 1 of

2

3 C:\My Documents\Projects\LabEquip\PocketStim\pktstim.pcb (Silkscreen, Top layer, Bottom layer)

4 C:\My Documents\Projects\FESstim\Schematics\stimPCB.pcb (Silkscreen, Top layer, Bottom layer)

5 POCKET STIMULATOR BILL OF MATERIALS revised: oct-01 Ref What Vendor Vendor PN Cost Notes INTEGRATED CIRCUITS U1 PIC16F84-04/P, microcontroller, FLASH, 18-PDIP Jameco $ 5.95 U2 4N33 photodarlington optoisolator, 6-DIP Jameco $ 0.25 U3 78L05, 5V positive regulator, 100mA, TO-92 Jameco $ 0.17 CRYSTALS, OSCILLATORS X1 Resonator, ceramic w/ caps, 4.0 MHz Digi-Key X902-ND $ 0.56 SEMICONDUCTORS Q1 IRL520N HEXFET Power MOSFET, Ron=0.2ohm, 10A Digi-Key IRL520N $ 1.00 D1 Diode, 1N4004, 400V Jameco $ 0.05 PASSIVE COMPONENTS C1 Cap, electrolytic, radial, 4700uF, 25V Jameco $ 0.69 C2 Capacitor, 10uF 35V, dipped tantalum Jameco $ 0.49 C3 Capacitor, monolithic ceramic, 0.1uF, 50V, 20% Jameco $ 0.12 RA1 Resistor array, bussed, 10K, 8-pin SIP, 7 resistors Jameco $ 0.10 R1,R3-R5 Resistor, 1/4 W, 5% (garden variety, see schematic for values) R2 Pot, 10K, carbon, top adj, PC mount Digi-Key CT2265 $ 1.51 CONNECTORS J1 Audio jack, 3.5mm stereo, PC mount Digi-Key CP-3513 $ 0.69 J2 RJ11 modular jack, 6P4C, PC mount Jameco $ 0.49 J3 Header,.100", dual row, 8-pin Jameco $ 0.15 J4 DC Power jack, 2.1mm, male, pc board mount, Switchcraft RAPC722 Digi-Key SC1153-ND $ 1.08 EVERYTHING ELSE T1 Transformer, power, 6.3VCT/1.2A Jameco $ 5.95 LED1 LED, red, diffused, T1-3/4 Jameco $ 0.19 IC socket, machine tooled, solder, low profile, gold plated, 18 pin Jameco $ 0.49 Phone cable, gray, 4-cond, 100 ft Jameco $ 3.30 RJ11plug, 6P4C Jameco $ 0.11 Electrode cables (cut from six foot audio cable) All CB-387 $ 0.90 Electrode extension cables, 10 ft. All CB-371 $ 2.00 Battery, 9V Printed circuit board, ExpressPCB mini-board service, 3 boards $ Adapter, modular to DB25M Jameco $ 2.19 Shorting block, blue Jameco $ 0.10 ALTERNATE PARTS Toggle switch, submini, SPDT, right-angle, PC mount Jameco $ 1.49 Battery snap, 9V male, PC mount Digi-Key 593K $ 0.20 Battery snap, 9V female, PC mount Digi-Key 594K $ 0.24 Page 1 of 1

6 C:\My Documents\Projects\LabEquip\PocketStim\pktstim.c Printed on Sunday, October 21, 2001 at 21:03:07 Page1 /* FILE: pktstim.c DESCRIPTION: Code for "pocket" stimulator, the H/MDL simple, transformer output stage stimulator REVISION HISTORY: See end of file */ //--Includes #include <16F84.H> //--Setup commands #fuses PAR,XT,NOWDT,NOPROTECT,PUT #id 0x1234 // 4 digit id #use delay(clock= ) // 4 MHz resonator #use fast_io(a) #use fast_io(b) //--Pin definitions #define TRIG PIN_B0 // ext trigger #define PLSEOUT PIN_B1 // output pulse command #define LED PIN_B2 // LED (low = on) #define SEL1 PIN_B4 // ext trig select (H=ext trig) #define SEL2 PIN_B5 // stim frequency select (H=25 Hz, L=1 Hz) #define SEL3 PIN_B6 // PW select (H=600uS, L=300uS) #define SEL4 PIN_B7 // reserved //--Global variables short trigflag; // stim trigger //--Function declarations void main(void); void stim(void); /*********************************************************** Code starts here ***********************************************************/ void main(void) { //----Initialize some things. set_tris_a(0); set_tris_b(0xf1); // port A is all outputs // port B (hi=input,lo=output) output_high(led); // LED off setup_counters(rtcc_internal,rtcc_div_256); // setup RTCC ext_int_edge(h_to_l); // high-to-low edge on ext stim trig disable_interrupts(global); // no ints for now enable_interrupts(int_ext); // enable external interrupts

7 C:\My Documents\Projects\LabEquip\PocketStim\pktstim.c Printed on Sunday, October 21, 2001 at 21:03:07 Page2 trigflag = 0; delay_ms(10); // let all i/o lines settle //----Main loop which runs forever while (1) { // do forever if (input(sel1)) { // external trigger enable_interrupts(global); // accept ints set_rtcc(100); // initialize counter while (!trigflag) { // wait for stim trig if (!get_rtcc()) output_high(led); // if ctr rolls over, turn off LED trigflag = 0; // reset flag else { // here if internal stim trig delay_ms(40); // wait 40 msec output_high(led); // then turn off LED if (!input(sel2)) // if 1 Hz stim stim(); delay_ms(960); // wait some more // stim pulse /* Stim routine. Pulse for 300 or 600 usec. Using delay_us() routines gives acceptably (but not precisely) accurate pulses. For more accurate timing, see code for main lab stimulator */ void stim(void) { output_high(plseout); delay_us(298); if (input(sel3)) delay_us(298); output_low(plseout); output_low(led); // start pulse // wait pw u-sec // check width selection // a double width pw // stop pulse // turn on the LED /* External stim trigger interrupt service routine. Called on hi-lo transition of RB0/INT pin when interrupt is enabled */ #INT_EXT void ext_int_handler(void) { trigflag = 1; disable_interrupts(global); // no more ints /* REVISION HISTORY: 05/01 created by Durfee */

8

9

10

11

um-fpu64 Floating Point Coprocessor 28-pin Breakout Board Introduction Bare um-fpu64 28-pin Breakout Board

um-fpu64 Floating Point Coprocessor 28-pin Breakout Board Introduction Bare um-fpu64 28-pin Breakout Board Floating Point Coprocessor Breakout Board Introduction The breakout board has all of the required connections, and provides access to all um- FPU64 pins. It can be used as a development board or for permanently

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

Rapid40iXL PIC Prototyping PCB User Manual

Rapid40iXL PIC Prototyping PCB User Manual Description This is a PCB designed to facilitate the rapid prototyping of a device based on a 40 pin Microchip PIC microcontroller. To allow users to focus on their application, we take care of key housekeeping

More information

KPIC-0818P (V050919) Devices Included in this Data sheet: KPIC-0818P

KPIC-0818P (V050919) Devices Included in this Data sheet: KPIC-0818P Devices Included in this Data sheet: KPIC-0818P Features: Carefully designed prototyping area Accepts 8 pin PIC12 series micro-controllers Accepts 14 and 18 Pin PIC16 series Accepts some 8,14 and 18 pin

More information

Rapid28iXL PIC Prototyping PCB User Manual

Rapid28iXL PIC Prototyping PCB User Manual Description Features This is a PCB designed to facilitate the rapid prototyping of a device based on a 28 pin Microchip PIC microcontroller. To allow users to focus on their application, we take care of

More information

CV Arpeggiator Rev 2 Build Documentation.

CV Arpeggiator Rev 2 Build Documentation. CV Arpeggiator Rev Build Documentation. Last updated 8-0-03 The CV Arpeggiator is a modular synth project used for creating arpeggios of control voltage. It utilizes a custom programmed PIC 6F685 micro

More information

Rapid40i PIC Prototyping PCB User Manual

Rapid40i PIC Prototyping PCB User Manual Description This is a PCB designed to facilitate the rapid prototyping of a device based on a 40 pin Microchip PIC microcontroller. To allow users to focus on their application, we take care of key housekeeping

More information

LCD Prototype Circuit on Solderless Breadboard. 840 Pin Solderless Breadboard (http://www.digikey.com/ # ND)

LCD Prototype Circuit on Solderless Breadboard. 840 Pin Solderless Breadboard (http://www.digikey.com/ # ND) Solderless Breadboard Tutorial Cornerstone Electronics Technology and Robotics I Week 3 Solderless Breadboards: o Solderless breadboards are commonly used in experimentation or to make a prototype of a

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

Triori Game PART NO

Triori Game PART NO Triori Game PART NO. 2207865 -History Almost everyone knows the tic tac toe but few know the game Triori. Triori or Triara as it is called, is an ancient Greek game that was played in the sand or the streets

More information

Modtronix Engineering Modular Electronic Solutions SBC28DC. Single board computer for 28 pin DIP PICs

Modtronix Engineering Modular Electronic Solutions SBC28DC. Single board computer for 28 pin DIP PICs Modtronix Engineering Modular Electronic Solutions Single board computer for 28 pin DIP PICs Table of Contents 1 Introduction...2 2 Features...4 3 Expansion Connectors...5 3.1 Daughter Board Connectors...5

More information

ES-562/564U COMBINATION CLOCK/TIMER

ES-562/564U COMBINATION CLOCK/TIMER 142 SIERRA ST., EL SEGUNDO, CA 90245 USA (310)322-2136 FAX (310)322-8127 www.ese-web.com ES-562/564U COMBINATION CLOCK/TIMER OPERATION AND MAINTENANCE MANUAL The ES-562U/564U is a combination six digit

More information

H89-Z37 DOUBLE-DENSITY FLOPPY CONTROLLER

H89-Z37 DOUBLE-DENSITY FLOPPY CONTROLLER H8-Z37 DOUBLE DENSITY FLOPPY CONTROLLER 2015 H89-Z37 DOUBLE-DENSITY FLOPPY CONTROLLER Norberto Collado norby@koyado.com 6/6/2015 Revision History and Disclaimer Revision History Revision Date Comments

More information

DEV-1 HamStack Development Board

DEV-1 HamStack Development Board Sierra Radio Systems DEV-1 HamStack Development Board Reference Manual Version 1.0 Contents Introduction Hardware Compiler overview Program structure Code examples Sample projects For more information,

More information

Chill Interface PCB Assembly Instructions

Chill Interface PCB Assembly Instructions ExcelValley Chill Interface PCB Waveblaster Module MIDI Interface Board Chill Limited Edition V2 Assembly Kit Standalone midi interface board for Waveblaster synthesizer modules. Suitable for most Waveblaster

More information

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 8051 Intermidiate Development Board Product Manual Contents 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 1. Overview 2. Features The board is built on a high quality FR-4(1.6

More information

Uzebox Kit Assembly Guide

Uzebox Kit Assembly Guide Uzebox Kit Assembly Guide V1.3 Page 1 of 18 Revision History Version Date Author Description 1.0 01-Nov-2012 A.Bourque Initial release 1.1 6-Nov-2012 A.Bourque Minor corrections 1.2 28-Jan-2014 A.Bourque

More information

Shack Clock kit. U3S Rev 2 PCB 1. Introduction

Shack Clock kit. U3S Rev 2 PCB 1. Introduction Shack Clock kit U3S Rev 2 PCB 1. Introduction Thank you for purchasing the QRP Labs Shack Clock kit. This clock uses the Ultimate3S QRSS/WSPR kit hardware, but a different firmware version. It can be used

More information

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

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

More information

SBC65EC. Ethernet enabled Single Board Computer

SBC65EC. Ethernet enabled Single Board Computer Ethernet enabled Single Board Computer Table of Contents 1 Introduction...2 2 Features...3 3 Daughter Board Connectors...4 3.1 As a Daughter Board...5 3.2 Expansion boards...5 4 Interfaces...5 4.1 Ethernet...5

More information

4.0 Blue LED DCF77 Clock documentation

4.0 Blue LED DCF77 Clock documentation 4.0 Blue LED DCF77 Clock documentation 1. LED Clock Main Board PCB mounting: Mount and solder the eight wire bridges. Mount and solder resistors R16, R18, R20, R22. Mount and solder capacitors C1 C3 (pitch

More information

V1BOOST-STEPPER Unipolar Stepper Motor BoosterPack for the MSP430 LaunchPad. User s Guide

V1BOOST-STEPPER Unipolar Stepper Motor BoosterPack for the MSP430 LaunchPad. User s Guide V1BOOST-STEPPER Unipolar Stepper Motor BoosterPack for the MSP430 LaunchPad User s Guide Revised July 2012 CONTENTS 1 Introduction... 3 1.1 Overview... 3 1.2 Features... 3 1.3 Additional Information...

More information

ES-362U PRESETTABLE MASTER TIMER

ES-362U PRESETTABLE MASTER TIMER 142 SIERRA ST., EL SEGUNDO, CA 90245 USA (310)322-2136 FAX (310)322-8127 www.ese-web.com ES-362U PRESETTABLE MASTER TIMER OPERATION AND MAINTENANCE MANUAL The ES-362U is a four digit, presettable 100 minute

More information

DIY KIT 123. ATMEL 89xxxx PROGRAMMER

DIY KIT 123. ATMEL 89xxxx PROGRAMMER INTRODUCTION This kit is a powerful programmer for the Atmel 8051 family of microcontrollers. It supports the following devices: 89C1051, 89C2051 and 89C4051 89C51, 89LV51 89C52, 89LV52 89C55, 89LV55 89S8252,

More information

RC-210 Repeater Controller Assembly Manual

RC-210 Repeater Controller Assembly Manual Arcom Communications 24035 NE Butteville Rd Aurora, Oregon 97002 (503) 678-6182 arcom@ah6le.net RC-210 Repeater Controller Assembly Manual Hardware Version 3.0 Original Release Date September 13, 2004

More information

K191 3 Channel RGB LED Controller

K191 3 Channel RGB LED Controller K191 3 Channel RGB LED Controller 1 Introduction. This kit has been designed to function as a versatile LED control module. The LED controller provides 3 high current channels to create light effects for

More information

N8VEM S-100 BACKPLANE VERSION 04 MAY 3, 2015 J.B.

N8VEM S-100 BACKPLANE VERSION 04 MAY 3, 2015 J.B. N8VEM S-100 BACKPLANE VERSION 04 MAY 3, 2015 J.B. Background. This board is a copy of Andrew Lynch s Version 03 board (with 8 slots) but with added features. Added features: 9 SLOT Active Termination (copied

More information

Sierra Radio Systems. HamStack. Project Board Reference Manual V1.0

Sierra Radio Systems. HamStack. Project Board Reference Manual V1.0 Sierra Radio Systems HamStack Project Board Reference Manual V1.0 Welcome HamStack Project Board Reference Manual Revision 1.0.3 2011 George Zafiropoulos, KJ6VU and John Best, KJ6K This guide provides

More information

BMC24. MIDI TO GATE CONVERTER DOCUMENTATION. This documentation is for use with the "Euro Style" bottom board.

BMC24. MIDI TO GATE CONVERTER DOCUMENTATION. This documentation is for use with the Euro Style bottom board. BMC24. MIDI TO GATE CONVERTER DOCUMENTATION. This documentation is for use with the "Euro Style" bottom board. A. USING THE MIDI TO GATE CONVERTER B. PARTS LIST C. BUILDING INSTRUCTIONS D. SCHEMATICS Revision.

More information

AAZ-0914A USB, Blue tooth and Graphic CPU 50MHZ Antenna Analyzer

AAZ-0914A USB, Blue tooth and Graphic CPU 50MHZ Antenna Analyzer Fox Delta Amateur Radio Projects & Kits FD- AAZ-0914A AAZ-0914A USB, Blue tooth and Graphic CPU 50MHZ Antenna Analyzer AAZ- 0914A KIT: USB Standalone, Blue tooth standalone and Graphic CPU capable 50MHZ*

More information

AVR Intermediate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help

AVR Intermediate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help AVR Intermediate Development Board Product Manual Contents 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 1. Overview 2. Features The board is built on a high quality FR-4(1.6

More information

AVR Board Setup General Purpose Digital Output

AVR Board Setup General Purpose Digital Output ECE3411 Fall 2016 Lab 2a. AVR Board Setup General Purpose Digital Output Marten van Dijk, Chenglu Jin Department of Electrical & Computer Engineering University of Connecticut Email: {marten.van_dijk,

More information

Microprocessors B Lab 1 Spring The PIC24HJ32GP202

Microprocessors B Lab 1 Spring The PIC24HJ32GP202 The PIC24HJ32GP202 Lab Report Objectives Materials See separate report form located on the course webpage. This form should be completed during the performance of this lab. 1) To familiarize the student

More information

Lecture (04) PIC 16F84A programming I

Lecture (04) PIC 16F84A programming I Lecture (04) PIC 16F84A programming I Dr. Ahmed M. ElShafee ١ Agenda Introduction to PIC16F84A programming using C language Preprocessors and, Compiler directives Constants Variables and data types Pointers

More information

PIC-P40 development board Users Manual

PIC-P40 development board Users Manual PIC-P40 development board Users Manual All boards produced by Olimex are ROHS compliant Rev.E, February 008 Copyright(c) 008, OLIMEX Ltd, All rights reserved Page INTRODUCTION: PIC-P40 board is development

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

Bill of Materials: Picaxe-based IR Control Module Pair PART NO

Bill of Materials: Picaxe-based IR Control Module Pair PART NO Picaxe-based IR Control Module Pair PART NO. 2171014 The IRGEII is an IR (Infra Red) Transmitter and Receiver pair that uses a 38 KHZ frequency of invisible light to communicate simple instructions. The

More information

Uzebox Kit Assembly Guide

Uzebox Kit Assembly Guide Uzebox Kit Assembly Guide V1.7 Page 1 of 21 Revision History Version Date Author Description 1.0 01-Nov-2012 A.Bourque Initial release 1.1 6-Nov-2012 A.Bourque Minor corrections 1.2 28-Jan-2014 A.Bourque

More information

JUNEBUG PIC LABORATORY

JUNEBUG PIC LABORATORY JUNEBUG PIC LABORATORY Assembly Instructions The Junebug PIC Lab Introduction Powered from your computers USB port the Junebug is everything you ll need in a small self contained portable PIC Laboratory

More information

MAIN PCB (The small one)

MAIN PCB (The small one) THANKS FOR CHOOSING ONE OF OUR KITS! This manual has been written taking into account the common issues that we often find people experience in our workshops. The order in which the components are placed

More information

TEMIC 51T (Temic) EMULATION

TEMIC 51T (Temic) EMULATION Note: To use with frequencies above 40Mhz it will be required to use an emulator board that has been specially modified to obtain high frequency operation and will work only with the POD-51Temic. The EPROM

More information

GLiPIC Ver C Assembly manual Ver 1.0

GLiPIC Ver C Assembly manual Ver 1.0 GLiPIC Ver C Assembly manual Ver 1.0 Last Rev 1.1 Oct 30, 2001 Author: Ranjit Diol Disclaimer and Terms of Agreement As with any kit, only the individual parts supplied are guaranteed against defects and

More information

SBC44EC. Single board computer for 44 pin PLCC PICs

SBC44EC. Single board computer for 44 pin PLCC PICs Single board computer for 44 pin PLCC PICs Table of Contents 1 Introduction...2 2 Features...3 3 Expansion Connectors...4 3.1 Frontend Connectors...4 3.1.1 Connecting IDC connectors to the Frontend Connector...5

More information

LLIA90 LED ARRAY 90 LED Array Illuminator. LLIA90 LED Illuminator Array

LLIA90 LED ARRAY 90 LED Array Illuminator. LLIA90 LED Illuminator Array LLIA90 LED Illuminator Array The LLIA90 is a high-quality and high-performance multi-purpose LED illuminator array. It has a built-in regulator and a photocell control circuit for automatic LED array on/off

More information

Manual Main PCB Small-MIDI 4

Manual Main PCB Small-MIDI 4 Index PARTLIST MAIN PCB... 2 INTRODUCTION... 3 GENERAL... 3 THE CIRCUIT... 3 ASSEMBLY KIT... 4 ASSEMBLY OF THE PCB... 4 An important tip...... 4 ASSEMBLY... 4 THE CONNECTORS... 4 Power supply J1... 4 IDC

More information

SERGE Dual Extended ADSR 2017

SERGE Dual Extended ADSR 2017 SERGE Dual Extended ADSR 2017 The Serge Dual Extended ADSR module contains 2 identical Extended ADSR sections, each consisting of a main pcb and a panel pcb: Please note: Orientation of the main pcb: power

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

SBC45EC. Single board computer for 44 pin PLCC PICs

SBC45EC. Single board computer for 44 pin PLCC PICs Single board computer for 44 pin PLCC PICs Table of Contents 1 Introduction...3 2 Features...4 3 Expansion Connectors...5 3.1 Frontend Connectors...5 3.1.1 Connecting IDC connectors to the Frontend Connector...5

More information

KDS Channel DMX Controlled Servo Kit

KDS Channel DMX Controlled Servo Kit KDS00801 8-Channel DMX Controlled Servo Kit This is a DMX512-A controlled servo kit using ANSI approved RJ-45 connectors for DMX networks. Power requirements are 8-20 VDC @ 50 ma. The board features an

More information

AAØZZ Si570 Daughtercard and PIC Software

AAØZZ Si570 Daughtercard and PIC Software AAØZZ Si570 Daughtercard and PIC Software A Signal Generator for 10 to 157 MHz By Craig Johnson, AAØZZ AAØZZ@CBJOHN.COM www.cbjohn.com/aaøzz TABLE OF CONTENTS 1 Introduction... 2 2 Hardware Description...

More information

VG-305A AC Traffic Light Controller Kit

VG-305A AC Traffic Light Controller Kit Galak Electronics Electronic kits and components Website: GalakElectronics.com Email: sales@galakelectronics.com Phone: (302) 832-1978 VG-305A AC Traffic Light Controller Kit Thank you for your purchase

More information

Agilent 84904, 6, 7K/L Programmable Step Attenuators

Agilent 84904, 6, 7K/L Programmable Step Attenuators Agilent 84904, 6, 7K/L Programmable Step Attenuators Data Sheet High Accuracy,Excellent Reliability, Long Life Features and description DC to 26.5 GHz, DC to 40 GHz frequency coverage Optional calibration

More information

A Programmer for the 68HC705C8 MicroController Figure 1 PROG05 As Built PROG05 User Guide Version C1 Page 1 of 14

A Programmer for the 68HC705C8 MicroController Figure 1 PROG05 As Built PROG05 User Guide Version C1 Page 1 of 14 A Programmer for the 68HC705C8 MicroController Figure 1 PROG05 As Built PROG05 User Guide Version C1 Page 1 of 14 Table of Contents midon design 1. Introduction...3 2. Description...4 3. Construction...5

More information

RC-210 Repeater Controller Assembly Manual

RC-210 Repeater Controller Assembly Manual Arcom Communications 24035 NE Butteville Rd Aurora, Oregon 97002 (503) 678-6182 arcom@ah6le.net RC-210 Repeater Controller Assembly Manual Hardware Version 2.5 Reproduction or translation of any part of

More information

Building the Super-VMW CPU Meter by Vincent M. Weaver 18 May 2011

Building the Super-VMW CPU Meter   by Vincent M. Weaver 18 May 2011 Building the Super-VMW CPU Meter http://www.deater.net/weave/vmwprod/meter/super.html by Vincent M. Weaver 18 May 2011 1 Parts List Part No Description Quantity Source LED Board 1 SVMW-Meter-LED-Board

More information

Exclusive 2.5 GHz Frequency Counter

Exclusive 2.5 GHz Frequency Counter Exclusive 2.5 GHz Frequency Counter with blue 2 x 16 LCD display This manual will guide you how to assemble, test and tune this frequency counter KIT. Features: Frequency range from 5 MHz to 2.5GHz Factory

More information

The Sudden Storm Kit. by QRPme. Builder s Guide. version4.2. for. Sudden Storm ][ Ver4 (red pcb) Updated 01/10/2012

The Sudden Storm Kit. by QRPme. Builder s Guide. version4.2. for. Sudden Storm ][ Ver4 (red pcb) Updated 01/10/2012 The Sudden Storm Kit by QRPme Builder s Guide version4.2 for Sudden Storm ][ Ver4 (red pcb) Updated 01/10/2012 Open the can and the adventure begins 1 Organize the parts and take an inventory Bill of Materials

More information

The PUMPKIN LIGHT LED

The PUMPKIN LIGHT LED The PUMPKIN LIGHT LED PUMPKIN LIGHT LED By Mark McCuller Email: mcculler@mail.com DESIGN SUMMARY The PUMPKIN LIGHT LED By: Mark McCuller The Pumpkin Light LED is a battery-powered device that illuminates

More information

Sierra Radio Systems. Digital Compass. Reference Manual. Version 1.0

Sierra Radio Systems. Digital Compass. Reference Manual. Version 1.0 Sierra Radio Systems Digital Compass Reference Manual Version 1.0 Contents Digital compass board RS485 power injector For more information, go to the Sierra Radio Systems web site at www.sierraradio.net

More information

Design and construction of ENP for Car : a novel Embedded System

Design and construction of ENP for Car : a novel Embedded System Design and construction of ENP for Car : a novel Embedded System D.G.VYAS I/C Head(coordinator) and Assistant Professor, Dept. of Physics, Hemchandracharya North Gujarat University, Patan, Gujarat, India

More information

Lecture (03) PIC16F84 (2)

Lecture (03) PIC16F84 (2) Lecture (03) PIC16F84 (2) By: Dr. Ahmed ElShafee ١ PIC16F84 has a RISC architecture, or Harvard architecture in another word ٢ PIC16F84 belongs to a class of 8 bit microcontrollers of RISC architecture.

More information

You need the following components to assemble the Black n Wood Nixie Clock circuit board:

You need the following components to assemble the Black n Wood Nixie Clock circuit board: You need the following components to assemble the Black n Wood Nixie Clock circuit board: Quantity Designator Description 1 Battery Battery, CR1220 1 Battery Battery holder 3 Button 1, Button 2, Button

More information

By Au Group Electronics

By Au Group Electronics Au Group Electronics By Au Group Electronics April. 2008 All Copyrights are reserved by Au Group Electronics 1994-2008 This document can NOT be freely distributed without written approval Au Group Electronics

More information

REN816XB David Haberle 2010 (Dirknerkle)

REN816XB David Haberle 2010 (Dirknerkle) REN816XB David Haberle 2010 (Dirknerkle) www.diychristmas.org The REN816XB is a wireless 8 or 16 channel wireless data Christmas light controller. It is based on the Renard SS16 design- it's essentially

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

SK18A. 18 Pins PIC START-UP KIT. User s Manual V1.1. Dec 2007

SK18A. 18 Pins PIC START-UP KIT. User s Manual V1.1. Dec 2007 SK18A 18 Pins PIC START-UP KIT User s Manual V1.1 Dec 2007 Information contained in this publication regarding device applications and the like is intended through suggestion only and may be superseded

More information

Storage Card Interface Kit

Storage Card Interface Kit Storage Card Interface Kit for MultiMediaCards(MMC) and Secure Digital Cards (SD) MMSD3K The MMSD3K is complete development kit interfaced to a SD or MMC card. This board ideal for projects that involve

More information

ADT7470 Evaluation Board EVAL-ADT7470EB

ADT7470 Evaluation Board EVAL-ADT7470EB Evaluation Board Data Sheet FEATURES On-board and remote temperature sensing On-board and remote fan control No calibration necessary Programmable over/under temperature limits USB serial interface Supports

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

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

RC210 Repeater Controller Assembly Manual

RC210 Repeater Controller Assembly Manual Arcom Communications 24035 NE Butteville Rd Aurora, Oregon 97002 (503) 678-6182 arcom@ah6le.net http://www.arcomcontrollers.com/ RC210 Repeater Controller Assembly Manual Hardware Version 3.3 Reproduction

More information

Transcendent Frequency Counter

Transcendent Frequency Counter Transcendent Frequency Counter with blue 2 x 16 LCD display This manual will guide you how to assemble, test and operate this frequency counter KIT. Features: The transcendent counter has two input channels

More information

EBF31A Assembly Instructions

EBF31A Assembly Instructions EBF31A Assembly Instructions Revision v0.2 07/09/2014 Seth Neumann, sneumann@pacbell.net Introduction This document describes the functional blocks of the EBF31A and how to assemble it. Revision History

More information

Bill of Materials: Handheld Game System PART NO

Bill of Materials: Handheld Game System PART NO Handheld Game System PART NO. 2245108 Build your own Handheld Game System with graphics and sound! This game kit includes a custom designed circuit board along with custom built tools and programming to

More information

SimPLC. User Manual.

SimPLC. User Manual. SimPLC User Manual www.dizzy.co.za Contents Introduction... 4 Overview Top... 5 Power Circuitry... 6 Microcontroller... 7 Real-Time Calendar and Clock (RTCC)... 7 Reset Button... 7 Oscillator Socket...

More information

Building the RGBW LED Controller

Building the RGBW LED Controller Building the RGBW LED Controller A guide for the assembly and operation of your RGBW LED Controller. ver 3.1 Getting Started Parts list - You should have received the following parts: (1) Circuit Board,

More information

M68HC705L4 PROGRAMMER BOARD APPLICATION NOTE

M68HC705L4 PROGRAMMER BOARD APPLICATION NOTE M68HC705L4PGMR JUNE 1992 M68HC705L4 PROGRAMMER BOARD (REVision A PWBs only) APPLICATION NOTE INTRODUCTION This application note describes the programming technique used to program and verify the XC68HC705L4

More information

Freeze the Dizz Jameco Part No

Freeze the Dizz Jameco Part No Freeze the Dizz Jameco Part No. 2161431 This project is based on a children s arcade game. Twenty LEDs are placed on a ring and each takes turn to light up forming a rotating light spot. If a push-button

More information

PedalSync. 9 Switches MV-62. Chip. Module. and

PedalSync. 9 Switches MV-62. Chip. Module. and PedalSync 9 Switches MV-62 Chip and Module PedalSync 9 Switches chip MV-62 is designed for pedalboard switching controls using the extremely quiet PedalSync MV-57 ReMute Relay Bypass system. MV-62 works

More information

QUASAR PROJECT KIT # ATMEL AVR PROGRAMMER

QUASAR PROJECT KIT # ATMEL AVR PROGRAMMER This kit is a simple but powerful programmer for the Atmel AT90Sxxxx ( AVR ) family of microcontrollers. The Atmel AVR devices are a low-power CMOS 8-bit microcontroller using a RISC architecture. By executing

More information

FUNCTIONAL BLOCK DIAGRAM DIGITAL POWER SUPPLY +5V +3.3V EXT. EXTERNAL ANALOG POWER SUPPLY V LOGIC V DD V SS SPI INTERFACE RDY RESET AD5292 GND

FUNCTIONAL BLOCK DIAGRAM DIGITAL POWER SUPPLY +5V +3.3V EXT. EXTERNAL ANALOG POWER SUPPLY V LOGIC V DD V SS SPI INTERFACE RDY RESET AD5292 GND Evaluation Board for the 10-Bit, Serial Input, High Voltage Digital Potentiometer EVAL-AD5292EBZ FEATURES Full-featured evaluation board for the AD5292 Wiper buffer 4-wire ohm measurement capability Various

More information

Educato. Assembly Instructions

Educato. Assembly Instructions Product Description The Educato is an Arduino compatible board that has about the functionality of the Arduino Uno. It also has the ability, however, to plug into a solderless breadboard and to have all

More information

CAT310DB1 DEMONSTRATION BOARD FOR CAT CHANNEL LED DRIVER

CAT310DB1 DEMONSTRATION BOARD FOR CAT CHANNEL LED DRIVER APPLICATION NOTE WWW.CATALYST-SEMICONDUCTOR.COM CAT30DB DEMONSTRATION BOARD FOR CAT30 0 CHANNEL LED DRIVER Denisa Stefan, Application Engineer Cornel Rotaru, Application Engineer. INTRODUCTION This document

More information

University of Florida EEL 4744 Drs. Eric M. Schwartz, Karl Gugel & Tao Li Department of Electrical and Computer Engineering

University of Florida EEL 4744 Drs. Eric M. Schwartz, Karl Gugel & Tao Li Department of Electrical and Computer Engineering Page 1/9 Revision 1 OBJECTIVES In this document you will learn how to solder and to debug a board as you are building it. REQUIRED MATERIALS Website documents o UF 68HC12 Development Board Manual (board

More information

KDR00101 DMX Controlled Relay Kit

KDR00101 DMX Controlled Relay Kit KDR00101 DMX Controlled Relay Kit This is a DMX512-A relay kit using ANSI approved RJ-45 connectors for DMX networks. Power requirements are 12 Vdc @ 100 ma. The relay contact rating is 10 Amp @ 120 or

More information

*on-board power supply capability limited. External battery should be used for higher power servos.

*on-board power supply capability limited. External battery should be used for higher power servos. Pan and Tilt Decoder II PART NO. Add affordable Pan and Tilt control to your security cameras using the Pan and Tilt Decoder II and the DFRobot DF05BB Tilt/Pan Kit (5kg), Jameco PN 2144518 or the DAGU

More information

PROGRAMMABLE POWER SUPPLY

PROGRAMMABLE POWER SUPPLY PROGRAMMABLE POWER SUPPLY MATTHIEU L. KIELA HARDWARE DESCRIPTION APRIL 25, 2006 WESTERN WASHINGTON UNIVERSITY ELECTRONICS ENGINEERING TECHNOLOGY ETEC 474, PROFESSOR MORTON INTRODUCTION In laboratory and

More information

Building the VMW Time Circuitry Meter by Vincent M. Weaver 6 May 2014

Building the VMW Time Circuitry Meter  by Vincent M. Weaver 6 May 2014 Building the VMW Time Circuitry Meter http://www.deater.net/weave/vmwprod/hardware/time_circuit/ by Vincent M. Weaver 6 May 2014 1 Introduction This is a work in progress. I will update it as I complete

More information

R e v. I - 4, N o v e m b e r 2 7,

R e v. I - 4, N o v e m b e r 2 7, K2 OWNER S MANUAL ERRATA R e v. I - 4, N o v e m b e r 2 7, 2 0 1 5 M A K E T H E S E C H A N G E S T O Y O U R R E V. I M A N U A L B E F O R E Y O U B E G I N A S S E M B L Y 1. Page 20, Right Column,

More information

Post Tenebras Lab. Written By: Post Tenebras Lab

Post Tenebras Lab. Written By: Post Tenebras Lab Post Tenebras Lab PTL-ino is an Arduino comptaible board, made entirely out of through-hole components. It is a perfect project to learn how to solder and start getting into the world of micro controllers.

More information

PIC 28 Pin Board Documentation. Update Version 5.0

PIC 28 Pin Board Documentation. Update Version 5.0 PIC 28 Pin Board Documentation Update 2009.10 Version 5.0 Table of Contents PIC 28 Pin Board Documentation... 1 Table of Contents... 2 Introduction... 3 Circuit Schematic... 4 The following is the Circuit

More information

Sandevices E681 RGB Pixel Controller Assembly Manual

Sandevices E681 RGB Pixel Controller Assembly Manual Sandevices E681 RGB Pixel Controller Assembly Manual Oct 22, 2011 Oct 30, 2011 Initial Release Added component illustrations, silkscreen images, and misc text changes Prior electronic assembly experience

More information

VFO/Signal Generator kit PCB Revision QCU Rev 1 or QCU Rev 3

VFO/Signal Generator kit PCB Revision QCU Rev 1 or QCU Rev 3 1. Introduction VFO/Signal Generator kit PCB Revision QCU Rev 1 or QCU Rev 3 Thank you for purchasing this QRP Labs kit. The QRP Labs kit range is modular. The kit uses the same PCB and bag of components

More information

KK1L 2x6 Antenna Switch Relay Controller / Dual Band Decoder Basic Assembly Version 4.8 (new 24-Aug-2009) Parts List updated 19-AUG-2016

KK1L 2x6 Antenna Switch Relay Controller / Dual Band Decoder Basic Assembly Version 4.8 (new 24-Aug-2009) Parts List updated 19-AUG-2016 KK1L 2x6 Antenna Switch Relay Controller / Dual Band Decoder Basic Assembly Version 4.8 (new 24-Aug-2009) Parts List updated 19-AUG-2016 Ronald Rossi, KK1L http://home.comcast.net/~kk1l Design Features:

More information

SM010, Assembly Manual PCB Version 1.0

SM010, Assembly Manual PCB Version 1.0 180 SM010, Assembly Manual MATRIXARCHATE 16 8 IO SEQUENTIAL MATRIX SIGNAL ROUTER SM010 1 2 1 2 3 4 5 3 4 5 6 7 8 9 10 11 12 6 7 8 9 10 11 12 13 14 15 16 PROGRAM A B C D E F G H f1 f2 20.000 180 SSSR Labs

More information

Dwarf Boards. DB057 : 40-pin controller board

Dwarf Boards. DB057 : 40-pin controller board Dwarf Boards DB057 : 40-pin controller board PICmicro, In-Circuit Serial Programming and ICSP are registered trademarks of Microchip Technology Inc. DB057 for USB PIC DB057 for non-usb PIC Introduction

More information

Microcontroller Overview

Microcontroller Overview Microcontroller Overview Microprocessors/Microcontrollers/DSP Microcontroller components Bus Memory CPU Peripherals Programming Microcontrollers vs. µproc. and DSP Microprocessors High-speed information

More information

KDR00301 DMX Controlled Relay Kit

KDR00301 DMX Controlled Relay Kit KDR00301 DMX Controlled Relay Kit This is a DMX512-A relay kit using ANSI approved RJ-45 connectors for DMX networks. Power requirements are 12 Vdc @ 200 ma. The relay contact rating is 10 Amp @ 120 or

More information

BASIC Stamp Activity Board: Features and Specifications

BASIC Stamp Activity Board: Features and Specifications 27905 w / Power Supply 27906 w/o Power Supply BASIC Stamp Activity Board: Features and Specifications The BASIC Stamp Activity Board (BSAC) is a demonstration board for Parallax BASIC Stamp computers (BS1-IC,

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