Bill of Materials: 7-Segment LED Die with Arduino PART NO

Size: px
Start display at page:

Download "Bill of Materials: 7-Segment LED Die with Arduino PART NO"

Transcription

1 7-Segment LED Die with Arduino PART NO This project is based on the Arduino environment so that you can manipulate a die with a simple common anode 7-segment LED, a transistor PNP-2N3906, 10 resistors and a mini switch for control. Watch the video at: Time Required: 5 hours depending on experience Experience Level: Intermediate Required tools and parts: Arduino Uno Soldering Iron Solder Helping Hands Wire Cutters/Strippers Needle Nose Pliers 1 meter of wire #22 Bill of Materials: Qty Jameco SKU Component Name SHIELD,ARDUINO PROTO PCB,REV3,1.0 PINOUT It's the base for this project Connector Unshrouded Header 40 Position 2.54mm Solder Straight Thru-Hole Vital for mounting your project on Arduino hardware Single Digit 7-Segment LED Display Fundamental part for the project so that you can see the result obtained of manipulating a die RESISTOR,CARBON FILM,200K OHM,1/4 WATT,5%,(10 BAG) Needful part to protect the 7-segment LED display RESISTOR,CARBON FILM,1K OHM,1/4 WATT,5%,(100 BAG Needful to protect the base of your transistor 2N RESISTOR,CARBON FILM,10K OHM,1/2 WATT,5%,(100 BAG) Vital to ground the mini switch and the digital pin of your Arduino that is common to your mini switch and this component Transistor 2N3906 PNP General Purpose Fundamental to control the 7-segment LED display from your Arduino hardware Switch Tactile ON OFF Single Pole, Single Throw Round Button PC Pins 0.05A 12 Volt Thru-Hole Vital to manipulate your project Step 1 - List of materials (1) Shield, Arduino Proto PCB, Rev.3 (1) 40 position header, 0.1" spacing (1) Single Digit 7-Segment LED Display (8) 200 ohm resistor, 1/4 watt

2 (1) 1K ohm resistor, 1/4 watt (1) 10K ohm resistor, 1/2 watt (1) Transistor, 2N3906, PNP (1) Switch, tactile ON OFF SPST Round Button Step 2 - Identify Transistor ends You should identify the transistor leads for proper connection. Step 3 - Identify Mini-Switch Pins It's useful to know how to connect the mini-switch of your project. Identify how to connect your mini-switch, that is, you only need to connect the pins of conection: the closest pins that you can see on the photo.

3 Step 4 - Diagram of Project Observe the connections to your switch and transistor, but you should also observe the Arduino connections because the Analog pins is a continuation of Digital pins. For example, A0=D14, A1=D15...A5=A19. Step 5 - Insert the Pins in your Arduino Hardware Insert the following pins in your Arduino hardware: cut 4 pins for A0, A1, A2, A3, cut 2 pins for D6, D7, cut 4 pins for D8, D9, D10, D11 and cut 2 pins for GND, 5V

4 Step 6 - Mount the PCB on your Arduino Mount your PCB on the Arduino hardware by matching exactly with the pins inserted in your Arduino with the PCB. Identify the same letters and numbers for inserting correctly. For example, A0 with A0, A1 with A1, etc. Step 7 - Solder the Visible Ends Solder the visible ends to complete this step.

5 Step 8 - Dismount the PCB Dismount the PCB so that you can observe the result of the prior step. Step 9 - Mount the 7-Segment LED Display Mount the 7-Segment LED Display on your PCB. Step 10 - Solder the Ends of your LED Display Solder the ends of the 7-segment LED display mounted previously.

6 Step 11 - Connect the Resistors of 200 ohm Connect and solder the resistors of 200 ohm to the pins of your display. Step 12 - Mount the Mini Switch Mount and solder the Mini Switch on your PCB to D11 and 5V. Step 13 - Install the Resistor of 10K ohm Connect the resistor of 10K ohm to GND and the mini switch according to the schematic.

7 Step 13 - Install the Resistor of 10K ohm Step 14 - Install the Transistor 2N3906 Install and solder the transistor 2N3906 on your PCB. Step 15 - Install the Resistor of 1K ohm Connect the resistor of 1K ohm to the base of your transistor 2N3906 and D10.

8 Step 16 - Complete your Project For completing this project, write the Arduino program in your computer. The following program is what you need so that your project works: (copy the text below into your Arduino IDE) //Program for 7-Segment LED Die (Red) int segmentpins[] = 15, 14, 8, 7, 6, 16, 17, 9 ; int displaypins[] = 10; int buttonpin = 11; byte digits[10][8] = // a b c d e f g. 1, 1, 1, 1, 1, 1, 0, 0, // 0 0, 1, 1, 0, 0, 0, 0, 0, // 1 1, 1, 0, 1, 1, 0, 1, 0, // 2 1, 1, 1, 1, 0, 0, 1, 0, // 3 0, 1, 1, 0, 0, 1, 1, 0, // 4 1, 0, 1, 1, 0, 1, 1, 0, // 5 1, 0, 1, 1, 1, 1, 1, 0, // 6 1, 1, 1, 0, 0, 0, 0, 0, // 7 1, 1, 1, 1, 1, 1, 1, 0, // 8 1, 1, 1, 1, 0, 1, 1, 0 // 9 ; void setup() for (int i=0; i < 8; i++) pinmode(segmentpins[i], OUTPUT); pinmode(displaypins[0], OUTPUT); pinmode(displaypins[0], OUTPUT); pinmode(buttonpin, INPUT); void loop() static int dice; if (digitalread(buttonpin)) dice = random(1,7); updatedisplay(dice); void updatedisplay(int value1) digitalwrite(displaypins[0], HIGH); digitalwrite(displaypins[1], LOW);

9 setsegments(value1); delay(5); digitalwrite(displaypins[0], LOW); digitalwrite(displaypins[1], HIGH); delay(5); void setsegments(int n) for (int i=0; i < 8; i++) digitalwrite(segmentpins[i],! digits[n][i]);

Bill of Materials: Super Simple Water Level Control PART NO

Bill of Materials: Super Simple Water Level Control PART NO Super Simple Water Level Control PART NO. 2169109 Design a simple water controller in which electrodes are required to sense high and low water levels in a tank. Whenever the water level falls below the

More information

Bill of Materials: Magic Color PART NO

Bill of Materials: Magic Color PART NO Magic Color PART NO. 2193838 Magic color is a guessing game. With this game you can surprise your friends and leave them with amazement, how the game guesses what they have in their minds. Only two selections

More information

Objectives: Learn how LED displays work Be able to output your name on the display

Objectives: Learn how LED displays work Be able to output your name on the display Objectives: Learn how LED displays work Be able to output your name on the display By the end of this session: You will know how simple LED displays work and be able to make them give a useful output.

More information

TKEY-K16. Touch CW automatic electronic keyer. (No moving parts no contacts) Assembly manual. Last review: March 15, 2018

TKEY-K16. Touch CW automatic electronic keyer. (No moving parts no contacts) Assembly manual. Last review: March 15, 2018 TKEY-K16 Touch CW automatic electronic keyer (No moving parts no contacts) Assembly manual Last review: March 15, 2018 Commands and use manual of the K16 and Updates and news: www.ea3gcy.com Thanks for

More information

TR-Plus T/R Switch Assembly and Operation Manual. Introduction

TR-Plus T/R Switch Assembly and Operation Manual. Introduction TR-Plus T/R Switch Assembly and Operation Manual Revised: 7 February 2015 2015 Tucson Amateur Packet Radio Corporation Introduction The TAPR TR-Plus is a transmit/receive ( T/R ) switch that connects a

More information

DL-1A. RF dummy load - 50Ω 20W. Assembly manual. Last update: May 1, Thank you for constructing the DL-1A dummy load kit

DL-1A. RF dummy load - 50Ω 20W. Assembly manual. Last update: May 1, Thank you for constructing the DL-1A dummy load kit DL-1A RF dummy load - 50Ω 20W Assembly manual Last update: May 1, 2016 ea3gcy@gmail.com Updates and news at: www.qsl.net/ea3gcy Thank you for constructing the DL-1A dummy load kit Have fun assembling it

More information

8 PIN PIC PROGRAMMABLE BOARD (DEVELOPMENT BOARD & PROJECT BOARD)

8 PIN PIC PROGRAMMABLE BOARD (DEVELOPMENT BOARD & PROJECT BOARD) ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS LEARN ABOUT PROGRAMMING WITH THIS 8 PIN PIC PROGRAMMABLE BOARD (DEVELOPMENT BOARD & PROJECT

More information

BNC-Panel-16-TTL User Manual

BNC-Panel-16-TTL User Manual BNC-Panel-16-TTL User Manual Used to mate TTL signals on BNC Connectors to the Digital Lynx SX Mother Board, Digital Lynx Control Board, and DIO-24 Card. Neuralynx, Inc. 105 Commercial Drive, Bozeman,

More information

Documentation VFD clock 8 a clock

Documentation VFD clock 8 a clock Documentation VFD clock 8 a clock This documentation is protected by our copyright. It must not be used for commercial purposes. Congratulations on your purchase of your VFD clock. To guarantee success

More information

Arduino Lesson 3. RGB LEDs

Arduino Lesson 3. RGB LEDs Arduino Lesson 3. RGB LEDs Created by Simon Monk Last updated on 2013-06-22 06:45:59 PM EDT Guide Contents Guide Contents Overview Parts Part Qty Breadboard Layout Colors Arduino Sketch Using Internet

More information

Total solder points: 123 Difficulty level: beginner 1. advanced AUDIO ANALYZER K8098. audio gea Give your. . high-tech ILLUSTRATED ASSEMBLY MANUAL

Total solder points: 123 Difficulty level: beginner 1. advanced AUDIO ANALYZER K8098. audio gea Give your. . high-tech ILLUSTRATED ASSEMBLY MANUAL Total solder points: 123 Difficulty level: beginner 1 2 3 4 5 advanced AUDIO ANALYZER K8098 ra audio gea Give your. look high-tech ILLUSTRATED ASSEMBLY MANUAL H8098IP-1 Features & Specifications Features

More information

DRAFT Microprocessors B Lab 3 Spring PIC24 Inter-Integrated Circuit (I 2 C)

DRAFT Microprocessors B Lab 3 Spring PIC24 Inter-Integrated Circuit (I 2 C) PIC24 Inter-Integrated Circuit (I 2 C) 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 utilize

More information

Introduction 1. Green status LED, controlled by output signal ST. Sounder, controlled by output signal Q6. Push switch on input D6

Introduction 1. Green status LED, controlled by output signal ST. Sounder, controlled by output signal Q6. Push switch on input D6 Introduction 1 Welcome to the GENIE microcontroller system! The activity kit allows you to experiment with a wide variety of inputs and outputs... so why not try reading sensors, controlling lights or

More information

H2633IP-1 RELAY CARD K2633

H2633IP-1 RELAY CARD K2633 H2633IP-1 RELAY CARD K2633 Control up to 4 high-power circuits from a low-power drive circuit. Features & Specifications The connection of a few relays to the outputs of an electronic circuit might be

More information

SEP Bright Pi v1.0 Assembly Instructions

SEP Bright Pi v1.0 Assembly Instructions SEP Bright Pi v1.0 Assembly Instructions When you purchased your Bright Pi v1.0 kit, you should have received an anti-static bag with some components in it which will require soldering together in order

More information

Multi-Key v2.4 Multi-Function Amplifier Keying Interface

Multi-Key v2.4 Multi-Function Amplifier Keying Interface Multi-Key v2.4 Multi-Function Amplifier Keying Interface ASSEMBLY & OPERATION INSTRUCTIONS INTRODUCTION The Harbach Electronics, LLC Multi-Key is a multi-function external device designed for the safe

More information

Introduction 1. Green status LED, controlled by output signal ST

Introduction 1. Green status LED, controlled by output signal ST Introduction 1 Welcome to the magical world of GENIE! The project board is ideal when you want to add intelligence to other design or electronics projects. Simply wire up your inputs and outputs and away

More information

Introduction 1. Digital inputs D6 and D7. Battery connects here (red wire to +V, black wire to 0V )

Introduction 1. Digital inputs D6 and D7. Battery connects here (red wire to +V, black wire to 0V ) Introduction 1 Welcome to the magical world of GENIE! The project board is ideal when you want to add intelligence to other design or electronics projects. Simply wire up your inputs and outputs and away

More information

The Infinity Portal Craig A. Lindley 03/16/2011

The Infinity Portal Craig A. Lindley 03/16/2011 OK, I'll admit it. I'm a sucker for colored flashing lights especially if controlled by a micro processor (up). So recently when I came upon a really good deal on RGB LEDs on ebay and another really good

More information

Parts Checklist - Please note there is no resistor R3. Diodes, LED and transistors are polarized see construction stages

Parts Checklist - Please note there is no resistor R3. Diodes, LED and transistors are polarized see construction stages Xtal Check Kit build Read me first! -------- UPDATED GUIDE------ September 12, 2018--------- The following steps are designed to get your Xtal check kit built and operational. This is a good beginner s

More information

Atari PICO Composite Mod Board Installation Instructions:

Atari PICO Composite Mod Board Installation Instructions: Atari PICO Composite Mod Board Installation Instructions: Installation Guide 6 Switch Atari 2600 6 Switch Video Mod Installation Guide Disclaimer: I am not responsible for any damage done to your Atari.

More information

DEM 9ULNACK 3.4 GHz. PHEMT LNA amplifier complete kit assembly guide

DEM 9ULNACK 3.4 GHz. PHEMT LNA amplifier complete kit assembly guide DEM 9ULNACK 3.4 GHz. PHEMT LNA amplifier complete kit assembly guide SPECIFICATIONS Noise Figure: < 0.8 db Gain: > 15 db Frequency Range: 3400-3500 MHz Input Voltage: 7-16 VDC Description: The 9ULNACK

More information

Fixed Audio Output for the K2 Don Wilhelm (W3FPR) & Tom Hammond (NØSS) v August 2009

Fixed Audio Output for the K2 Don Wilhelm (W3FPR) & Tom Hammond (NØSS) v August 2009 Fixed Audio Output for the K2 Don Wilhelm (W3FPR) & Tom Hammond (NØSS) v. 2.1 06 August 2009 I have had several requests to provide a fixed audio output from the K2. After looking at the circuits that

More information

Mini-Yack Iambic Keyer

Mini-Yack Iambic Keyer Mini-Yack Iambic Keyer Assembly Instructions Mini-Yack is a "bare bones" Iambic keyer for embedding into QRP and home brew equipment. The keyer has the following features: Keying from 1-50WPM YACK memory

More information

Step What to do Expected result What to do if test fails Component tested 1 Visual inspection. Board is accurately assembled

Step What to do Expected result What to do if test fails Component tested 1 Visual inspection. Board is accurately assembled Fox Delta Amateur Radio Projects & Kits AAZ-0914A 50MHZ Antenna Analyzer Testing Guide by Tony / I2TZK SWR Analyzer 4 steps for a quick test Step What to do Expected result What to do if test fails Component

More information

Building the ChronoDot Calendar Reminder

Building the ChronoDot Calendar Reminder Building the ChronoDot Calendar Reminder Being very forgetful and married is not a good combination. Luckily my wife comes up with solutions and suggested that we make some sort of reminder that would

More information

2019 SKILLSUSA MICHIGAN CHAMPIONSHIPS TASK AND MATERIALS LIST

2019 SKILLSUSA MICHIGAN CHAMPIONSHIPS TASK AND MATERIALS LIST 2019 SKILLSUSA MICHIGAN CHAMPIONSHIPS TASK AND MATERIALS LIST SKILL OR LEADERSHIP AREA: ELECTRONICS TECHNOLOGY CONTEST LOCATION: Grand Rapids Community College Applied Technology Center (ATC) 151 Fountain

More information

Total solder points: 117 Difficulty level: beginner advanced. RGB Controller K8088 ILLUSTRATED ASSEMBLY MANUAL

Total solder points: 117 Difficulty level: beginner advanced. RGB Controller K8088 ILLUSTRATED ASSEMBLY MANUAL Total solder points: 117 Difficulty level: beginner 1 2 3 4 5 advanced RGB Controller K8088 Control incandescent bulbs, LEDs, common anode led strips, etc... ILLUSTRATED ASSEMBLY MANUAL H8088IP-1 Features

More information

ENGR 40M Project 3a: Building an LED Cube

ENGR 40M Project 3a: Building an LED Cube ENGR 40M Project 3a: Building an LED Cube Lab due before your section, October 31 November 3 1 Introduction In this lab, you ll build a cube of light-emitting diodes (LEDs). The cube is wired to an Arduino,

More information

Self-Playing Xylophone

Self-Playing Xylophone Self-Playing Xylophone Matt McKinney, Electrical Engineering Project Advisor: Dr. Tony Richardson April 1, 2018 Evansville, Indiana Acknowledgements I would like to thank Jeff Cron, Dr. Howe, and Dr. Richardson

More information

While the parts are already inventoried at the factory, please verify the inventory check as you go:

While the parts are already inventoried at the factory, please verify the inventory check as you go: Thank you for purchasing the kit for building the WJ9J DTMF controller. After building, you should read the document on operation (WJ9JDTMFControllerV5.pdf) in order to use. This is also in the link in

More information

7 SEGMENT LED DISPLAY KIT

7 SEGMENT LED DISPLAY KIT ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS CREATE YOUR OWN SCORE BOARD WITH THIS 7 SEGMENT LED DISPLAY KIT Version 2.0 Which pages of

More information

[ Photos ] [ Wares ] [ Library ] [ Dave's Web ] [ Matt's Web ] Wares [ SWISH ] [ Simple Search ] [ Trunk Calc ]

[ Photos ] [ Wares ] [ Library ] [ Dave's Web ] [ Matt's Web ] Wares [ SWISH ] [ Simple Search ] [ Trunk Calc ] [ Photos ] [ Wares ] [ Library ] [ Dave's Web ] [ Matt's Web ] Wares [ SWISH ] [ Simple Search ] [ Trunk Calc ] Realistic PRO-2006 Hardware Modifications Note Edited on January 1st, 1970, 00:00 UT. Improper

More information

VU-1 VU Meter Kit Volume Unit Meter

VU-1 VU Meter Kit Volume Unit Meter VU-1 VU Meter Kit Volume Unit Meter Simplicity Counts, Detail Matters. No part of this document may be reproduced, either mechanically or electronically, posted online on the Internet, in whole or in part,

More information

Ginger Bread House

Ginger Bread House Party @ Ginger Bread House After hundreds of years of listening to Christmas Jingles while working on Santa s toy sweatshop the Elves decided to break with tradition and throw a techno-rave party. But

More information

Lesson 4 RGB LED. Overview. Component Required:

Lesson 4 RGB LED. Overview. Component Required: Lesson 4 RGB LED Overview RGB LEDs are a fun and easy way to add some color to your projects. Since they are like 3 regular LEDs in one, how to use and connect them is not much different. They come mostly

More information

Build A Video Switcher

Build A Video Switcher Build A Video Switcher VIDEOSISTEMAS serviciotecnico@videosistemas.com www.videosistemas.com Reprinted with permission from Electronics Now Magazine September 1997 issue Copyright Gernsback Publications,

More information

Nixie Clock Type Frank 2 Z570M

Nixie Clock Type Frank 2 Z570M Assembly Instructions And User Guide Nixie Clock Type Frank 2 Z570M Software version: 7R PCB Revision: 11 April 09-1 - 1. INTRODUCTION 1.1 About the clock Nixie clock type Frank 2 is a compact design with

More information

Dust Sensor using GP Y

Dust Sensor using GP Y Dust Sensor using GP Y Dust sensors detect fine dust ( aerosol ) floating in the air. They are used to determine air quality indoor and outdoor. Limits of the GP2Y10 The GP2Y10 sensor was developed to

More information

DSO138mini Troubleshooting Guide

DSO138mini Troubleshooting Guide DSO138mini Troubleshooting Guide Applicable main board: 109-13800-00I Applicable analog board: 109-13801-00H 1. Frequently Found Problems 1) LCD completely dark. No backlight 2) LCD lights up but no display

More information

RAKK dac. RAKK dac Mark IV. RAKK dac Mark IV. Assembly and Installation Manual

RAKK dac. RAKK dac Mark IV. RAKK dac Mark IV. Assembly and Installation Manual RAKK dac RAKK dac Mark IV RAKK dac Mark IV Assembly and Installation Manual Version 1.3 2013-2014 Raleigh Audio version Use this manual with RAKK dac Mark IV v 2.0, which is marked on the board. Required

More information

DMC550 Technical Reference

DMC550 Technical Reference DMC550 Technical Reference 2002 DSP Development Systems DMC550 Technical Reference 504815-0001 Rev. B September 2002 SPECTRUM DIGITAL, INC. 12502 Exchange Drive, Suite 440 Stafford, TX. 77477 Tel: 281.494.4505

More information

Australian Technical Production Services

Australian Technical Production Services Australian Technical Production Services Dual Rail Crowbar Copyright notice. These notes, the design, schematics and diagrams are Copyright Richard Freeman, 2015 While I am happy for the notes to be printed

More information

SN-Class Nixie Clock Kits

SN-Class Nixie Clock Kits Assembly Instructions And User Guide SN-Class Nixie Clock Kits - 1 - REVISION HISTORY Issue Date Reason for Issue Number 1 20 November 2017 New document - 2 - 1. INTRODUCTION 1.1 About the How can the

More information

N3ZI Digital Dial Manual For kit with Serial LCD Rev 3.04 Aug 2012

N3ZI Digital Dial Manual For kit with Serial LCD Rev 3.04 Aug 2012 N3ZI Digital Dial Manual For kit with Serial LCD Rev 3.04 Aug 2012 Kit properly assembled and configured for Standard Serial LCD (LCD Not yet connected) Kit Components Item Qty Designator Part Color/Marking

More information

Tube Cricket Build Guide

Tube Cricket Build Guide Tube Cricket Build Guide The Tube Cricket is a small-wattage amp that puts out about 1 watt of audio power. With a 12AU7 tube-preamp and a JRC386 power amp, the Tube Cricket gives you great tone in a compact

More information

Connection Guide of the MOTOTRBO radio to the radioserver as a control station

Connection Guide of the MOTOTRBO radio to the radioserver as a control station of the MOTOTRBO radio to the radioserver as a control station (using the PMKN4147A programming cable and a cable with the HLN9457 connector) August 2015 2 1 Introduction This guide explains how to connect

More information

DIY KIT MHZ 8-DIGIT FREQUENCY METER

DIY KIT MHZ 8-DIGIT FREQUENCY METER This kit is a stand-alone frequency meter capable of measuring repetitive signals up to a frequency of 50MHz. It has two frequency ranges (15 and 50 MHz) as well as two sampling rates (0.1 and 1 second).

More information

Main PCB (The small one)

Main PCB (The small one) Thanks for choosing our kits! This manual is written taking with the problems that we usually find in our workshops in mind. Also the order is meant to make assembly as easy as possible. Some steps are

More information

Mal-2 assembly guide v1.0

Mal-2 assembly guide v1.0 Mal-2 assembly guide v.0 SONIC POTIONS Schematic and BOM The BOM can be found on Google Docs Prepare the PCB Separate the PCBs using some pliers. PCB We start with the lower PCB and assemble it beginning

More information

Vorne Industries. 87/719 Analog Input Module User's Manual Industrial Drive Itasca, IL (630) Telefax (630)

Vorne Industries. 87/719 Analog Input Module User's Manual Industrial Drive Itasca, IL (630) Telefax (630) Vorne Industries 87/719 Analog Input Module User's Manual 1445 Industrial Drive Itasca, IL 60143-1849 (630) 875-3600 Telefax (630) 875-3609 . 3 Chapter 1 Introduction... 1.1 Accessing Wiring Connections

More information

Industrial Monitor Update Kit

Industrial Monitor Update Kit Industrial Monitor Update Kit (Bulletin Number 6157) Installation Instructions 2 Table of Contents Table of Contents Industrial Monitor Update Kit... 3 Overview... 3 Part 1 - Initial Preparation... 5 Part

More information

Introduction. The Clock Hardware. A Unique LED Clock Article by Craig A. Lindley

Introduction. The Clock Hardware. A Unique LED Clock Article by Craig A. Lindley Introduction As hard as it might be to believe, I have never built an electronic clock of any kind. I've always thought electronic clocks were passe and not worth the time to design and build one. In addition,

More information

Evaluation Board For ADF Integrated VCO & Frequency Synthesizer

Evaluation Board For ADF Integrated VCO & Frequency Synthesizer a Evaluation Board For ADF4360-1 Integrated VCO & Frequency Synthesizer EVAL-ADF4360-1EB1 FEATURES Self-Contained Board for generating RF frequencies Flexibility for Reference Input, Output frequency,

More information

CAT System on the MIC socket for Yaesu FT-897/857

CAT System on the MIC socket for Yaesu FT-897/857 CAT System on the MIC socket for Yaesu FT-897/857 (it doesn't apply to the FT-817) By Filippo Tondinelli, IZØINX When an automatic tuner like the Yaesu CF-30 is used with a Yaesu FT-897 or FT-857, it will

More information

Commissioning Guide. firepickdelta. Commissioning Guide. Written By: Neil Jansen firepickdelta.dozuki.com Page 1 of 22

Commissioning Guide. firepickdelta. Commissioning Guide. Written By: Neil Jansen firepickdelta.dozuki.com Page 1 of 22 firepickdelta Commissioning Guide Written By: Neil Jansen 2017 firepickdelta.dozuki.com Page 1 of 22 Step 1 Pre-Requisites Before commissioning, please make sure ALL of the following steps have been completed,

More information

N3ZI Digital Dial Manual For kit with Backlit LCD Rev 4.00 Jan 2013 PCB

N3ZI Digital Dial Manual For kit with Backlit LCD Rev 4.00 Jan 2013 PCB N3ZI Digital Dial Manual For kit with Backlit LCD Rev 4.00 Jan 2013 PCB Kit Components Item Qty Designator Part Color/Marking PCB 1 LCD Display 1 LCD 1602 Volt Regulator 1 U1 78L05, Black TO-92 Prescaler

More information

Features. = +25 C, 50 Ohm System

Features. = +25 C, 50 Ohm System v1.111 47 Analog Phase Shifter, Typical Applications The is ideal for: EW Receivers Military Radar Test Equipment Satellite Communications Beam Forming Modules Features Wide Bandwidth: 47 Phase Shift Low

More information

Module 4: Traffic Signal Design Lesson 1: Traffic Signal (Arduino) Control System Laboratory Exercise Grade 6-8

Module 4: Traffic Signal Design Lesson 1: Traffic Signal (Arduino) Control System Laboratory Exercise Grade 6-8 Name: Class: Module 4: Traffic Signal Design Lesson 1: Traffic Signal (Arduino) Control System Laboratory Exercise Grade 6-8 Background Traffic signals are used to control traffic that flows in opposing

More information

Part (A) Controlling 7-Segment Displays with Pushbuttons. Part (B) Controlling 7-Segment Displays with the PIC

Part (A) Controlling 7-Segment Displays with Pushbuttons. Part (B) Controlling 7-Segment Displays with the PIC Name Name ME430 Mechatronic Systems: Lab 6: Preparing for the Line Following Robot The lab team has demonstrated the following tasks: Part (A) Controlling 7-Segment Displays with Pushbuttons Part (B) Controlling

More information

Manual #: UMA1074 Rev. 2 October, Hall Research Technologies, Inc 1163 Warner Ave. Tustin, CA 92780

Manual #: UMA1074 Rev. 2 October, Hall Research Technologies, Inc 1163 Warner Ave. Tustin, CA 92780 Component Video / VGA Over UTP Video Transmission Systems Manual #: UMA1074 Rev. 2 October, 2007 Hall Research Technologies, Inc 1163 Warner Ave. Tustin, CA 92780 Table of Contents 1.0 GENERAL DESCRIPTION...

More information

SWITCH: Microcontroller Touch-switch Design & Test (Part 2)

SWITCH: Microcontroller Touch-switch Design & Test (Part 2) SWITCH: Microcontroller Touch-switch Design & Test (Part 2) 2 nd Year Electronics Lab IMPERIAL COLLEGE LONDON v2.09 Table of Contents Equipment... 2 Aims... 2 Objectives... 2 Recommended Timetable... 2

More information

UAV Ultimate Atari Video A7800

UAV Ultimate Atari Video A7800 UAV Ultimate Atari Video A7800 Basic Install guide because this is really easy mod to do! The UAV is a wonderful piece of tech for what it can do. To summarize, the UAV is a replacement video encoder and

More information

Nixie Clock Type Frank 3

Nixie Clock Type Frank 3 Assembly Instructions And User Guide Nixie Clock Type Frank 3 Software version: 7R PCB Version: 11 April 09-1 - 1. INTRODUCTION 1.1 About the clock Nixie clock type Frank 3 is a compact design with all

More information

GUIDE TO ASSEMBLY OF ERICA SYNTHS DELAY MODULE

GUIDE TO ASSEMBLY OF ERICA SYNTHS DELAY MODULE If you are reading this, most probably, you are about to build Erica Synths DIY DELAY module. The module is 4mm deep, skiff friendly, has solid mechanical construction and doesn t require wiring. Erica

More information

Computer Architecture and Organization. Electronic Keyboard

Computer Architecture and Organization. Electronic Keyboard Computer Architecture and Organization Electronic Keyboard By: John Solo and Shannon Stastny CPSC - 42, Merced College Professor Kanemoto, December 08, 2017 Abstract Our arduino project consists of an

More information

Measure the value of water flow using water flow sensor and DC water pump 12 V interfacing with Arduino uno

Measure the value of water flow using water flow sensor and DC water pump 12 V interfacing with Arduino uno 1 2 Measure the value of water flow using water flow sensor and DC water pump 12 V interfacing with Arduino uno A flow sensor is a device for sensing the rate of fluid flow. Typically a flow sensor is

More information

Laboratory 11. Required Components: Objectives. Introduction. Digital Displays and Logic (modified from lab text by Alciatore)

Laboratory 11. Required Components: Objectives. Introduction. Digital Displays and Logic (modified from lab text by Alciatore) Laboratory 11 Digital Displays and Logic (modified from lab text by Alciatore) Required Components: 2x lk resistors 1x 10M resistor 3x 0.1 F capacitor 1x 555 timer 1x 7490 decade counter 1x 7447 BCD to

More information

Features. = +25 C, 50 Ohm System

Features. = +25 C, 50 Ohm System v.211 18 Analog Phase Shifter, 2-2 GHz Typical Applications The is ideal for: EW Receivers Military Radar Test Equipment Satellite Communications Beam Forming Modules Features Wide Bandwidth: 2-2 GHz 18

More information

1x12 VGA & Audio over CAT5 Splitter

1x12 VGA & Audio over CAT5 Splitter SP-9112 1x12 VGA & Audio over CAT5 Splitter User Manual rev: 160322 Made in Taiwan Safety and Notice The SP-9112 1x12 VGA & Audio over CAT5 Splitter has been tested for conformance to safety regulations

More information

MONO AMPLIFIER KIT ESSENTIAL INFORMATION. Version 2.2 CREATE YOUR OWN SPEAKER DOCK WITH THIS

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

More information

Assembly Instructions And User Guide. Nixie FunKlock. FunKlock Issue 4 (1 February 2017)

Assembly Instructions And User Guide. Nixie FunKlock. FunKlock Issue 4 (1 February 2017) Assembly Instructions And User Guide Nixie FunKlock - 1 - Issue Number Date REVISION HISTORY 4 1 February 2017 New diode for D2 3 27 December 2013 C7 / C8 error page 15 2 7 November 2013 Errors corrected

More information

Reaction Game Kit MitchElectronics 2019

Reaction Game Kit MitchElectronics 2019 Reaction Game Kit MitchElectronics 2019 www.mitchelectronics.co.uk CONTENTS Schematic 3 How It Works 4 Materials 6 Construction 8 Important Information 9 Page 2 SCHEMATIC Page 3 SCHEMATIC EXPLANATION The

More information

Rfid Based Attendance System

Rfid Based Attendance System Rfid Based Attendance System Raj Kumar Mistri 1, Kamlesh Kishore 2, Priyanka Nidhi 3, Pushpakumari 4, Vikrantkumar 5 1, 2 Assistant Professor, 3,4,5 B.Tech Scholar 1,2,3,4,5 Dept. of ECE, RTC Institute

More information

Lab 3c Fun with your LED cube. ENGR 40M Chuan-Zheng Lee Stanford University 19 May 2017

Lab 3c Fun with your LED cube. ENGR 40M Chuan-Zheng Lee Stanford University 19 May 2017 Lab 3c Fun with your LED cube ENGR 40M Chuan-Zheng Lee Stanford University 19 May 2017 Announcements Homework 6 is not released today. It will be released on Monday (May 22). It will be due at 11am Tuesday

More information

EP486 Microcontroller Applications

EP486 Microcontroller Applications EP486 Microcontroller Applications Topic 4 Arduino Apps: LED & 7-Segment-Display Department of Engineering Physics University of Gaziantep Nov 2013 Sayfa 1 Content We ll study some arduino applications:

More information

MONITOR POWER Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free

MONITOR POWER Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free Instruction Manual Model 2099-10xx 10MHz Frequency Source April 2014, Rev. H MENU INTERNAL LEVEL = +10dBm MONITOR POWER 1 2 MODEL 2099 FREQUENCY SOURCE CROSS TECHNOLOGIES INC. ALARM OVEN REMOTE EXECUTE

More information

DIY Guide - Building Franky v1.1, the SEGA Audio and Videocard for MSX

DIY Guide - Building Franky v1.1, the SEGA Audio and Videocard for MSX DIY Guide - Building Franky v1.1, the SEGA Audio and Videocard for MSX 2015 FRS & MSXpró. Translation by FRS and Supersoniqs. Table of Contents Introduction... 3 Materials needed... 3 Audio volume boost...

More information

TECHNICAL SUPPORT , or FD151CV-LP Installation and Operation Manual 15.1 Low Profile LCD

TECHNICAL SUPPORT , or   FD151CV-LP Installation and Operation Manual 15.1 Low Profile LCD TECHNICAL SUPPORT 678-867-6717, or www.flightdisplay.com FD151CV-LP Installation and Operation Manual 15.1 Low Profile LCD FD151CV-LP 15.1" Low Profile LCD 2006 Flight Display Systems. All Rights Reserved.

More information

CMD176P GHz 4-Bit Digital Phase Shifter. Features. Functional Block Diagram. Description

CMD176P GHz 4-Bit Digital Phase Shifter. Features. Functional Block Diagram. Description Features Functional Block Diagram Low phase error Low insertion loss 36 phase shift, LSB = 22.5 Single bit positive logic Pb-free RoHs compliant 4x4 QFN package Description The CMD176P4 is a GaAs MMIC

More information

Triple RTD. On-board Digital Signal Processor. Linearization RTDs 20 Hz averaged outputs 16-bit precision comparator function.

Triple RTD. On-board Digital Signal Processor. Linearization RTDs 20 Hz averaged outputs 16-bit precision comparator function. Triple RTD SMART INPUT MODULE State-of-the-art Electromagnetic Noise Suppression Circuitry. Ensures signal integrity even in harsh EMC environments. On-board Digital Signal Processor. Linearization RTDs

More information

DEM B SBH-PW-N (A-TOUCH)

DEM B SBH-PW-N (A-TOUCH) DISPLAY Elektronik GmbH LCD MODULE DEM 128128B SBH-PW-N (A-TOUCH) Version :2 28/Dec/2007 GENERAL SPECIFICATION MODULE NO. : DEM 128128B SBH-PW-N (A-TOUCH) CUSTOMER P/N VERSION NO. CHANGE DESCRIPTION DATE

More information

Instruction Manual Model # Block Upconverter

Instruction Manual Model # Block Upconverter Instruction Manual Model 2115-278# Block Upconverter August 2018, Rev. A MODEL 2115 UPCONVERTER CROSS TECHNOLOGIES INC. EXT 10MHZ ALARM POWER Data, drawings, and other material contained herein are proprietary

More information

AT-AUTO (tm) QRO Keyline Upgrade Kit Installation Manual

AT-AUTO (tm) QRO Keyline Upgrade Kit Installation Manual AT-AUTO (tm) QRO Keyline Upgrade Kit Installation Manual P.O. Box 341543 Beavercreek, Ohio 45434 5 September, 2015 Copyright 2015 ii Contents 1 Introduction 2 1.1 General Description and Purpose........................

More information

One Shot, Two Shot, Red Shot, Blue Shot. Build Instructions

One Shot, Two Shot, Red Shot, Blue Shot. Build Instructions One Shot, Two Shot, Red Shot, Blue Shot Build Instructions Target Console 1) Construct the target console from ½ thick plywood and ¾ thick select trim pieces. Use 1/8 plywood or hardboard for the 15 angled

More information

MAIN PCB (The small one) OPEN MAIN BOARD BAG A

MAIN PCB (The small one) OPEN MAIN BOARD BAG A 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

This document is intended to provide information to allow the researcher to build their own device.

This document is intended to provide information to allow the researcher to build their own device. SEXTA Construction Notes Tony Barry, Dave Gault Preamble:- SEXTA is a system (hardware device, firmware, and application software) to create and analyse optical timestamps as observed by a camera and recorder.

More information

Connection Guide of the MOTOTRBO radio to the radioserver as a control station

Connection Guide of the MOTOTRBO radio to the radioserver as a control station of the MOTOTRBO radio to the radioserver as a control station (using the PMKN447A programming cable and a cable with the HLN9457 connector) March 207 2 Introduction This guide explains how to prepare a

More information

MUK REAR PANEL ASSEMBLY ASSEMBLY INSTRUCTIONS

MUK REAR PANEL ASSEMBLY ASSEMBLY INSTRUCTIONS Rev B. 13 August 2017 ASSEMBLY INSTRUCTIONS The Midnight Ultimate Keyer (MUK) consists of two functional assemblies: Rear Panel containing the interface and power connectors. Front Panel containing the

More information

MENU EXECUTE Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free

MENU EXECUTE Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free Instruction Manual Model 2584-31 Combiner May 2011, Rev. A RF MONITOR GAIN = -15 MENU MODEL 2584 COMBINER CROSS TECHNOLOGIES INC. ALARM REMOTE POWER EXECUTE Data, drawings, and other material contained

More information

ENGR 40M Project 3b: Programming the LED cube

ENGR 40M Project 3b: Programming the LED cube ENGR 40M Project 3b: Programming the LED cube Prelab due 24 hours before your section, May 7 10 Lab due before your section, May 15 18 1 Introduction Our goal in this week s lab is to put in place the

More information

Lab 7: Soldering - Traffic Light Controller ReadMeFirst

Lab 7: Soldering - Traffic Light Controller ReadMeFirst Lab 7: Soldering - Traffic Light Controller ReadMeFirst Lab Summary The two-way traffic light controller provides you with a quick project to learn basic soldering skills. Grading for the project has been

More information

How To Build Megavolt s Small Buffered JTAG v1.2

How To Build Megavolt s Small Buffered JTAG v1.2 How To Build Megavolt s Small Buffered JTAG v1.2 Abstract A JTAG cable should be considered mandatory equipment for any serious tester. It provides a means to backup the information in the receiver and

More information

Model Railway Animation: Part 1, LEDs - Expanded By David King

Model Railway Animation: Part 1, LEDs - Expanded By David King Model Railway Animation: Part 1, LEDs - Expanded By David King By now you are most likely ready to proceed past the simple Blink sketch so that is what we will do now. A couple of simple sketches we can

More information

Build Your Own Clone Super 8 Kit Instructions

Build Your Own Clone Super 8 Kit Instructions Build Your Own Clone Super 8 Kit Instructions Warranty: BYOC, Inc. guarantees that your kit will be complete and that all parts and components will arrive as described, functioning and free of defect.

More information

SquareLED - Aura Bar & Matrix Beam Light 100

SquareLED - Aura Bar & Matrix Beam Light 100 SquareLED - Aura Bar & Matrix Beam Light 100 1. SAFETY INSTRUCTIONS Please read these instructions carefully they include the important information about the installation usage and maintenance of this

More information

Digital Clock. Perry Andrews. A Project By. Based on the PIC16F84A Micro controller. Revision C

Digital Clock. Perry Andrews. A Project By. Based on the PIC16F84A Micro controller. Revision C Digital Clock A Project By Perry Andrews Based on the PIC16F84A Micro controller. Revision C 23 rd January 2011 Contents Contents... 2 Introduction... 2 Design and Development... 3 Construction... 7 Conclusion...

More information

Constructing and Operating: The Island Keyer

Constructing and Operating: The Island Keyer Constructing and Operating: The Island Keyer Construction: General notes about building: The components should be inserted a few at a time, soldered in place and then the leads are clipped. Note that all

More information

Installing The PK-AM keyer and. from Jackson Harbor Press Operating: A Morse code keyer chip with pot speed control

Installing The PK-AM keyer and. from Jackson Harbor Press Operating: A Morse code keyer chip with pot speed control Installing The PK-AM keyer and from Jackson Harbor Press Operating: A Morse code keyer chip with pot speed control The PK-AM keyer is a modification for the PK-AM kit, it changes the AM transmitter to

More information

PART. Maxim Integrated Products 1

PART. Maxim Integrated Products 1 9-646; Rev 0; /00 General Description The MAX94 evaluation kit (EV kit) is assembled with a MAX94 and the basic components necessary to evaluate the -bit analog-to-digital converter (ADC). Connectors for

More information