Edge Connector Light Level Detector

Size: px
Start display at page:

Download "Edge Connector Light Level Detector"

Transcription

1 Description This is a simple tutorial demonstrating how to use a Kitronik edge connector breakout with the BBC micro:bit. The tutorial will cover measuring ambient light levels with an LDR and dimming an LED correspondingly. In this example we will use the prototyping space on the breakout board with an LDR, two resistors and an LED. Learn how to: Breakout the BBC micro:bit using a Kitronik Edge Connector. Program your BBC micro:bit to read an external sensor. Control an LED based on light levels. Level of difficulty: Beginner. Parts List In order to complete this tutorial, you will need: 1 x BBC micro:bit. 1 x Edge connector breakout board. 1 x LED (most standard LEDs with a forward voltage no higher than 3V should work). 1 x Miniature LDR (dark resistance 20M, light resistance 5K). 1 x 100K resistor. 1 x 220 Ohm resistor. 1 x USB to Micro USB lead. 2 x AAA battery cage with JST connector. 2 x AAA batteries. 1 x Length of wire. You will also need the following equipment: A computer with a USB port and internet access.

2 Step-by-step guide to building an edge connector light level detector Step 1 First this tutorial will cover the code for the dimmer; the later steps will cover the hardware side of things. Go to the BBC micro:bit website, click Create Code then look for the Microsoft Research blocks banner and click New Project. Pick a name for your project and click create! Let s practice using the block system to build some code. The blocks are organised into categories and the categories are listed in a column down the left hand side of the screen. Step 2 Initially we need to create a forever loop. This is the block that the rest of our code will sit inside. The forever loop runs all the blocks inside it starting from the top and working its way to the bottom. Once it gets to the bottom block it starts again at the top and this process will continue forever. Click on the Basic category to open it and then drag the Forever block into the workspace. (This is the big white area in the middle of the screen.) The forever block is useful as it runs the program again from the beginning once all of the steps have been completed.

3 Step 3 This will require us to store and use data from a pin on the BBC micro:bit. To do this first we will create a variable, this is a location where we can store data in the BBC micro:bit s memory. We will then pull data from the pin and store it in that variable. Grab the Set item to block from the variables category. Rename the variable by clicking the dropdown and call it LightLevel. We will use this variable to store data from the LDR. The data stored will be a number between 0 and 1024 as this is how the BBC micro:bit sees analogue data. Drop this block into the forever block you just placed and you should find it snaps into position. Step 4 Now we have a variable ready to store temperature information we need to get the information from the sensor and put it into that variable. The way to do this is to perform an analog read. Attach an analog read pin block to the variable you just made. The analog read pin block is used to read data from a pin that you can select by clicking the drop down menu to the right hand side of the block. These blocks, when combined, will read the value from the selected pin and set the variable you created to that value. In this tutorial we will read from pin P2. Step 5 Now we need to do something with the information gathered from the analog read. Grab an analog write block and clip it underneath the first block. Set the pin to P1. Replace the number block from the analog write block with our variable LightLevel. The brighter the light that shines on the LDR the higher the output will be driven.

4 Step 6 Now would be a good time to put what we ve just done to the test. First however, we need to set up the hardware. Take your 100K resistor and solder one leg to the negative strip in the prototyping area (marked with - ) on the edge connector breakout. Solder the other end onto the centre strip at the edge of the board. Next solder the LDR. Put one leg through the positive strip (marked + ). The other leg should go into the centre strip at the edge of the board. Take a short piece of wire and connect the centre strip at the edge of the board to the pin labelled 2. Next take your current limit resistor and solder one end into the pin labelled 1. The other end of the resistor should be soldered into the left hand strip at the edge of the board. Finally take your LED and solder the long positive leg into the left hand strip at the edge of the board, and the short negative leg into the negative strip (marked with - ). Step 7 Now, let s try that out! Press compile* and after a few moments the code should appear as a download in your browser. If you plug your BBC micro:bit into a USB port it will show up as a storage device. Simply drag and drop the.hex file you just downloaded onto the BBC micro:bit. The file might not show up on the BBC micro:bit in the file explorer but it is there! Once the file has been transferred (the light on the BBC micro:bit will stop blinking rapidly) remove the BBC micro:bit from your computer. Now power up your BBC micro:bit with the batteries, then press the reset button next to the USB connector. The LED should be on and grow dimmer if you cover the LDR. *If this is the first time you have used the compiler you will be asked to make an account. Ask your teacher for the code required to make an account.

5 Further Tasks If we wanted to invert the function of the light sensor board we have built so that the LED lights up when the LDR is covered, we can do this in the code. The analog value read from pin P2 will be between 0 and 1024, so if we want to reverse the reading we can subtract it from So a reading of 0 will become 1024 and a reading of 1024 will become 0.

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

The BBC micro:bit: What is it designed to do?

The BBC micro:bit: What is it designed to do? The BBC micro:bit: What is it designed to do? The BBC micro:bit is a very simple computer. A computer is a machine that accepts input, processes this according to stored instructions and then produces

More information

Binary s UFO Inventors Manual

Binary s UFO Inventors Manual Binary s UFO Inventors Manual - Parents please read the instructions carefully with your children prior to first use. - Please keep this instruction manual as it contains important safety information -

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

Lesson Sequence: S4A (Scratch for Arduino)

Lesson Sequence: S4A (Scratch for Arduino) Lesson Sequence: S4A (Scratch for Arduino) Rationale: STE(A)M education (STEM with the added Arts element) brings together strands of curriculum with a logical integration. The inclusion of CODING in STE(A)M

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

Inputs and outputs. Connecting leads. Buzzer

Inputs and outputs. Connecting leads. Buzzer Inputs and outputs Mr Bit experiments are designed to help younger pupils get started with connecting sensors and devices to the BBC micro:bit. They are useful 'warm-up' activities before attempting Mr

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

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

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

Data Acquisition Using LabVIEW

Data Acquisition Using LabVIEW Experiment-0 Data Acquisition Using LabVIEW Introduction The objectives of this experiment are to become acquainted with using computer-conrolled instrumentation for data acquisition. LabVIEW, a program

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

AXE101 PICAXE-08M2 Cyberpet Kit

AXE101 PICAXE-08M2 Cyberpet Kit AXE101 PICAXE-08M2 Cyberpet Kit The Cyberpet project uses a PICAXE-08M2 microcontroller with two LEDs as the pets eyes and a piezo sounder as a voice for the pet. The project also uses a switch so that

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

Using a Photron FASTCAM APX RS High-Speed Camera with MiDAS DA

Using a Photron FASTCAM APX RS High-Speed Camera with MiDAS DA Using a Photron FASTCAM APX RS High-Speed Camera with MiDAS DA Date Published: March 2010 Revised: December 2012 Abstract This application note describes the hardware connections and software settings

More information

Using a Vision Research Phantom v1610 High-Speed Camera with MiDAS DA

Using a Vision Research Phantom v1610 High-Speed Camera with MiDAS DA Using a Vision Research Phantom v1610 High-Speed Camera with MiDAS DA Date Published: December 2013 Abstract This camera connection guide describes the hardware connections and software settings for using

More information

Basic LabVIEW Programming Amit J Nimunkar, Sara Karle, Michele Lorenz, Emily Maslonkowski

Basic LabVIEW Programming Amit J Nimunkar, Sara Karle, Michele Lorenz, Emily Maslonkowski Introduction This lab familiarizes you with the software package LabVIEW from National Instruments for data acquisition and virtual instrumentation. The lab also introduces you to resistors, capacitors,

More information

COLOUR CHANGING USB LAMP KIT

COLOUR CHANGING USB LAMP KIT TEACHING RESOURCES SCHEMES OF WORK DEVELOPING A SPECIFICATION COMPONENT FACTSHEETS HOW TO SOLDER GUIDE SEE AMAZING LIGHTING EFFECTS WITH THIS COLOUR CHANGING USB LAMP KIT Version 2.1 Index of Sheets TEACHING

More information

ThermalCapture GrabberUSB - User Guide

ThermalCapture GrabberUSB - User Guide ThermalCapture GrabberUSB - User Guide TeAx Technology Revision: EN-009 Important Read carefully before use Keep for future reference Contents 1 Overview 2 Scope of delivery.......................................

More information

"shell" digital storage oscilloscope (Beta)

shell digital storage oscilloscope (Beta) "shell" digital storage oscilloscope (Beta) 1. Main board: solder the element as the picture shows: 2. 1) Check the main board is normal or not Supply 9V power supply through the connector J7 (Note: The

More information

2. Get a free Adobe ID at adobe.com (Click Sign In (top right corner), click Get an Adobe ID, fill in the form and click Sign Up)

2. Get a free Adobe ID at adobe.com (Click Sign In (top right corner), click Get an Adobe ID, fill in the form and click Sign Up) Downloading Library ebooks to your ereader Summary of Steps 1. Download book to your computer first 2. Open the book with the free software Adobe Digital Editions (books will only work with this software

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

QUIZ BUZZER KIT TEACHING RESOURCES. Version 2.0 WHO ANSWERED FIRST? FIND OUT WITH THIS

QUIZ BUZZER KIT TEACHING RESOURCES. Version 2.0 WHO ANSWERED FIRST? FIND OUT WITH THIS TEACHING RESOURCES SCHEMES OF WORK DEVELOPING A SPECIFICATION COMPONENT FACTSHEETS HOW TO SOLDER GUIDE WHO ANSWERED FIRST? FIND OUT WITH THIS QUIZ BUZZER KIT Version 2.0 Index of Sheets TEACHING RESOURCES

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

Contents: 1 LANsmart Pro Main Unit 4 Remote Unit: ID1, ID2, ID3, ID4

Contents: 1 LANsmart Pro Main Unit 4 Remote Unit: ID1, ID2, ID3, ID4 LANsmart Pro user manual Introduction LANsmart Pro is a hand-held, multifunction Cable Map Tester and Cable Length Meter. It has an integrated Analog and Digital Tone Generator, Port Finder, and Quick

More information

ELECTRONIC GAME KIT ESSENTIAL INFORMATION. Version 2.0 BUILD YOUR OWN MEMORY & REACTIONS

ELECTRONIC GAME KIT ESSENTIAL INFORMATION. Version 2.0 BUILD YOUR OWN MEMORY & REACTIONS ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS BUILD YOUR OWN MEMORY & REACTIONS ELECTRONIC GAME KIT Version 2.0 Build Instructions Before

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

ELECTRONIC GAME KIT TEACHING RESOURCES. Version 2.0 BUILD YOUR OWN MEMORY & REACTIONS

ELECTRONIC GAME KIT TEACHING RESOURCES. Version 2.0 BUILD YOUR OWN MEMORY & REACTIONS TEACHING RESOURCES SCHEMES OF WORK DEVELOPING A SPECIFICATION COMPONENT FACTSHEETS HOW TO SOLDER GUIDE BUILD YOUR OWN MEMORY & REACTIONS ELECTRONIC GAME KIT Version 2.0 Index of Sheets TEACHING RESOURCES

More information

B2 Spice A/D Tutorial Author: B. Mealy revised: July 27, 2006

B2 Spice A/D Tutorial Author: B. Mealy revised: July 27, 2006 B2 Spice A/D Tutorial Author: B. Mealy revised: July 27, 2006 The B 2 Spice A/D software allows for the simulation of digital, analog, and hybrid circuits. CPE 169, however, is only concerned with the

More information

Spectacle Motion Board Hookup Guide

Spectacle Motion Board Hookup Guide Page 1 of 16 Spectacle Motion Board Hookup Guide Spectacle Motion Board The Spectacle Motion Board makes it easy to add movement to your Spectacle projects. It can control up to 5 servo motors, either

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

Using an IDT Redlake X4 High-Speed Camera with MiDAS DA

Using an IDT Redlake X4 High-Speed Camera with MiDAS DA Date Published: March 2010 Revised: December 2012 Abstract This camera connection guide describes the hardware connections and software settings for using MiDAS DA software with an IDT/Redlake X4 model

More information

SECU-16. Specifications Power: Input Voltage 9-12V DC or AC Input Current Max 200mA. 8 2-wire inputs, Analog (0 5VDC) or Supervised

SECU-16. Specifications Power: Input Voltage 9-12V DC or AC Input Current Max 200mA. 8 2-wire inputs, Analog (0 5VDC) or Supervised SECU-16 Introduction The SECU-16 module allows 8 inputs and 8 low-current relay outputs to be added to an ADICON control system. The inputs may be supervised (switch closure), analog, or 4-20mA. Specifications

More information

1. Logging into My Media Mall

1. Logging into My Media Mall 1 For Kindle Keyboard, Touch, Paperwhite Instructions for Borrowing Kindle E-books from My Media Mall *Please note that you will need your barcode and PIN number from your library account, an email address,

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

DE2-115/FGPA README. 1. Running the DE2-115 for basic operation. 2. The code/project files. Project Files

DE2-115/FGPA README. 1. Running the DE2-115 for basic operation. 2. The code/project files. Project Files DE2-115/FGPA README For questions email: jeff.nicholls.63@gmail.com (do not hesitate!) This document serves the purpose of providing additional information to anyone interested in operating the DE2-115

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

B. The specified product shall be manufactured by a firm whose quality system is in compliance with the I.S./ISO 9001/EN 29001, QUALITY SYSTEM.

B. The specified product shall be manufactured by a firm whose quality system is in compliance with the I.S./ISO 9001/EN 29001, QUALITY SYSTEM. VideoJet 8000 8-Channel, MPEG-2 Encoder ARCHITECTURAL AND ENGINEERING SPECIFICATION Section 282313 Closed Circuit Video Surveillance Systems PART 2 PRODUCTS 2.01 MANUFACTURER A. Bosch Security Systems

More information

Hardware Guide BrightSign, LLC Version:.1 Los Gatos, CA, USA. MODELS: XD Product Line

Hardware Guide BrightSign, LLC Version:.1 Los Gatos, CA, USA. MODELS: XD Product Line Hardware Guide BrightSign, LLC Version:.1 Los Gatos, CA, USA MODELS: XD Product Line Contents Overview... 1 Block Diagram... 2 Ports... 2 XD230... 2 XD1030... 2 XD1230... 3 Power Connector... 3 Ethernet...

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

Dual HD-SDI Output (MCX + BNC connector) HD- SDI Cable Driver. HDMI DVI Tx connector. Optical HD- SDI Output LC - connector. 8pin

Dual HD-SDI Output (MCX + BNC connector) HD- SDI Cable Driver. HDMI DVI Tx connector. Optical HD- SDI Output LC - connector. 8pin Thunder Link is a family of small form factor modules for formatting and converting generic digital video streams to standard compliant formats. Different interface standards are supported from the transmitter

More information

PaPiRus Assembly Tips And Gotchas

PaPiRus Assembly Tips And Gotchas PaPiRus Assembly Tips And Gotchas In this tutorial we are going to look at some tips and gotchas about the PaPiRus HAT and the PaPiRus Zero epaper diplays. This is what's covered in this tutorial: Connect

More information

Aegis Electronic Group

Aegis Electronic Group This is a family of small form factor modules for formatting and converting generic digital video streams to standard compliant formats. Different interface standards are supported from the transmitter

More information

RECORD & PLAYBACK KIT

RECORD & PLAYBACK KIT TEACHING RESOURCES SCHEMES OF WORK DEVELOPING A SPECIFICATION COMPONENT FACTSHEETS HOW TO SOLDER GUIDE ADD AN AUDIO MESSAGE TO YOUR PRODUCT WITH THIS RECORD & PLAYBACK KIT Version 2.1 Index of Sheets TEACHING

More information

Tailgate module BEXPRO PRINS VSI

Tailgate module BEXPRO PRINS VSI new digital technology For any damage that may arise due to our instructions, we can of course, assume no liability. The publication is solely for informational Purposes has been written and contains no

More information

SPECIFICATION SFW056XU1-AV

SPECIFICATION SFW056XU1-AV Version:2.0 Customer Approved Customer SPECIFICATION SFW056XU1-AV Date By Sunful s Confirmation Approved By Prepared By Date: 2005.1.10-1 - CONTENTS General Description..3 Features.3 Applications 3 Driving

More information

ENGR 1000, Introduction to Engineering Design

ENGR 1000, Introduction to Engineering Design Unit 2: Mechatronics ENGR 1000, Introduction to Engineering Design Lesson 2.3: Controlling Independent Systems Hardware: 12 VDC power supply Several lengths of wire NI-USB 6008 Device with USB cable Digital

More information

RotorX RX122 Atom Building Guide

RotorX RX122 Atom Building Guide RotorX RX122 Atom Building Guide 1 What s included? 1x Atom CF 2mm Frame 1x Naze32 Flight Controller (Pre- flashed with Cleanflight) 1x pack of mounting hardware 1x JST pigtail 1x servo wire 1x 520tvl

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

Instructions and answers for teachers

Instructions and answers for teachers Unit 7: Electrical devices LO3: Understand how to use signal conditioning techniques and signal conversion devices Digital to Analogue conversion the R-2R ladder Instructions and answers for teachers These

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

A Motor can be in many groups, by assigning additional channel# on it.

A Motor can be in many groups, by assigning additional channel# on it. Timer Remote Control Instruction How to use the channel numbers - There are 32 channels on the Remote Control Timer you can assign to Curtain Motor(s). To operate the Motors individually by itself only,

More information

Combo Board.

Combo Board. Combo Board www.matrixtsl.com EB083 Contents About This Document 2 General Information 3 Board Layout 4 Testing This Product 5 Circuit Diagram 6 Liquid Crystal Display 7 Sensors 9 Circuit Diagram 10 About

More information

FOUR CHANNEL USB RECORDER PCRU01. User manual. Table of Contents

FOUR CHANNEL USB RECORDER PCRU01. User manual. Table of Contents FOUR CHANNEL USB RECORDER PCRU01 User manual Table of Contents Features 2 Specifications 2 hardware 2 software: 2 system requirements 2 Software installation 2 SAFETY and WARNINGS 3 Warranty 3 Connections

More information

Spring 2011 Microprocessors B Course Project (30% of your course Grade)

Spring 2011 Microprocessors B Course Project (30% of your course Grade) Course Project guidelines Spring 2011 Microprocessors B 17.384 Course Project (30% of your course Grade) Overall Guidelines Design a fairly complex system that contains at least one microcontroller (the

More information

Configuring the Stack ST8961 VS Module when used in conjunction with a Stack ST81xx series display.

Configuring the Stack ST8961 VS Module when used in conjunction with a Stack ST81xx series display. Configuring the Stack ST8961 VS Module when used in conjunction with a Stack ST81xx series display. Your Stack ST8961 VS module allows you to synchronize, overlay, and record data available on your Stack

More information

ECE Design Team 3 Madi Kassymbekov How to use MSP 430 Peripheral Sensors and use of LEDs as sensors

ECE Design Team 3 Madi Kassymbekov How to use MSP 430 Peripheral Sensors and use of LEDs as sensors ECE 480 - Design Team 3 Madi Kassymbekov How to use MSP 430 Peripheral Sensors and use of LEDs as sensors 1 Table of Contents LED definition and structure.3 LED setup as a receiver.4 MSP 430 Peripheral

More information

About your Kobo ereader...5

About your Kobo ereader...5 User Guide Kobo Glo HD User Guide Table of Contents About your Kobo ereader...5 Anatomy of your Kobo ereader...5 Charging your Kobo ereader...7 Charging your Kobo ereader with a wall adapter...8 Turning

More information

USB-0100TX USB Fast Ethernet Converter. User s Guide

USB-0100TX USB Fast Ethernet Converter. User s Guide USB-0100TX USB Fast Ethernet Converter User s Guide FCC Warning This equipment has been tested and found to comply with the regulations for a Class B digital device, pursuant to Part 15 of the FCC Rules.

More information

Spectacle Light Kit Hookup Guide

Spectacle Light Kit Hookup Guide Page 1 of 23 Spectacle Light Kit Hookup Guide Introduction The Spectacle Light Kit makes it easy to illuminate your next project at the push of a button! Spectacle Light Kit KIT-14170 Suggested Reading

More information

About your Kobo ereader...6

About your Kobo ereader...6 User Guide Kobo Glo HD User Guide Table of Contents About your Kobo ereader...6 Anatomy of your Kobo ereader...6 Charging your Kobo ereader...8 Charging your Kobo ereader with a wall adapter...9 Turning

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

Your EdVenture into Robotics You re a Programmer

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

More information

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

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

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

Arduino Nixie Clock Modular Rev3

Arduino Nixie Clock Modular Rev3 Arduino Nixie Clock Modular Rev3 Operating Instructions Firmware V352 Supported Models: Modular Revision 3 NixieClockUserManualV352 About this document This is the user instruction manual for the Nixie

More information

EDL8 Race Dash Manual Engine Management Systems

EDL8 Race Dash Manual Engine Management Systems Engine Management Systems EDL8 Race Dash Manual Engine Management Systems Page 1 EDL8 Race Dash Page 2 EMS Computers Pty Ltd Unit 9 / 171 Power St Glendenning NSW, 2761 Australia Phone.: +612 9675 1414

More information

48x24. Options ORDER NUMBER OF TYPE PFL B

48x24. Options ORDER NUMBER OF TYPE PFL B Frequency metering (0.01 Hz 9999 Hz) with 2 setpoints Free scalable indication and setpoints from 0 up to +9999 Standard: min/max memory - option: analogue output Allow to be placed side by side in grid

More information

APPLICATIONS typical application: Lighting automation Other applications of the SO and SI line of controllers: HVAC automation Industrial automation OVERVIEW The S Series are microprocessor based I/O controllers

More information

Atlatl FPV Video Transmitter

Atlatl FPV Video Transmitter Atlatl FPV Video Transmitter User Manual & Installation Guide V1.0 Contents Overview... 1 Features Specifications Warranty Pinout Diagram and Channel Table... 2 Installation Guide... 3 Functions... 6 Channel-Change

More information

013-RD

013-RD Engineering Note Topic: Product Affected: JAZ-PX Lamp Module Jaz Date Issued: 08/27/2010 Description The Jaz PX lamp is a pulsed, short arc xenon lamp for UV-VIS applications such as absorbance, bioreflectance,

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

DOGM GRAPHIC SERIES 128x64 DOTS

DOGM GRAPHIC SERIES 128x64 DOTS DOGM GRAPHIC SERIES 128x64 DOTS 27.6.2007 available from 1 pc. off! flat: 5.6mm incl. LED TECHNICAL DATA EA DOGM128W-6 + EA LED55x46-A EA DOGM128B-6 + EA LED55x46-W EA DOGM128W-6 + EA LED55x46-W * HIGH-CONTRAST

More information

Spectacle Light Board Hookup Guide

Spectacle Light Board Hookup Guide Spectacle Light Board Hookup Guide - learn.sparkfun.com Page 1 of 19 Spectacle Light Board Hookup Guide Spectacle Light Board The Spectacle Light Board allows you to add some fairly complex lighting effects

More information

C2 +5V. (14) Vdd (+5 Vdc) (13) OSC1/A7 1.2K (12) 1.2K (11) 1.2K (10) U1 16F628 16F628A 1.2K (1) A2 1.2K (8) 1.2K (7) 1.2K. (Gnd) Vss (5) (6) 1.

C2 +5V. (14) Vdd (+5 Vdc) (13) OSC1/A7 1.2K (12) 1.2K (11) 1.2K (10) U1 16F628 16F628A 1.2K (1) A2 1.2K (8) 1.2K (7) 1.2K. (Gnd) Vss (5) (6) 1. CN1 Power Sw. SW1 CN2 C1 VR1 78L05 or LP2950ACZ- 5.0 +5V.1uf.1uf 9V Battery Fast Scan (Open) Slow Scan (Closed) Activity LED Reserved for LCD Serial Display R1 10K R2 10K SW2 CN3 LD1 R3 (16) (15) OS/A6

More information

INTRODUCTION GoNowTV

INTRODUCTION GoNowTV INTRODUCTION Congratulations on you purchasing the GoNowTV! You are now a member of the GoNowTV family! This unit is among the latest generation of media players on the market. This device enhances your

More information

Troubleshooting. 1. Symptom: Status indicator (Red LED) on SSR is constant on. 2. Symptom: Output indicator (Yellow LED) on SSR is flashing.

Troubleshooting. 1. Symptom: Status indicator (Red LED) on SSR is constant on. 2. Symptom: Output indicator (Yellow LED) on SSR is flashing. Product Data Electrical Data SST (Transmitter) SSR (Receiver) Supply voltage 18 30 V dc Max. Voltage ripple 15 % (within supply range) Current consumption 100 ma (RMS) 75 ma Digital - 100 ma Max. outputs

More information

DOGM GRAPHIC SERIES 132x32 DOTS

DOGM GRAPHIC SERIES 132x32 DOTS DOGM GRAPHIC SERIES 132x32 DOTS 6.2009 flexible display content! EA DOGM132B-5 + EA LED55x31-W TECHNICAL DATA EA DOGM132W-5 + EA LED55x31-A EA DOGM132W-6 + EA LED55x31-W * HIGH-CONTRAST LCD SUPERTWIST

More information

Mendeley Basics. Get Mendeley. Get Articles and Documents into Mendeley. Import Citations from a Website

Mendeley Basics. Get Mendeley. Get Articles and Documents into Mendeley. Import Citations from a Website Mendeley Basics Get Mendeley 1. Go to www.mendeley.com 2. Create an online account and download the software. Use your MIT email address to get extra storage with our institutional account. 3. Open Mendeley

More information

Reference Guide 2015 ZOOM CORPORATION. Copying or reprinting this manual in part or in whole without permission is prohibited.

Reference Guide 2015 ZOOM CORPORATION. Copying or reprinting this manual in part or in whole without permission is prohibited. Reference Guide 2015 ZOOM CORPORATION Copying or reprinting this manual in part or in whole without permission is prohibited. Introduction is a mixer application designed specifically for the. Using a

More information

Package Contents. LED Protocols Supported. Safety Information. Physical Dimensions

Package Contents. LED Protocols Supported. Safety Information. Physical Dimensions Pixel Triton Table of Contents Package Contents... 1 Safety Information... 1 LED Protocols Supported... 1 Physical Dimensions... 1 Software Features... 2 LED Status... 2 Power... 2 Activity LED... 2 Link

More information

About your Kobo ereader...6

About your Kobo ereader...6 User Guide Kobo Touch 2.0 User Guide Table of Contents About your Kobo ereader...6 Anatomy of your Kobo ereader...6 Charging your Kobo ereader...8 Charging your Kobo ereader with a wall adapter...9 Turning

More information

Data Acquisition Networks. Installing and Configuring the DM01 Hardware

Data Acquisition Networks. Installing and Configuring the DM01 Hardware Data Acquisition Networks Installing and Configuring the DM Hardware What is the DM? D.A.N developed the DM-2 to capture 6 analogue measurements and pulse count in the field. The Average, Maximum and Minimum

More information

NOTE: We take no responsibility if anything goes wrong or breaks when you try to do this!

NOTE: We take no responsibility if anything goes wrong or breaks when you try to do this! How to install a reset switch in the xbox game controller Tutorial written by: Xboxmod08 Team Of Sweden Version 1.2.1 (Corrected a few things from the SCART section) Version: 1.2 (Replaced some pictures

More information

Digital (5hz to 500 Khz) Frequency-Meter

Digital (5hz to 500 Khz) Frequency-Meter Digital (5hz to 500 Khz) Frequency-Meter Posted on April 4, 2008, by Ibrahim KAMAL, in Sensor & Measurement, tagged Based on the famous AT89C52 microcontroller, this 500 Khz frequency-meter will be enough

More information

USER MANUAL FOR THE ANALOGIC GAUGE FIRMWARE VERSION 1.1

USER MANUAL FOR THE ANALOGIC GAUGE FIRMWARE VERSION 1.1 by USER MANUAL FOR THE ANALOGIC GAUGE FIRMWARE VERSION 1.1 www.aeroforcetech.com Made in the USA! WARNING Vehicle operator should focus primary attention to the road while using the Interceptor. The information

More information

New Year Countdown Clock with Circuit Playground Express

New Year Countdown Clock with Circuit Playground Express New Year Countdown Clock with Circuit Playground Express Created by John Park Last updated on 2018-08-22 04:05:02 PM UTC Guide Contents Guide Contents Overview Program It With MakeCode Clock and Noisemaker

More information

VIDEO GRABBER. DisplayPort. User Manual

VIDEO GRABBER. DisplayPort. User Manual VIDEO GRABBER DisplayPort User Manual Version Date Description Author 1.0 2016.03.02 New document MM 1.1 2016.11.02 Revised to match 1.5 device firmware version MM 1.2 2019.11.28 Drawings changes MM 2

More information

COPYRIGHT NOVEMBER-1998

COPYRIGHT NOVEMBER-1998 Application Notes: Interfacing AG-132 GPS with G-858 Magnetometer 25430-AM Rev.A Operation Manual COPYRIGHT NOVEMBER-1998 GEOMETRICS, INC. 2190 Fortune Drive, San Jose, Ca 95131 USA Phone: (408) 954-0522

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

Wall Ball Setup / Calibration

Wall Ball Setup / Calibration Wall Ball Setup / Calibration Wall projection game 1 Table of contents Wall Projection Ceiling Mounted Calibration Select sensor and display Masking the projection area Adjusting the sliders What s happening?

More information

Hygrotest 600. Instruction manual WH / WHT -20/+70 C DH / DHT -20/+70 C / DHT -20/+120 C PHT -20/+70 C / PHT -20/+120 C

Hygrotest 600. Instruction manual WH / WHT -20/+70 C DH / DHT -20/+70 C / DHT -20/+120 C PHT -20/+70 C / PHT -20/+120 C Hygrotest 600 Instruction manual en WH / WHT -20/+70 C DH / DHT -20/+70 C / DHT -20/+120 C PHT -20/+70 C / PHT -20/+120 C Contents Introduction...2 Handling instructions...3 Dimensions of measuring instrument...3

More information

Night Hawk Firing System User s Manual

Night Hawk Firing System User s Manual Firmware Version 2.53 Page 1 of 37 Table of Contents Features of the Night Hawk Panel... 4 A reminder on the safe use of Electronic Pyrotechnic Firing Systems... 5 Night Hawk Firing Panel Controls... 6

More information

Harmony Ultimate. User Guide

Harmony Ultimate. User Guide Harmony Ultimate User Guide Harmony Ultimate User Guide Table of Contents About this Manual... 6 Terms used in this manual... 6 At a Glance... 6 Features... 6 Know your Harmony Ultimate... 6 Features of

More information

DT1-PCM21. for Porsche PCM2.1 navigation systems

DT1-PCM21. for Porsche PCM2.1 navigation systems Product features dvblogic DVB-T Tuner for Porsche PCM2.1 navigation systems Full plug and play vehicle-specific dual DVB-T Tuner + USB-AV-Player DVB-T-Tuner MPEG4 compatible (HD) USB-AV-Player for USB-media

More information

National Wire and Cable and National Cable Molding Headquarters Los Angeles California

National Wire and Cable and National Cable Molding Headquarters Los Angeles California National Wire and Cable and National Cable Molding Headquarters Los Angeles California CAPABILITIES Medical Business Machines Communications Equipment Computer Equipment Audio Systems General Instrumentation

More information

Reason Overview3. Reason Overview

Reason Overview3. Reason Overview Reason Overview3 In this chapter we ll take a quick look around the Reason interface and get an overview of what working in Reason will be like. If Reason is your first music studio, chances are the interface

More information

DOGM GRAPHIC SERIES. 128x64, 3.3V available in low quantity! flat: 5.6mm with LED b./l. mounted TECHNICAL DATA ORDERING CODE ACCESSORIES

DOGM GRAPHIC SERIES. 128x64, 3.3V available in low quantity! flat: 5.6mm with LED b./l. mounted TECHNICAL DATA ORDERING CODE ACCESSORIES Issue 10.2014 DOGM GRAPHIC SERIES 128x64, 3.3V available in low quantity! flat: 5.6mm with LED b./l. mounted EA DOGM128W-6 + EA LED55x46-A EA DOGM128B-6 + EA LED55x46-W EA DOGM128W-6 + EA LED55x46-W TECHNICAL

More information

DATA SHEET Panorama Rudder Indicator, TRI-2

DATA SHEET Panorama Rudder Indicator, TRI-2 DATA SHEET Panorama Rudder Indicator, TRI-2 Class 1 accuracy on CAN version Readable from up to 5 metres Single and dual CAN or analogue interface LED illumination DEIF A/S Frisenborgvej 33 DK-7800 Skive

More information