Ginger Bread House

Size: px
Start display at page:

Download "Ginger Bread House"

Transcription

1 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 of course they don t want to end on the unemployment office, thought times to be and Elf, so they decided to put a sensor in the garden to know when Santa is coming For this exercise we will use the Sharp IR sensor and the Wave Shield, and of course a Ginger Bread house. Let s start learning about the Wave Shield Wave Shield Adding quality audio to an electronic project is surprisingly difficult. People tend to end up either using low-quality ISD chips (you might get 8Khz sampling rate for 30seconds out of these, if you're lucky!) or mucking around with trying to control a CD or MP3 player. Volume can be controlled with the onboard thumbwheel potentiometer. Can play any uncompressed 22KHz, 12bit, mono Wave (.wav) files of any size. While it isn t CD quality, it is certainly good enough to play music, have spoken word, or audio effects. Output is mono, into L and R channels, standard 3.5mm headphone jack and a connection for a speaker that is switched on when the headphones are unplugged. Files are read off of FAT16 formatted SD/MMC card. Included library makes playing audio easy. FIRST STEP, FORMATTING THE SD CARD If you bought an SD card, chances are it's already pre-formatted with a FAT file system. However you may have problems with how the factory formats the card, or if it's an old cart it needs to be reformatted. The Arduino SD library we use supports both FAT16 and FAT32 filesystems. If you have a very small SD card, say 8-32 Megabytes you might find it is formatted FAT12 which isn't supported. You'll have to reformat these cards. Either way, it's always a good idea to format the card before using, even if it's new! Note that formatting will erase the card so save anything you want first. Don t worry, I ll provide the card in the right format.

2 SECOND STEP, CONVERT THE FILES Again, I already put the Sound files in the right format for you, 22KHz, 12bit, mono Wave (.wav) THIRD STEP, DOWNLOAD THE LIBRARY Go to and download the latest library (wavehc zip ) or get it from Install it on your arduino Library folder. FOURTH STEP, TRY THE ARDUINO WAVE Go ahead and open the daphc example from the WaveHC Submenu. Or download the code step_4.ino from Fede s web page. This code should play the two files we have on the card. Now that we know the Wave shield is working let s incorporate the SHARP IR sensor INFRARED PROXIMITY SENSOR - SHARP GP2Y0A21YK The Sharp GP2Y0A21YK is an Infrared proximity Sensor. It shines a beam of IR light from an LED, and measures the intensity of light that is bounced back using an infrared sensor. If you stare at the IR emitter, you can see one of the LEDs glowing slightly red as some of the IR falls into the visiblelight spectrum. Because the GP2Y0A21YK is sensing the intensity of its reflected IR light, the sensor outputs near 0V when nothing is in front of it (approx. > 3ft), and ramps up as an object comes near. At about 4in, the reading from the Arduino is about 630.

3 FIFTH STEP: FIRST, CONNECTING THE SENSOR (use the Jumpers Attached to the Wave Shield) Red wire: Arduino 5V Black Wire: Arduino Ground Yellow Wire: Analog in A0 Once you connect the sensor to the Arduino read it as any analog sensor with analogread() function. SIXTH STEP: Upload the following code, open the serial monitor and find the range for the Sharp sensor. Write down the range you are getting from the IR sensor. You can download the code step_6.ino from Fede s web page. CODE: int sensorpin = A0; int sensorvalue = 0; void setup() { Serial.begin (9600); void loop() { sensorvalue = analogread(sensorpin); Serial.println (sensorvalue); delay (300); Let s incorporate the RGB LED at this point RGB LEDS RGB LEDs are in essence, three LEDs of different colors in ONE. The idea here is to change individually the brightness of each LED (R G B) so you can achieve any color on the visible color spectrum; therefore you want to use PWM pins. RGB LEDs contain red, green and blue emitters, generally using a four-wire connection with one common lead (anode or cathode). These LEDs can have either common positive or common negative leads. Common cathode Vs. Common Anode The different between common cathode and common anode RGB LEDs is pretty much the direction of the three LEDs.

4 What means that in order to operate a common cathode RGB LED you have to individually provide power to each LED (by turning the Arduino pins (HIGH). For common cathode RGB LED you need to provide Ground (Arduino Pins LOW) Connect the hardware as follows -Red LED (first lead) to pin 6 (PWM) via the 120 ohms resistor. -Common cathode (second lead) to Arduino Ground. -Green LED (third lead) to pin 9 via the 120 ohms resistor. -Blue LED (Fourth and last lead) to pin 11 via the 120 ohms resistor. EIGHTH STEP: WRITE AND UPLOAD THE RGB LED CODE SEVENTH STEP: CONNECTING THE RGB LED Write the code below and upload the program to your Arduino and try it out. This is the lighting effect for the party!! You can download the code below from Fede s web page. Code for the PARTY MODE: int ledcolor = 0; int a = 50; //this sets how long the stays one color for int red = 6; //this sets the red led pin int green = 9; //this sets the green led pin int blue = 11; //this sets the blue led pin void setup() { //this sets the output pins pinmode(red, OUTPUT); pinmode(green, OUTPUT); pinmode(blue, OUTPUT); void loop() { int ledcolor = random(7); //this randomly selects a number between 0 and 6 switch (ledcolor) { case 0: //if ledcolor equals 0 then the led will turn red analogwrite(red, 204); case 1: //if ledcolor equals 1 then the led will turn green case 2: //if ledcolor equals 2 then the led will turn blue case 3: //if ledcolor equals 3 then the led will turn yellow analogwrite(red, 160);

5 case 4: //if ledcolor equals 4 then the led will turn cyan analogwrite(red, 168); case 5: //if ledcolor equals 5 then the led will turn magenta case 6: //if ledcolor equals 6 then the led will turn white analogwrite(red, 100); Code for the GOOD ELF MODE: int red = 6; //this sets the red led pin int green = 9; //this sets the green led pin int blue = 11; //this sets the blue led pin void setup() { //this sets the output pins pinmode(red, OUTPUT); pinmode(green, OUTPUT); pinmode(blue, OUTPUT); void loop() { analogwrite(red, 204); analogwrite(blue, 50); analogwrite(green, 50); NINTH AND FINAL STEP; PUTTING ALL TOGETHER At this point we know that the Wave Shield the Sharp IR sensor and the RGB LED are working property, let s go ahead and put everything together so when someone is close to the gingerbread house the party stops and the elves start singing jiggles and turn the strobe light off. Use the codes from steps 4, 6 and 8 (both) as a reference Oh don t forget to build the ginger bread house!!!

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

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

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

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

R,G,B LEDs. Three PWM outputs and three primary colors. Just screams to be made, doesn t it? 220 (red,red,brown) or 330 (orange,orange,brown)

R,G,B LEDs. Three PWM outputs and three primary colors. Just screams to be made, doesn t it? 220 (red,red,brown) or 330 (orange,orange,brown) R,G,B LEDs Three PWM outputs and three primary colors. Just screams to be made, doesn t it? Arduino board gnd pin 11 pin 10 pin 9 220 (red,red,brown) or 330 (orange,orange,brown) red green blue With RGB

More information

Lecture (04) Arduino Microcontroller Programming and interfacing. By: Dr. Ahmed ElShafee

Lecture (04) Arduino Microcontroller Programming and interfacing. By: Dr. Ahmed ElShafee Lecture (04) Arduino Microcontroller Programming and interfacing By: Dr. Ahmed ElShafee 1 Dr. Ahmed ElShafee, ACU : Spring 2019 EEP02 Practical Applications in Electrical Arduino Board Strong Friend Created

More information

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

Bill of Materials: 7-Segment LED Die with Arduino PART NO 7-Segment LED Die with Arduino PART NO. 2190194 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

More information

Informatics Enlightened Station 1 Sunflower

Informatics Enlightened Station 1 Sunflower Efficient Sunbathing For a sunflower, it is essential for survival to gather as much sunlight as possible. That is the reason why sunflowers slowly turn towards the brightest spot in the sky. Fig. 1: Sunflowers

More information

Character LCDs. Created by lady ada. Last updated on :47:43 AM UTC

Character LCDs. Created by lady ada. Last updated on :47:43 AM UTC Character LCDs Created by lady ada Last updated on 2017-12-16 12:47:43 AM UTC Guide Contents Guide Contents Overview Character vs. Graphical LCDs LCD Varieties Wiring a Character LCD Installing the Header

More information

Fig. 1 Analog pins of Arduino Mega

Fig. 1 Analog pins of Arduino Mega Laboratory 7 Analog signals processing An analog signals is variable voltage over time and is usually the output of a sensor that monitors the environment. Such a signal can be processed and interpreted

More information

This module senses temperature and humidity. Output: Temperature and humidity display on serial monitor.

This module senses temperature and humidity. Output: Temperature and humidity display on serial monitor. Elegoo 37 Sensor Kit v2.0 Elegoo provides tutorials for each of the sensors in the kit provided by Maryland MESA. Each tutorial focuses on a single sensor and includes basic information about the sensor,

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

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

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

Informatics Enlightened Station 2 Park distance control system

Informatics Enlightened Station 2 Park distance control system Those of you who will get their driver s license soon will have to deal with one huge nightmare: parallel parking! You move your car back and forth, but in the end, you re still not in the right spot and

More information

Experiment 0: Hello, micro:bit!

Experiment 0: Hello, micro:bit! Experiment 0: Hello, micro:bit! Introduction Hello World is the term we use to define that first program you write in a programming language or on a new piece of hardware. Essentially it is a simple piece

More information

MAKE AN RGB CONTROL KNOB.

MAKE AN RGB CONTROL KNOB. MAKE AN RGB CONTROL KNOB. This is a knob based colour changing controller that uses a custom programmed microcontroller to pack a lot of features into a small affordable kit. The module can drive up to

More information

Digital 1 Final Project Sequential Digital System - Slot Machine

Digital 1 Final Project Sequential Digital System - Slot Machine Digital 1 Final Project Sequential Digital System - Slot Machine Joseph Messner Thomas Soistmann Alexander Dillman I. Introduction The purpose of this lab is to create a circuit that would represent the

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

Theory and Practice of Tangible User Interfaces. Thursday Week 3: Analog Input. week. Sensor 1: Potentiometers. Analog input

Theory and Practice of Tangible User Interfaces. Thursday Week 3: Analog Input. week. Sensor 1: Potentiometers. Analog input week 03 Sensor 1: Potentiometers Analog input 1 Red LED Recall 2 Diffusers Showcase your diffuser! 3 4 Digital vs. Analog Binary vs. continuous signals Binary / Digital = whether or not Continuous / Analog

More information

Smart Interface Components. Sketching in Hardware 2 24 June 2007 Tod E. Kurt

Smart Interface Components. Sketching in Hardware 2 24 June 2007 Tod E. Kurt Smart Interface Components Sketching in Hardware 2 24 June 2007 Tod E. Kurt Interface Components? Sensors buttons / knobs light sound Actuators motion / vibration lights sound force proximity, location

More information

DAGON Company Leszno Jackowskiego 24 Street tel DAGON Lighting series SPL-3

DAGON Company Leszno Jackowskiego 24 Street tel DAGON Lighting series SPL-3 DAGON Company 64-100 Leszno Jackowskiego 24 Street tel. +48 664-092-493 dagon@iadagon.pl www.dagonlighting.com DAGON Lighting series SPL-3 DIODES and RGB LED STRIP DRIVER works alone or controlled by:

More information

Preface. If you have any TECHNICAL questions, add a topic under FORUM section on our website and we'll reply as soon as possible.

Preface. If you have any TECHNICAL questions, add a topic under FORUM section on our website and we'll reply as soon as possible. About SunFounder Preface SunFounder is a technology company focused on Raspberry Pi and Arduino open source community development. Committed to the promotion of open source culture, we strive to bring

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

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

Preface. About SunFounder. About Super Kit. Free Support

Preface. About SunFounder. About Super Kit. Free Support About SunFounder Preface SunFounder is a technology company focused on Raspberry Pi and Arduino open source community development. Committed to the promotion of open source culture, we strive to bring

More information

Video to DVI 1080p Scaler Box - ID# 796

Video to DVI 1080p Scaler Box - ID# 796 Video to DVI 1080p Scaler Box - ID# 796 Operation Manual Introduction Video to DVI 1080p Scaler Box is an upgraded design to convert Standard Definition Composite Video (CV) and S-Video (SV) signals to

More information

Alice EduPad Board. User s Guide Version /11/2017

Alice EduPad Board. User s Guide Version /11/2017 Alice EduPad Board User s Guide Version 1.02 08/11/2017 1 Table OF Contents Chapter 1. Overview... 3 1.1 Welcome... 3 1.2 Launchpad features... 4 1.3 Alice EduPad hardware features... 4 Chapter 2. Software

More information

"Sophisticated Model Railroad Electronics"

Sophisticated Model Railroad Electronics LOGIC RAIL TM "Sophisticated Model Railroad Electronics" TECHNOLOGIES 21175 Tomball Pkwy Phone: (281) 251-5813 Suite 287 email: info@logicrailtech.com Houston, TX 77070 http://www.logicrailtech.com Block

More information

Dynamic Animation Cube Group 1 Joseph Clark Michael Alberts Isaiah Walker Arnold Li

Dynamic Animation Cube Group 1 Joseph Clark Michael Alberts Isaiah Walker Arnold Li Dynamic Animation Cube Group 1 Joseph Clark Michael Alberts Isaiah Walker Arnold Li Sponsored by: Department of Electrical Engineering & Computer Science at UCF What is the DAC? The DAC is an array of

More information

Ch. 1: Audio/Image/Video Fundamentals Multimedia Systems. School of Electrical Engineering and Computer Science Oregon State University

Ch. 1: Audio/Image/Video Fundamentals Multimedia Systems. School of Electrical Engineering and Computer Science Oregon State University Ch. 1: Audio/Image/Video Fundamentals Multimedia Systems Prof. Ben Lee School of Electrical Engineering and Computer Science Oregon State University Outline Computer Representation of Audio Quantization

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

CM-392-Video to HDMI Scaler Box ID#481

CM-392-Video to HDMI Scaler Box ID#481 CM-392-Video to HDMI Scaler Box ID#481 Operation Manual Introduction CM-392-Video to HDMI Scaler Box is designed to convert Composite and S-Video to Digital HDMI in a variety of HDTV resolutions. It handles

More information

CAR-5N / CAR-5P Video to RGB Converter for CAR display. Operation Manual

CAR-5N / CAR-5P Video to RGB Converter for CAR display. Operation Manual CAR-5N / CAR-5P Video to RGB Converter for CAR display Operation Manual TABLE OF CONTENTS 1. Introduction... 1 2. Features... 1 3. Package Contents... 1 4. Operation Controls and Functions... 2 4.1 Front

More information

DS / /113. Pair (TP) User s Guide

DS / /113. Pair (TP) User s Guide Video+Audio to Twisted Pair (TP) User s Guide Welcome! We greatly appreciate your purchase of the DS801- Video + Audio to Twisted Pair Transmitter/Receiver. We are sure you will find it reliable and simple

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

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

DA VGA Line Receiver User s Guide

DA VGA Line Receiver User s Guide Welcome! We greatly appreciate your purchase of the DA103-217 VGA Line Receiver. We are sure you will find it reliable and simple to use. Superior performance for the right price, backed by solid technical

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

CT-DMX-300 LED Controller

CT-DMX-300 LED Controller CT-DMX-300 LED Controller V5.00 (Kindly please read through this manual carefully before use) 1 Product oductbrief Brief CT-DMX-300 Multifunction Full-color Controller is dedicated to control color changes

More information

Calibrating the timecode signal input

Calibrating the timecode signal input Chapter 5 Calibrating the timecode signal input Computer hardware can introduce an offset between the timecode signal and the video signal, which causes the timecode and video to be offset when they are

More information

Workshop III: Analog and Sensors

Workshop III: Analog and Sensors Workshop III: Analog and Sensors Last Updated October 30, 2013 Table of Contents The Analog to Digital Converter (ADC)... 3 Figure 1: Analog comparator... 3 Resolution... 3 Figure 2: Analog voltage vs.

More information

Using Sliders with the 4201-B Lighting Controller Application Note June 26, 2008

Using Sliders with the 4201-B Lighting Controller Application Note June 26, 2008 Using Sliders with the 4201-B Lighting Controller Application Note June 26, 2008 This application note will discuss ways of using potentiometers (sliders or normal rotary volume control type) with the

More information

This guide gives details of the effects available on the FX selection DMX channels 15 and 17 in the MAC Aura.

This guide gives details of the effects available on the FX selection DMX channels 15 and 17 in the MAC Aura. MAC Aura FX Guide This guide gives details of the effects available on the FX selection DMX channels 15 and 17 in the MAC Aura. Aura Sync Dimmer sync DMX values 10-12 Percent 4 Input parameters Dimmer

More information

LinTronic. TableTop series. Hardware version 6. Updated

LinTronic. TableTop series. Hardware version 6. Updated Updated 151120 TableTop series Hardware version 6 We keep expanding Hardware 6 Introduced 2011 Hardware 5 Introduced 2006 Hardware 4 Introduced 2003 32KByte 128KByte 256KByte What's new? Feature Hardware

More information

Azatrax Model Railroad Track Signal Control - Single Track

Azatrax Model Railroad Track Signal Control - Single Track Installation Guide Azatrax Model Railroad Track Signal Control - Single Track TS2 What it is: The TS2 operates one or two trackside block signals (one in each direction) on one track to simulate the block

More information

VGA, Audio & RS-232 Serial with IR Pass-Thru over Single CAT5 /RJ45 Extender Kit

VGA, Audio & RS-232 Serial with IR Pass-Thru over Single CAT5 /RJ45 Extender Kit VGA, Audio & RS-232 Serial with IR Pass-Thru over Single CAT5 /RJ45 Extender Kit User Manual (VAS-E) [Must be used with Solid CAT5e or CAT6 Cable] All information is subject to change without notice. All

More information

Connecting an Intel based Macintosh laptop to a TV

Connecting an Intel based Macintosh laptop to a TV Connecting an Intel based Macintosh laptop to a TV Scenario 1: TV has a PC input on it 1. Look for the VGA connector on the back of your TV. It may also be labeled PC or RGB. 2. Make sure you have the

More information

Downloads from: https://ravishbegusarai.wordpress.com/download_books/

Downloads from: https://ravishbegusarai.wordpress.com/download_books/ 1. The graphics can be a. Drawing b. Photograph, movies c. Simulation 11. Vector graphics is composed of a. Pixels b. Paths c. Palette 2. Computer graphics was first used by a. William fetter in 1960 b.

More information

Capstone Experiment Setups & Procedures PHYS 1111L/2211L

Capstone Experiment Setups & Procedures PHYS 1111L/2211L Capstone Experiment Setups & Procedures PHYS 1111L/2211L Picket Fence 1. Plug the photogate into port 1 of DIGITAL INPUTS on the 850 interface box. Setup icon. the 850 box. Click on the port 1 plug in

More information

Broadcast A/V Division M-LYNX-702 V.3. Dual 7 LCD Display. User Manual

Broadcast A/V Division M-LYNX-702 V.3. Dual 7 LCD Display. User Manual Broadcast A/V Division M-LYNX-702 V.3 Dual 7 LCD Display User Manual 1. Package Includes Table of Contents 1. Package Includes Table of Contents 01 02 One M-LYNX-702 Monitor One universal AC power adapter

More information

LED DRIVERS. LQC4D-V1 4 channels. User Manual FEATURES

LED DRIVERS. LQC4D-V1 4 channels. User Manual FEATURES pag. 1/13 FEATURES Outputs: 4 x channels BUS+SEQUENCER+FADER+DIMMER+DRIVER Input: DC 12/24/48 Vdc BUS Command: DALI LOCAL Command: 4x N.O. push button (with or without memory), 0-10V, 1-10V Controls: dimmer,

More information

Broadcast A / V Division M-LYNX-702 V.3. Dual 7 LCD Display. User Manual

Broadcast A / V Division M-LYNX-702 V.3. Dual 7 LCD Display. User Manual Broadcast A / V Division M-LYNX-702 V.3 Dual 7 LCD Display User Manual Table of Contents Table of Contents 1. Package Includes 2. Product Description 2.1 Front Panel 2.2 Rear Panel Connections 3. On-Screen

More information

Description Diagram Page

Description Diagram Page notiziario tecnico 2004 SISTEMA VIDEO 4+n installation wiring diagrams VIDEO SYSTEM 4+n INDEX: Description Diagram Page Section of wires 2/UK Suggestions for the correct installation 3/UK Terminal functions

More information

BLINKIN LED DRIVER USER'S MANUAL. REV UM-0 Copyright 2018 REV Robotics, LLC 1

BLINKIN LED DRIVER USER'S MANUAL. REV UM-0 Copyright 2018 REV Robotics, LLC 1 fg BLINKIN LED DRIVER USER'S MANUAL REV-11-1105-UM-0 Copyright 2018 REV Robotics, LLC 1 TABLE OF CONTENTS 1 OVERVIEW... 3 1.1 CONNECTIONS... 3 1.2 KIT CONTENTS... 3 1.3 ELECTRICAL RATINGS... 3 1.4 SUPPORTED

More information

MAKEVMP502 BASIC LEARNING KIT FOR RASPBERRY PI USER MANUAL

MAKEVMP502 BASIC LEARNING KIT FOR RASPBERRY PI USER MANUAL BASIC LEARNING KIT FOR RASPBERRY PI USER MANUAL USER MANUAL 1. Introduction To all residents of the European Union Important environmental information about this product This symbol on the device or the

More information

LEAMING INDUSTRIES MTS-4A BTSC STEREO GENERATOR

LEAMING INDUSTRIES MTS-4A BTSC STEREO GENERATOR LEAMING INDUSTRIES MTS-4A BTSC STEREO GENERATOR INSTRUCTION BOOK IB 090941-01 C ALL ENGINEERING DESIGNS, DRAWINGS AND DATA CONTAINED HEREIN ARE PROPRIETARY. NO PART OF THIS BOOK MAY BE COPIED OR OTHERWISE

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

Dual PAL or NTSC Video to RGB Converter (One way) with 12V Relay Switch Operation Manual

Dual PAL or NTSC Video to RGB Converter (One way) with 12V Relay Switch Operation Manual Dual PAL or NTSC Video to RGB Converter (One way) with 12V Relay Switch Operation Manual Introduction This unit converts video signals from NTSC/PAL/SECAM into RGB/Sync or RGsB (Sync On Green) to allow

More information

Video to HDMI Scaler Box

Video to HDMI Scaler Box Video to HDMI Scaler Box Operation Manual CM-392 (1). Introduction Congratulations on your purchase of the Cypress Video Scaler CM-392. Our professional Video Scaler products have been serving the industry

More information

CGA to EGA to VGA Converter (Multi) ID#425

CGA to EGA to VGA Converter (Multi) ID#425 CGA to EGA to VGA Converter (Multi) ID#425 Operation Manual Introduction The CGA to EGA to VGA Converter (Multi) is a device designed to convert any RGB monitor in a multi frequency monitor, by elaborating

More information

ModelV-LCD70-AFHD. Operating Instructions

ModelV-LCD70-AFHD. Operating Instructions ModelV-LCD70-AFHD Operating Instructions 1 2 This page intentionally left blank Table of Contents Top and Front Panel Features...6 Rear Panel Features...7 Compatible Input Formats...8 MAIN MENU AND NAVIGATION...9

More information

INSTALLATION INSTRUCTIONS WIRED REMOTE CONTROL USING TWISTED PAIR AND COAX CABLE U-WRC-U-x

INSTALLATION INSTRUCTIONS WIRED REMOTE CONTROL USING TWISTED PAIR AND COAX CABLE U-WRC-U-x Tel-Quip PH: 713-728-0625; FAX: 713-456-2512 800-317-0847 (Toll Free) www.telquipstore.com INSTALLATION INSTRUCTIONS 10-17-2013 WIRED REMOTE CONTROL USING TWISTED PAIR AND COAX CABLE U-WRC-U-x Thank you

More information

BASCOM-TV. TV Code Features: ICs supported: BASCOM versions:

BASCOM-TV. TV Code Features: ICs supported: BASCOM versions: BASCOM-TV With this software module you can generate output directly to a TV - via an RGB SCART connection - from BASCOM (AVR), using a just few resistors and a 20 MHz crystal. Write your program with

More information

Owner s guide How to use your new Opalum Furniture Sound System

Owner s guide How to use your new Opalum Furniture Sound System Owner s guide How to use your new Opalum Furniture Sound System Table of contents 1. The Opalum Furniture Sound System 3 2. Controls and connectors 4 3. The status indicator 5 3.1 Modes of the status indicator

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

USER MANUAL. VP-435 Component / UXGA HDMI Scaler MODEL: P/N: Rev 13

USER MANUAL. VP-435 Component / UXGA HDMI Scaler MODEL: P/N: Rev 13 KRAMER ELECTRONICS LTD. USER MANUAL MODEL: VP-435 Component / UXGA HDMI Scaler P/N: 2900-000262 Rev 13 Contents 1 Introduction 1 2 Getting Started 2 2.1 Achieving the Best Performance 2 2.2 Safety Instructions

More information

LT-300 LED Controller

LT-300 LED Controller LT-300 LED controller manual Page 1 of 11 LT-300 LED Controller V5.00 (Kindly please read through this manual carefully before use) LT-300 LED controller manual Page 2 of 11, Forward, Thanks for choosing

More information

AC334A. VGA-Video Ultimate BLACK BOX Remote Control. Back Panel View. Side View MOUSE DC IN BLACK BOX ZOOM/FREEZE POWER

AC334A. VGA-Video Ultimate BLACK BOX Remote Control. Back Panel View. Side View MOUSE DC IN BLACK BOX ZOOM/FREEZE POWER AC334A BLACK BOX 724-746-5500 VGA-Video Ultimate BLACK BOX 724-746-5500 Zoom Position PAL ZOOM/FREEZE POWER FREEZE ZOOM NTSC/PAL SIZE RESET POWER Size Power Remote Control DC IN MOUSE MIC IN AUDIO OUT

More information

SparkFun Inventor's Kit for micro:bit Experiment Guide

SparkFun Inventor's Kit for micro:bit Experiment Guide SparkFun Inventor's Kit for micro:bit Experiment Guide Introduction to the SparkFun Inventor's Kit for micro:bit The SparkFun Inventor s Kit for micro:bit Experiment Guide is your map for navigating the

More information

Paranormal Devices Built By Bill Chappell. For some weird reason people think I only build things that talk!

Paranormal Devices Built By Bill Chappell. For some weird reason people think I only build things that talk! Paranormal Devices Built By Bill Chappell For some weird reason people think I only build things that talk! Pucks: The Paranormal Puck. Status ( Released 4/2008) Designed to experiment with ITC phenomena

More information

Assembly and Operating Instructions for HiViz.com Kits

Assembly and Operating Instructions for HiViz.com Kits information and inspiration for students, teachers and hobbyists About Tools Products Activities Galleries Projects FAQ Links Contact Assembly and Operating Instructions for HiViz.com Kits For best results

More information

Multimedia Systems Video I (Basics of Analog and Digital Video) Mahdi Amiri April 2011 Sharif University of Technology

Multimedia Systems Video I (Basics of Analog and Digital Video) Mahdi Amiri April 2011 Sharif University of Technology Course Presentation Multimedia Systems Video I (Basics of Analog and Digital Video) Mahdi Amiri April 2011 Sharif University of Technology Video Visual Effect of Motion The visual effect of motion is due

More information

Prototyping & Engineering Electronics Kits Magic Mandala Kit Guide

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

More information

JS007WQK HEAVY DUTY WIRELESS REVERSING KIT 7 LCD DIGITAL QUAD RECORDING MONITOR with WATERPROOF CCD CAMERA

JS007WQK HEAVY DUTY WIRELESS REVERSING KIT 7 LCD DIGITAL QUAD RECORDING MONITOR with WATERPROOF CCD CAMERA JS007WQK HEAVY DUTY WIRELESS REVERSING KIT 7 LCD DIGITAL QUAD RECORDING MONITOR with WATERPROOF CCD CAMERA The JS007WQK is loaded with userfriendly features and is ideal for use in heavy duty vehicles.

More information

INSTALLATION INSTRUCTIONS WIRED REMOTE CONTROL USING COAX CABLE U-WRC-C

INSTALLATION INSTRUCTIONS WIRED REMOTE CONTROL USING COAX CABLE U-WRC-C Tel-Quip PH: 713-728-0625; FAX: 713-456-2512 www.telquip.com INSTALLATION INSTRUCTIONS 10-17-2013 WIRED REMOTE CONTROL USING COAX CABLE U-WRC-C Thank you for using the Tel-Quip Wired Remote Control. This

More information

XTENDEX Series. ST-C6DVI(A)-300 ST-C6DVI(A)-IR FOOT DVI VIDEO, AUDIO AND IR EXTENDER Installation and Operation Manual

XTENDEX Series. ST-C6DVI(A)-300 ST-C6DVI(A)-IR FOOT DVI VIDEO, AUDIO AND IR EXTENDER Installation and Operation Manual XTENDEX Series ST-C6DVI(A)-300 ST-C6DVI(A)-IR-300 300 FOOT DVI VIDEO, AUDIO AND IR EXTENDER Installation and Operation Manual MAN135 Rev Date 10/30/2017 TRADEMARK XTENDEX is a registered trademark of Network

More information

Linsn TS802 LED Card,SD802D LED Control Card

Linsn TS802 LED Card,SD802D LED Control Card Linsn TS802 LED Card,SD802D LED Control Card Linsn >> LED Sending Card >> TS802 LED Card TS802 LED Sending Card,SD802D LED Data Transmitter Function:Receiving signals from computer then fedding to receiving

More information

IBM Enhanced Color Display. Personal Computer. Hardware Reference Library _.-

IBM Enhanced Color Display. Personal Computer. Hardware Reference Library _.- ---- - - ---- ----- - --- Personal Computer --_.- Hardware Reference Library IBM Enhanced Color Display Contents Description... 1 Operating Characteristics... 2 Specifications... 5 Connector Information...

More information

Chapter Medical Table of Contents

Chapter Medical Table of Contents Chapter Table of Contents Replacement / Patient Monitoring / Modality LCD Series... 57 Colour Displays in Wide Format... 58 42 Surgical LCD for Operating Theaters... 59 24 Endoscopy LCD... 60 19 Endoscopy

More information

RGB-3400-X RGB SEQUENCER / 3-CHANNEL UNIVERSAL LED DIMMER

RGB-3400-X RGB SEQUENCER / 3-CHANNEL UNIVERSAL LED DIMMER TOUCHLESS SWITCHES. WHEN THE DESIN NEEDS TO E ASOLUTELY PEFECT -300-X SEQUENCE / 3-CHANNEL UNIVESAL LED DIMME Description -300-X is a dual function unit and can operate in two distinct modes. In Mode 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

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

Instructions when using for the first time 1. Installation (3) 2. Using the Televiewer (4)

Instructions when using for the first time 1. Installation (3) 2. Using the Televiewer (4) Instructions when using for the first time 1. Installation (3) 2. Using the Televiewer (4) 1 Introduction Chapter! This manual is intended for the 'Trust Televiewer 1610 RC'. The device allows you to switch

More information

Video to PC/HD Scaler Box. Operation Manual

Video to PC/HD Scaler Box. Operation Manual Video to PC/HD Scaler Box Operation Manual (1). Introduction Congratulations on your purchase of the Cypress Video Scaler CM-390. Our professional Video Scaler products have been serving the industry for

More information

Assignment #3: Piezo Cake

Assignment #3: Piezo Cake Assignment #3: Piezo Cake Computer Science: 7 th Grade 7-CS: Introduction to Computer Science I Background In this assignment, we will learn how to make sounds by pulsing current through a piezo circuit.

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

MATLAB & Image Processing (Summer Training Program) 4 Weeks/ 30 Days

MATLAB & Image Processing (Summer Training Program) 4 Weeks/ 30 Days (Summer Training Program) 4 Weeks/ 30 Days PRESENTED BY RoboSpecies Technologies Pvt. Ltd. Office: D-66, First Floor, Sector- 07, Noida, UP Contact us: Email: stp@robospecies.com Website: www.robospecies.com

More information

Signal processing circuit for 1-D PSD

Signal processing circuit for 1-D PSD Signal processing circuit for 1-D PSD Circuit board for easier 1-D PSD operation The is a DC signal processing circuit for one-dimensional PSD. It is suitable for displacement measurements using DC light.

More information

CCD-TR57/TR67/TR87/TR413PK/TR414PK/ TR917/TR940/TR940PK

CCD-TR57/TR67/TR87/TR413PK/TR414PK/ TR917/TR940/TR940PK CCD-TR57/TR67/TR87/TR413PK/TR414PK/ TR917/TR940/TR940PK RMT-708 SERICE MANUAL US Model CCD-TR67/TR87/TR917/TR940 Canadian Model CCD-TR57/TR67/TR87/TR917/TR940 E Model CCD-TR413PK/TR414PK/TR940PK B MECANISM

More information

EL-4KHDBT-TXRX-70-E-ARC-IRS

EL-4KHDBT-TXRX-70-E-ARC-IRS EL-4KHDBT-TX-70-E--IRS HDBT OUT L R Audio Out Optical Out () HDBT In Optical HDMI In HDMI Loop Out Ethernet Optical HDBT In EL-4KHDBT-TX-70-E--IRS Optical In HDMI Out Ethernet 1 Ethernet 2 Ethernet 3 HDBT

More information

9/23/2014. Andrew Costin, Tom Syster, Ryan Cramer Advisor: Professor Hack Instructor: Professor Lin May 5 th, 2014

9/23/2014. Andrew Costin, Tom Syster, Ryan Cramer Advisor: Professor Hack Instructor: Professor Lin May 5 th, 2014 Andrew Costin, Tom Syster, Ryan Cramer Advisor: Professor Hack Instructor: Professor Lin May 5 th, 2014 1 Problem Statement Introduction Executive Summary Requirements Project Design Activities Project

More information

4, 8, 16 Port VGA and Audio Extender / Splitter with Audio over Single CAT5

4, 8, 16 Port VGA and Audio Extender / Splitter with Audio over Single CAT5 4, 8, 16 Port VGA and Audio Extender / Splitter with Audio over Single CAT5 Model #: VGA-C5SP-4, VGA-C5SP-8, VGA-C5SP-16 2010 Avenview Inc. All rights reserved. The contents of this document are provided

More information

Video Streamer Modifications

Video Streamer Modifications CB Electronics Video Streamer Modifications CB Electronics Loddonside, Lands End House, Beggars Hill Road, Charvil, Berks RG10 0UD, UK Tel: +44 (0)118 9320345, Fax: +44 (0)118 9320346 URL: www.colinbroad.com

More information

MSS-CASCADE User Manual

MSS-CASCADE User Manual MSS-CASCADE User Manual Overview The MSS-CASCADE module is designed to provide basic ABS signaling functionality at a block boundary as part of a Modular Signal System implementation ( http://modularsignalsystem.info/

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

Technology Control Technology

Technology Control Technology L e a v i n g C e r t i f i c a t e Technology Control Technology P I C A X E 1 8 X Prog. 1.SOUND Output Prog. 3 OUTPUT & WAIT Prog. 6 LOOP Prog. 7...Seven Segment Display Prog. 8...Single Traffic Light

More information

USER MANUAL. VP-427 HDBaseT to HDMI Receiver/Scaler MODEL: P/N: Rev 5

USER MANUAL. VP-427 HDBaseT to HDMI Receiver/Scaler MODEL: P/N: Rev 5 KRAMER ELECTRONICS LTD. USER MANUAL MODEL: VP-427 HDBaseT to HDMI Receiver/Scaler P/N: 2900-300328 Rev 5 Contents 1 Introduction 1 2 Getting Started 2 2.1 Achieving the Best Performance 2 2.2 Safety Instructions

More information

Operating Instructions

Operating Instructions Broadcast A/V Division Model No. M-LYNX-702W Dual 7 High Resolution Rack Mount Display with Waveform Operating Instructions V.1.0 Table of Contents 1. PRODUCT DESCRIPTION... 3 2. MENU SETTING... 6 3. SPECIFICATIONS...

More information

Wireless Multi-Format input Transmitter to HDMI Receiver Box ID # 718

Wireless Multi-Format input Transmitter to HDMI Receiver Box ID # 718 Wireless Multi-Format input Transmitter to HDMI Receiver Box ID # 718 Operation Manual Introduction The wireless HDMI transmitter and receiver boxes use baseband technology with Wireless High Definition

More information