DUAL PUSh BUTTON PLUG[v1.1]

Size: px
Start display at page:

Download "DUAL PUSh BUTTON PLUG[v1.1]"

Transcription

1 Product Manual DUAL PUSh BUTTON PLUG[v1.1] Updated on: 27th November 2017

2 Index About Elint Labz 2 Introduction 3 Specification 3 Variants 3 Supported cables: 4 Details 4 How to interface? 6 Example Codes 7 Code 1: Arduino 8 Elint Labz ( ) Page 1 of 7

3 Product Manual: Dual Push button Plug About Elint Labz Elint Labz (usually abbreviated as EL) is an electronics design & development tools designer & manufacturer with headquarters in Bengaluru, India. We design, develop & manufacture development boards based on micro-controller & microprocessors, breakout boards for various sensors & actuators. Our domain & expertise is in the area of Electronics & Embedded Systems. Elint Labz was founded in 2014 however the actual operations started from 2015 when it became a full time subsidiary of Hogst Innovative Solutions Pvt. Ltd. & is presently a part of Ajaramara Group a conglomerate of various domains of industries, registered in India as Ajaramara Dynamics Pvt. Ltd. under Companies Act of As in the name company (Elint Labz) Electronic intelligence ( ELINT ) is intelligence gathered by the use of electronic sensors, Laboratories (LABZ) are facilities that provides controlled conditions in which scientific or technological research, experiments and measurement may be performed. EL is an enterprise built to develop smart & intelligent electronics & EL is committed to help achieve electronics literacy in India. No matter the vision or skill level, our products and resources are designed to make electronics & programmable development hardware more accessible. Elint Labz as a platform helps developers & young engineers from prototyping to product development. We provide open source hardware solutions and small quantity manufacturing services using a design from manufacturing framework. We are a strong promoter of the maker movement in India, most of the manufacturing happens with support of our various Indian partners & couple of our collaboration partners who have manufacturing & sourcing facilities in Germany, Korea & Shenzhen. To know more visit the about us section on our website: Elint Labz (HQ) # st main Arekere MICO layout 2 nd stage Bengaluru KA [Marked on Google Maps] hello@elintlabz.in Elint Labz ( ) Page 2 of 7

4 Introduction Push button is a kind of switch which causes a temporary change in the state of an electrical circuit only when the button is pressed. Elint Labz has built a plug to utilize this unique hardware.this plug can be mounted anywhere using screws. In The below picture you can see dual push button plug. Specification Operating voltage: 5V Size: 22mm x 32mm Variants Push Button Type Push Button Head Version Port Type SKU SMALL SMALL V1 EL-DPBS-DB-101 EL-DPBS-DB-102 EL-DPBS-DB-201 EL-DPBS-DB-202 Elint Labz ( ) Page 3 of 7

5 EL-DPBS-DR-201 EL-DPBS-DR-202 EL-DPBS-UB-201 EL-DPBS-UB-202 EL-DPBS-UR-201 EL-DPBS-UR-202 EL-DPBSDRB-201 EL-DPBSDRB-202 EL-DPBSURB-201 EL-DPBSURB-202 MEDIUM EL-DPBM-DB-201 EL-DPBM-DB-202 EL-DPBM-UB-201 EL-DPBM-UB-202 LONG EL-DPBL-DB-201 EL-DPBL-DB-202 EL-DPBL-UB-201 EL-DPBL-UB-202 Supported cables: 4-4 A Details Dual push button plug has 2 push buttons with pull down resistor circuit and they act as a digital input device to the interfacing system. It has an interfacing port with four pins named as G, V,1, 2. Here G represents Ground, V represents VCC and 1,2 represents Data pin at which digital input signal from the plug can be obtained. Elint Labz ( ) Page 4 of 7

6 When the push button is in pressed state then D pin gives the HIGH signal and will be LOW at released state.it also has a white strip provided for indication purpose at the back of the PCB and reduced dimensions. State of push buttons Signal at D pin State of 1st button State of 2nd button Signal at D1 Signal at D2 Released Released LOW LOW Released Pressed LOW HIGH Pressed Released HIGH LOW Pressed Pressed HIGH HIGH Elint Labz ( ) Page 5 of 7

7 How to interface? Use 4-4 A interfacing cable to Connect 4 pin end of cable to Pluguino and other end of 4-4 A cable to push button, Make sure that black wire goes to g pin on both sides as shown in below pictures. Elint Labz ( ) Page 6 of 7

8 Example Codes Objective - Turn ON the LED as long as the button is pressed & turn OFF when it is released Elint Labz ( ) Page 7 of 7

9 Code 1: Arduino #define Button_Pin1 12 // push button plug 1 is connected to 12 th pin #define Button_Pin2 11 // push button plug 2 is connected to 11 th pin #define Led_Pin1 9 // LED plug 1 is connected to 9th pin #define Led_Pin2 10 // LED plug 2 is connected to 10th pin boolean Button_State1 = LOW; // variable to store pushbutton status boolean Button_State2 = LOW; void setup () {pinmode(led_pin1, OUTPUT); // Make 9 th pin as OUTPUT pin pinmode(led_pin2, OUTPUT); // Make 10th pin as OUTPUT pin pinmode(button_pin1, INPUT); // Make 12th pin as INPUT pin pinmode(button_pin2, INPUT); // Make 11th pin as INPUT pin void loop () {Button_State1 = digitalread(button_pin1); // read the state of the pushbutton 1 and store it Button_State2 = digitalread(button_pin2); // read the state of the pushbutton 2 and store it if ( Button_State1 == HIGH) //Compare button state1 with HIGH { digitalwrite(led_pin1, HIGH); else { digitalwrite(led_pin1, LOW); if ( Button_State2 == HIGH) { digitalwrite(led_pin2, HIGH); else { digitalwrite(led_pin2, LOW); then make LED 2 LOW // If button state1 is HIGH then make LED 1 HIGH // If button state1 is LOW then make LED 1 LOW //Compare button state2 with HIGH // If button state2 is HIGH then make LED 2 HIGH // If button state2 is LOW Output video: Elint Labz ( ) Page 8 of 7

10 Older Versions Dual Push Button Plug (v 1.0) Elint Labz ( ) Page 9 of 7

Product Manual. 4 Push-button Plug (A)

Product Manual. 4 Push-button Plug (A) Product Manual 4 Push-button Plug (A) Updated on: 27th November 2017 Index About Elint Labz 2 Introduction 3 Specification 3 Operating voltage: 5V 3 Variants 3 Supported cables: 4 Details 4 How to interface?

More information

Product Manual. 6 Push-button Plug (A)

Product Manual. 6 Push-button Plug (A) Product Manual 6 Push-button Plug (A) Updated on: 27th November 2017 Index About Elint Labz 2 Introduction 3 Specification 3 Variants 3 Supported cables: 4 Details 4 How to interface? 5 Example Codes 7

More information

Product Manual. Relay Plug

Product Manual. Relay Plug Product Manual Relay Plug Updated on 24 June 2017 Index Index 1 Introduction 2 Specification 3 Operating voltage: 5V 3 Variants 4 Supported cables: 4 Details 4 How to interface? 5 Example Codes 9 Arduino

More information

IME-100 ECE. Lab 3. Electrical and Computer Engineering Department Kettering University. G. Tewolde, IME100-ECE,

IME-100 ECE. Lab 3. Electrical and Computer Engineering Department Kettering University. G. Tewolde, IME100-ECE, IME-100 ECE Lab 3 Electrical and Computer Engineering Department Kettering University 3-1 1. Laboratory Computers Getting Started i. Log-in with User Name: Kettering Student (no password required) ii.

More information

GET YOUR DRAGONBOARD UP TO DATE

GET YOUR DRAGONBOARD UP TO DATE SAFESTOP (Instructable) A step-by-step guide on how to make this project. THINGS YOU WILL NEED DragonBoard-410c Mezzanine Shield 4 LED s 4 push bottons 4 1 Kohm resistances 4 220 ohm resistances Jumpers

More information

IME-100 Interdisciplinary Design and Manufacturing

IME-100 Interdisciplinary Design and Manufacturing IME-100 Interdisciplinary Design and Manufacturing Introduction Arduino and Programming Topics: 1. Introduction to Microprocessors/Microcontrollers 2. Introduction to Arduino 3. Arduino Programming Basics

More information

Lab 02 Arduino 數位感測訊號處理, SPI I2C 介面實驗. More Arduino Digital Signal Process

Lab 02 Arduino 數位感測訊號處理, SPI I2C 介面實驗. More Arduino Digital Signal Process Lab 02 Arduino 數位感測訊號處理, SPI I2C 介面實驗 More Arduino Digital Signal Process Blink Without Delay Sometimes you need to do two things at once. For example you might want to blink an LED (or some other timesensitive

More information

AT42QT1010 Capacitive Touch Breakout Hookup Guide

AT42QT1010 Capacitive Touch Breakout Hookup Guide Page 1 of 7 AT42QT1010 Capacitive Touch Breakout Hookup Guide Introduction If you need to add user input without using a button, then a capacitive touch interface might be the answer. The AT42QT1010 Capacitive

More information

Thumb Joystick Retail. Tools and parts you'll need. Things you'll want to know. How does it work? Skill Level: Beginner. by MikeGrusin March 22, 2011

Thumb Joystick Retail. Tools and parts you'll need. Things you'll want to know. How does it work? Skill Level: Beginner. by MikeGrusin March 22, 2011 Thumb Joystick Retail Skill Level: Beginner by MikeGrusin March 22, 2011 Thank you for purchasing our Thumb Joystick! Whether you're blasting aliens or driving a robot, you'll find it a very useful addition

More information

Arduino Prof. Dr. Magdy M. Abdelhameed

Arduino Prof. Dr. Magdy M. Abdelhameed Course Code: MDP 454, Course Name:, Second Semester 2014 Arduino What is Arduino? Microcontroller Platform Okay but what s a Microcontroller? Tiny, self-contained computers in an IC Often contain peripherals

More information

AT42QT101X Capacitive Touch Breakout Hookup Guide

AT42QT101X Capacitive Touch Breakout Hookup Guide Page 1 of 10 AT42QT101X Capacitive Touch Breakout Hookup Guide Introduction If you need to add user input without using a button, then a capacitive touch interface might be the answer. The AT42QT1010 and

More information

IR Breakbeam Sensors. Created by lady ada. Last updated on :32:59 PM UTC

IR Breakbeam Sensors. Created by lady ada. Last updated on :32:59 PM UTC IR Breakbeam Sensors Created by lady ada Last updated on 2017-12-08 10:32:59 PM UTC Guide Contents Guide Contents Overview Arduino CircuitPython 2 3 5 8 Adafruit Industries https://learn.adafruit.com/ir-breakbeam-sensors

More information

Project 2: Sensor Light

Project 2: Sensor Light Project 2: Sensor Light In this session, we will create a sensor light. The behavior we want to implement is as follows: - When the sensor detects human motion, the LED light will be on - When no human

More information

The speaker connection is circled in yellow, the button connection in red and the temperature sensor in blue

The speaker connection is circled in yellow, the button connection in red and the temperature sensor in blue Connections While the board can be connected to a number of different Arduino versions I chose to use the Pro Mini as I wanted the completed unit to be fairly small. The Mini and the MP3 board run on 5

More information

TANGIBLE MEDIA & PHYSICAL COMPUTING MORE ARDUINO

TANGIBLE MEDIA & PHYSICAL COMPUTING MORE ARDUINO TANGIBLE MEDIA & PHYSICAL COMPUTING MORE ARDUINO AGENDA RECAP ALGORITHMIC APPROACHES TIMERS RECAP: LAST WEEK WE DID: ARDUINO IDE INTRO MAKE SURE BOARD AND USB PORT SELECTED UPLOAD PROCESS COVERED DATATYPES

More information

EXPERIMENT2. V3 Robot Navigates Autonomously with Feelers and Infrared Sensors

EXPERIMENT2. V3 Robot Navigates Autonomously with Feelers and Infrared Sensors EXPERIMENT2 V3 Robot Navigates Autonomously with Feelers and Infrared Sensors Purpose: Install and program the feeler sensors (switches) plus the adjustable range infrared sensors to navigate autonomously

More information

Arduino Programming Part 4: Flow Control

Arduino Programming Part 4: Flow Control Arduino Programming Part 4: Flow Control EAS 199B, Winter 2010 Gerald Recktenwald Portland State University gerry@me.pdx.edu Goal Make choices based on conditions in the environment Logical expressions:

More information

IME-100 ECE. Lab 4. Electrical and Computer Engineering Department Kettering University. G. Tewolde, IME100-ECE,

IME-100 ECE. Lab 4. Electrical and Computer Engineering Department Kettering University. G. Tewolde, IME100-ECE, IME-100 ECE Lab 4 Electrical and Computer Engineering Department Kettering University 4-1 1. Laboratory Computers Getting Started i. Log-in with User Name: Kettering Student (no password required) ii.

More information

Arduino Workshop. Overview. What is an Arduino? Why Arduino? Setting up your Arduino Environment. Get an Arduino based board and usb cable

Arduino Workshop. Overview. What is an Arduino? Why Arduino? Setting up your Arduino Environment. Get an Arduino based board and usb cable Arduino Workshop Overview Arduino, The open source Microcontroller for easy prototyping and development What is an Arduino? Arduino is a tool for making computers that can sense and control more of the

More information

University of Hull Department of Computer Science C4DI Interfacing with Arduinos

University of Hull Department of Computer Science C4DI Interfacing with Arduinos Introduction Welcome to our Arduino hardware sessions. University of Hull Department of Computer Science C4DI Interfacing with Arduinos Vsn. 1.0 Rob Miles 2014 Please follow the instructions carefully.

More information

PP-BOB2-V1.0 PARALLEL PORT BREAKOUT BOARD

PP-BOB2-V1.0 PARALLEL PORT BREAKOUT BOARD PP-BOB2-v1 PARALLEL PORT BREAKOUT BOARD Document: Operation Manual Document #: T17 Document Rev: 2.0 Product: PP-BOB2-v1.0 Product Rev: 1.0 Created: March, 2013 Updated: Dec, 2014 THIS MANUAL CONTAINS

More information

PP-BOB2-V2.0 PARALLEL PORT BREAKOUT BOARD

PP-BOB2-V2.0 PARALLEL PORT BREAKOUT BOARD PP-BOB2-V2 PARALLEL PORT BREAKOUT BOARD Document: Operation Manual Document #: T18 Document Rev: 1.0 Product: PP-BOB2-V2.0 Product Rev: 1.0 Created: October, 2015 THIS MANUAL CONTAINS INFORMATION FOR INSTALLING

More information

Project 24 LCD Temperature Display

Project 24 LCD Temperature Display Project 24 LCD Temperature Display This project is a simple demonstration of using an LCD to present useful information to the user in this case, the temperature from an analog temperature sensor. You

More information

Create your own wireless motion sensor with

Create your own wireless motion sensor with Create your own wireless motion sensor with Arduino If you have a friend that has an alarm system in his or her home, I am sure you ve all seen these white motion sensors that are usually fixed above doors

More information

Micro USB Lamp Kit ESSENTIAL INFORMATION. Version 2.0 DESIGN A STYLISH LAMP WITH THIS

Micro USB Lamp Kit ESSENTIAL INFORMATION. Version 2.0 DESIGN A STYLISH LAMP WITH THIS ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS DESIGN A STYLISH LAMP WITH THIS Micro USB Lamp Kit Version 2.0 Build Instructions Before

More information

1/Build a Mintronics: MintDuino

1/Build a Mintronics: MintDuino 1/Build a Mintronics: The is perfect for anyone interested in learning (or teaching) the fundamentals of how micro controllers work. It will have you building your own micro controller from scratch on

More information

Arduino - DigitalReadSerial

Arduino - DigitalReadSerial arduino.cc Arduino - DigitalReadSerial 5-6 minutes Digital Read Serial This example shows you how to monitor the state of a switch by establishing serial communication between your Arduino or Genuino and

More information

More Arduino Programming

More Arduino Programming Introductory Medical Device Prototyping Arduino Part 2, http://saliterman.umn.edu/ Department of Biomedical Engineering, University of Minnesota More Arduino Programming Digital I/O (Read/Write) Analog

More information

Arduino Part 2. Introductory Medical Device Prototyping

Arduino Part 2. Introductory Medical Device Prototyping Introductory Medical Device Prototyping Arduino Part 2, http://saliterman.umn.edu/ Department of Biomedical Engineering, University of Minnesota More Arduino Programming Digital I/O (Read/Write) Analog

More information

Smart Objects. SAPIENZA Università di Roma, M.Sc. in Product Design Fabio Patrizi

Smart Objects. SAPIENZA Università di Roma, M.Sc. in Product Design Fabio Patrizi Smart Objects SAPIENZA Università di Roma, M.Sc. in Product Design Fabio Patrizi 1 What is a Smart Object? Essentially, an object that: Senses Thinks Acts 2 Example 1 https://www.youtube.com/watch?v=6bncjd8eke0

More information

Connecting Arduino to Processing

Connecting Arduino to Processing Connecting Arduino to Processing Introduction to Processing So, you ve blinked some LEDs with Arduino, and maybe you ve even drawn some pretty pictures with Processing - what s next? At this point you

More information

Lesson 8: Digital Input, If Else

Lesson 8: Digital Input, If Else Lesson 8 Lesson 8: Digital Input, If Else Digital Input, If Else The Big Idea: This lesson adds the ability of an Arduino sketch to respond to its environment, taking different actions for different situations.

More information

PDF of this portion of workshop notes:

PDF of this portion of workshop notes: PDF of this portion of workshop notes: http://goo.gl/jfpeym Teaching Engineering Design with Student-Owned Digital and Analog Lab Equipment John B. Schneider Washington State University June 15, 2015 Overview

More information

Monitor your home remotely using the Arduino

Monitor your home remotely using the Arduino Monitor your home remotely using the Arduino WiFi Shield How to monitor some data in your home using precisely this Arduino WiFi shield. Along with the Arduino Uno board, the final system will form an

More information

Engineering Note: EN0047 Commissioning a Hydro-Probe with a Command Alkon EZCal Station

Engineering Note: EN0047 Commissioning a Hydro-Probe with a Command Alkon EZCal Station Engineering Note: EN0047 Commissioning a Hydro-Probe with a Command Alkon EZCal Station Summary: Products affected: Commissioning a Hydro-Probe with a Command Alkon EZCal Manual Station Hydro-Probe Models

More information

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

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

More information

LAMPIRAN I (LISTING PROGRAM)

LAMPIRAN I (LISTING PROGRAM) LAMPIRAN I (LISTING PROGRAM) #include LiquidCrystal lcd(8, 9, 4, 5, 6, 7); const int numreadings = 10; int readings[numreadings]; // the readings from the analog input int readindex =

More information

Docking station. Technical Documentation

Docking station. Technical Documentation Docking station Technical Documentation Version 1.1 Release date: 01.09.2015 Table of contents 1 Introduction...3 2 Layout and dimensions...4 3 What s included in the box...4 4 Connecting devices...5 4.1

More information

Light Sensor. Overview. Features

Light Sensor. Overview. Features 1 Light Sensor Overview What is an electronic brick? An electronic brick is an electronic module which can be assembled like Lego bricks simply by plugging in and pulling out. Compared to traditional universal

More information

Building your own special-purpose embedded system gadget.

Building your own special-purpose embedded system gadget. Bare-duino Building your own special-purpose embedded system gadget. Saves a little money. You can configure the hardware exactly the way that you want. Plus, it s fun! bare-duino 1 Arduino Uno reset I/O

More information

Look closely at this schematic diagram, in thid class you will be asked to construct this circuit WITHOUT using the textbook!

Look closely at this schematic diagram, in thid class you will be asked to construct this circuit WITHOUT using the textbook! LEARNING TO READ SCHEMATIC DIAGRAMS So far you have been constructing the circuits by following the detailed pictures in the textbook. For example, you were following the pictures to connect the LED between

More information

Safety controller unit B1 /

Safety controller unit B1 / Version 1.0 Safety controller unit 470111B1 / For 2 to 16 safety sensors 470115B1 PL d in acc. with EN ISO 13849-1 / SIL CL 2 in acc. with EN IEC 62061 Two safety outputs and external contactor monitoring

More information

TANGIBLE MEDIA & PHYSICAL COMPUTING INTRODUCTION TO ARDUINO

TANGIBLE MEDIA & PHYSICAL COMPUTING INTRODUCTION TO ARDUINO TANGIBLE MEDIA & PHYSICAL COMPUTING INTRODUCTION TO ARDUINO AGENDA ARDUINO HARDWARE THE IDE & SETUP BASIC PROGRAMMING CONCEPTS DEBUGGING & HELLO WORLD INPUTS AND OUTPUTS DEMOS ARDUINO HISTORY IN 2003 HERNANDO

More information

Light & Sound Control Module

Light & Sound Control Module Light & Sound Control Module Operation and Installation Manual G-Scale Graphics 5860 Crooked Stick Dr. Windsor, CO 80550 970-581-3567 GScaleGraphics@comcast.net www.gscalegraphics.net Revision 55: C: Updated

More information

Phi-panel backpack assembly and keypad options Dr. John Liu 12/16/2012

Phi-panel backpack assembly and keypad options Dr. John Liu 12/16/2012 Phi-panel backpack assembly and keypad options Dr. John Liu 12/16/2012 1. Introduction:... 3 Currently available:... 3 2. Backpack assembly... 4 3. Connecting to a keypad... 6 4. Rotary encoder keypads...

More information

A new eneration of. professional control E / Plug & Work. An excellent control to mobilize your visions ON/OFF PWM

A new eneration of. professional control E / Plug & Work. An excellent control to mobilize your visions ON/OFF PWM A new eneration of professional control ON/OFF PWM Plug & Work An excellent control to mobilize your visions The new joystick controller unit G-pro combines the flexible functionality of a remote control

More information

User s Manual of Board ET-ESP32 WROVER MODULE V1 ET-ESP32 WROVER MODULE V1

User s Manual of Board ET-ESP32 WROVER MODULE V1 ET-ESP32 WROVER MODULE V1 ET-ESP32 WROVER MODULE V1 ET-ESP32 WROVER MODULE V1 is Module MCU ESP32 of Espressif Systems that uses the Module model ESP32 WROVER-I to be MCU on board. Memory o 4MB SPI Flash(32Mbits SPI flash)/ 8MB

More information

The DIP switches to select which wheel will be simulated by the JimStim are shown below. DIP. DIP Switches Wheel Mode 2nd Tach Signal

The DIP switches to select which wheel will be simulated by the JimStim are shown below. DIP. DIP Switches Wheel Mode 2nd Tach Signal JimStim Setup 1-9 JimStim v1.3 Setup Wheel Mode Selection The DIP switches to select which wheel will be simulated by the JimStim are shown below. DIP switch position 1 is not used at this time so should

More information

HUB-ee BMD-S Arduino Proto Shield V1.1

HUB-ee BMD-S Arduino Proto Shield V1.1 HUB-ee BMD-S Arduino Proto Shield V1.1 User guide and assembly instructions Document Version 0.5 Introduction & Board Guide 2 Schematic 3 Quick User Guide 4 Assembly Guide 6 Kit Contents 7 1) Diodes and

More information

Connecting a Cisco Input Module

Connecting a Cisco Input Module CHAPTER 4 Overview The optional Cisco Input Module (Figure 4-1) is attached to a Cisco Physical Access Gateway or Cisco Reader Module to provide additional connections for up to ten input devices. Each

More information

HOW TO INSTALL YAKINDU AND TRICKS ABOUT IT

HOW TO INSTALL YAKINDU AND TRICKS ABOUT IT HOW TO INSTALL YAKINDU AND TRICKS ABOUT IT 1-Installation First you need to download the YAKINDU Statechart Tools. Unzip the archive to an arbitrary directory and start SCT. Choose "Install New Software..."

More information

FPA-1 Facility Port Adapter Installation Guide

FPA-1 Facility Port Adapter Installation Guide FPA- Facility Port Adapter Installation Guide FPA- Installation Guide v. Contents Introduction... 3 Mounting - mechanical... 4 Connections and Controls... 5 Block Diagram... Installation connections...

More information

Sensors and Motor Control Lab

Sensors and Motor Control Lab Sensors and Motor Control Lab Individual lab report #1 October 16, 2015 Menghan Zhang TeamA Amit Agarwal Harry Golash Yihao Qian Zihao Zhang Individual progress Challenges Teamwork a) Used potentiometer

More information

isppac-powr1208 Evaluation Board PAC-POWR1208-EV

isppac-powr1208 Evaluation Board PAC-POWR1208-EV January 2005 Introduction Application Note AN6040 The Lattice Semiconductor isppac -POWR1208 In-System-Programmable Analog Circuit allows designers to implement both the analog and digital functions of

More information

!There are two kit models. The ZCTK-120 is designed to operate with.!the pulse output is isolated from the mains line voltage. A pull-up resistor

!There are two kit models. The ZCTK-120 is designed to operate with.!the pulse output is isolated from the mains line voltage. A pull-up resistor CAUTION: Please make sure you have or have access to the skills necessary to assemble and use this product. Always secure the case with the included screws before applying electrical power to the power

More information

High Power (15W + 15W) Stereo Amplifier

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

More information

IEEE SoutheastCon Hardware Challenge

IEEE SoutheastCon Hardware Challenge IEEE SoutheastCon Hardware Challenge Cameron McSweeney, Kendall Knapp Brian Roskuszka, Daniel Hofstetter May 2, 207 Advisors: Dr. Jing Wang, Dr. Yufeng Lu, Dr. In Soo Ahn 2 Task 3 - Bring Down the Shields

More information

UCBB dual port breakout board user's manual

UCBB dual port breakout board user's manual UCBB dual port breakout board user's manual 1/14 Contents 1 Features 2 Dimensions 3 Connectors 3.1 Screw terminals 3.2 IDC ports 3.3 Powering 3.4 Outputs 3.5 Inputs 4 LED indicators 5 Example connections

More information

MAKEVMA301 DS1302 REAL-TIME CLOCK MODULE USER MANUAL

MAKEVMA301 DS1302 REAL-TIME CLOCK MODULE USER MANUAL DS1302 REAL-TIME CLOCK MODULE 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 package

More information

Proto-DB (#28310): Prototyping Daughterboard

Proto-DB (#28310): Prototyping Daughterboard Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Final Report. Autonomous Robot: Chopper John Michael Mariano December 9, 2014

Final Report. Autonomous Robot: Chopper John Michael Mariano December 9, 2014 Final Report Autonomous Robot: Chopper John Michael Mariano December 9, 2014 EEL 4665: Intelligent Machines Design Laboratory Instructors: Dr. A. Antonio Arroyo, Dr. Eric M. Schwartz TA: Nicholas Cox,

More information

Wiring Inside the card reader you will see a circuit board. The connections are as follows:

Wiring Inside the card reader you will see a circuit board. The connections are as follows: Power Adaptor (12VDC, Max. Current: 1A) If you purchased the Cardlock Series power supply cut the head of the adaptor and strip the insulation. If your locking mechanism, electric strike or magnetic lock

More information

University of Portland EE 271 Electrical Circuits Laboratory. Experiment: Arduino

University of Portland EE 271 Electrical Circuits Laboratory. Experiment: Arduino University of Portland EE 271 Electrical Circuits Laboratory Experiment: Arduino I. Objective The objective of this experiment is to learn how to use the Arduino microcontroller to monitor switches and

More information

MedeaWiz 8X78. Input / Output Expander. FW version 1.0. PCB version 1.0. Manual version Note that this manual may change periodically

MedeaWiz 8X78. Input / Output Expander. FW version 1.0. PCB version 1.0. Manual version Note that this manual may change periodically MedeaWiz 8X78 Input / Output Expander FW version 10 PCB version 10 Manual version 110 Note that this manual may change periodically Please go to wwwmedeawizcom for the latest version 0 P a g e Table of

More information

PoE/FPR Kit for Auto-Sync Time Clock. The Auto-Sync Time Clock is a validated time system with a Web interface and auto discovery.

PoE/FPR Kit for Auto-Sync Time Clock. The Auto-Sync Time Clock is a validated time system with a Web interface and auto discovery. ASTCPOEK PoE/FPR Kit for Auto-Sync Time Clock The Auto-Sync Time Clock is a validated time system with a Web interface and auto discovery. The ASTCPOEK Kit provides Power over Ethernet with Full Power

More information

Installation/assembly manual for DCC/Power shield

Installation/assembly manual for DCC/Power shield Installation/assembly manual for DCC/Power shield The DCC circuit consists of the following components: R1/R6 R2/R3 R4/R5 D1 C2 2 kω resistor ½ Watt (colour code Red/Black/Black/Brown/Brown) 10 kω resistor

More information

DUAL SWITCH CONTROLLER

DUAL SWITCH CONTROLLER DUAL SWITCH CONTROLLER INSTRUCTION MANUAL IMPORTANT: If the Dual Switch Controller is to be used with a Dielectric 50000 Series Switch, control cable P/N 1100007364 or 11000007365 must be used. See Section

More information

Pre-Laboratory #Boolean Expressions ECE 332

Pre-Laboratory #Boolean Expressions ECE 332 Name: G Number: Pre-Laboratory #Boolean Expressions ECE 332 1 Introduction This pre-lab is divided into two parts. In part one you will build a circuit for providing inputs to your CPLD board on your breadboard.

More information

AutoLase Automatic Laser Optimization ELECOMP Capstone Design Project

AutoLase Automatic Laser Optimization ELECOMP Capstone Design Project Sponsoring Company: AutoLase Automatic Laser Optimization ELECOMP Capstone Design Project 2017-2018 Iradion Laser, Inc. 51 Industrial Drive, North Smithfield, RI, 02896 Phone: (401) 762-5100 www.iradionlaser.com

More information

Arduino Uno Microcontroller Overview

Arduino Uno Microcontroller Overview Innovation Fellows Program Arduino Uno Microcontroller Overview, http://saliterman.umn.edu/ Department of Biomedical Engineering, University of Minnesota Arduino Uno Power & Interface Reset Button USB

More information

Laboratory 1 Introduction to the Arduino boards

Laboratory 1 Introduction to the Arduino boards Laboratory 1 Introduction to the Arduino boards The set of Arduino development tools include µc (microcontroller) boards, accessories (peripheral modules, components etc.) and open source software tools

More information

An open-source hardware+software project. For design files and additional documentation, please visit:

An open-source hardware+software project. For design files and additional documentation, please visit: An open-source hardware+software project. For design files and additional documentation, please visit: http://www.evilmadscientist.com/go/diavolino Support: http://www.evilmadscientist.com/forum/ Distributed

More information

Introduction To Arduino

Introduction To Arduino Introduction To Arduino What is Arduino? Hardware Boards / microcontrollers Shields Software Arduino IDE Simplified C Community Tutorials Forums Sample projects Arduino Uno Power: 5v (7-12v input) Digital

More information

Flight Data Recorder Hardware Version 1.0

Flight Data Recorder Hardware Version 1.0 Flight Data Recorder Hardware Version 1.0 By R. G. Sparber Scope The Flight Data Recorder (FDR) hardware is described here. The software is described in a separate document. The reader can etch their own

More information

Physics 364, Fall 2012, Lab #9 (Introduction to microprocessor programming with the Arduino) Lab for Monday, November 5

Physics 364, Fall 2012, Lab #9 (Introduction to microprocessor programming with the Arduino) Lab for Monday, November 5 Physics 364, Fall 2012, Lab #9 (Introduction to microprocessor programming with the Arduino) Lab for Monday, November 5 Up until this point we have been working with discrete digital components. Every

More information

micro:bit Lesson 2. Controlling LEDs on Breadboard

micro:bit Lesson 2. Controlling LEDs on Breadboard micro:bit Lesson 2. Controlling LEDs on Breadboard Created by Simon Monk Last updated on 2018-03-09 02:39:14 PM UTC Guide Contents Guide Contents Overview Parts BBC micro:bit Half-size breadboard Small

More information

Bus coupler 3 Bus coupler 3 external sensor Order No

Bus coupler 3 Bus coupler 3 external sensor Order No KNX Product documentation Issue: 28.07.2017 20083200 Bus coupler 3 Bus coupler 3 external sensor Table of Contents KNX Product documentation 1 Product definition... 3 1.1 Product catalogue... 3 1.2 Function...

More information

Mounting DIGITAL DISPLAY

Mounting DIGITAL DISPLAY Mounting The Class digital display mounts in a. by. cutout. Overall area necessary for installation is. by.. Two 0.0 diameter holes are provided for mounting screws..0".0..0.900 Ø 0.0" () HOLES."." DIGITAL

More information

Issue : 1.1 Date : 19/1/2004. Trigger IO. C-Cam Technologies. a division of. Vector International 1 / 6

Issue : 1.1 Date : 19/1/2004. Trigger IO. C-Cam Technologies. a division of. Vector International 1 / 6 Trigger IO C-Cam Technologies a division of Vector International 1 / 6 1 Trigger IO connector Trigger IO connector Camera with LS interface Trigger IO connector Camera with USB interface 2 / 6 1.1 Pin

More information

Arduino IDE The Developer Kit library The JeeLib library for RFM12 transceivers

Arduino IDE The Developer Kit library The JeeLib library for RFM12 transceivers SKU: 810011 The aim of this project is to build a hydrogen powered remote temperature sensor. It is based on the Arduino, Developer Kit fuel cell shield, Maxim DS18B20 1 Wire temperature sensor, and the

More information

PT 5-HF- 5 DC-ST. Extract from the online catalog. Order No.:

PT 5-HF- 5 DC-ST. Extract from the online catalog. Order No.: Extract from the online catalog PT 5-HF- 5 DC-ST Order No.: 2838762 The illustration shows variant PT 5-HF-12 DC-ST Protective plug PT with HF protective circuit for 4 signal wires. Nominal voltage: 5

More information

Digital Pins and Constants

Digital Pins and Constants Lesson Lesson : Digital Pins and Constants Digital Pins and Constants The Big Idea: This lesson is the first step toward learning to connect the Arduino to its surrounding world. You will connect lights

More information

Replicape Rev B 3D printer controller board

Replicape Rev B 3D printer controller board Replicape Rev B 3D printer controller board SKU 102991007 Description Replicape is a high end 3D printer electronics package in the form of a Cape that can be placed on a BeagleBone Black. This page is

More information

High density, signal & power miniaturization Connectors and cable assemblies

High density, signal & power miniaturization Connectors and cable assemblies High density, signal & power miniaturization Connectors and cable assemblies www.fischerconnectors.com FISCHER MINIMAX TM SERIES KEY FEATURES RELIABLE SPACE SAVING Amplitude (db) Return loss performance

More information

Pulse Input Adapters (Part # S-UCC/D-M006) for use with HOBO H21 and H22 Series Data Loggers

Pulse Input Adapters (Part # S-UCC/D-M006) for use with HOBO H21 and H22 Series Data Loggers s (Part # S-UCC/D-M006) for use with HOBO H21 and H22 Series Data Loggers The s are used to log the number of switch closures per interval and are designed to work with smart sensor-compatible HOBO data

More information

Universal Keying Adapter 3+

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

More information

DS1810 5V EconoReset with Push-Pull Output

DS1810 5V EconoReset with Push-Pull Output 5V EconoReset with Push-Pull Output www.maxim-ic.com FEATURES Automatically restarts a microprocessor after power failure Maintains reset for 150 ms after V CC returns to an in-tolerance condition Reduces

More information

genesis TECHNICAL MANUAL Two-Door Controller GEN-045

genesis TECHNICAL MANUAL Two-Door Controller GEN-045 Two-Door Controller GEN-045 Genesis Electronics Australia Pty Ltd www.genesiselectronics.com.au info@genesiselectronics.com.au Australian Owned, Designed and Manufactured Distributed By:- Genesis reserves

More information

VKey Voltage Keypad Hookup Guide

VKey Voltage Keypad Hookup Guide Page 1 of 8 VKey Voltage Keypad Hookup Guide Introduction If you need to add a keypad to your microcontroller project, but don t want to use up a lot of I/O pins to interface with it, the VKey is the solution

More information

FC7 Optical Fork for labels. Photoelectric Sensors

FC7 Optical Fork for labels. Photoelectric Sensors Optical Fork for labels Photoelectric Sensors Catalogue CAT3EFC1372201 Catalogue english Ed.01/2013 2/3 Products fork Series Fork www.microdetectors.com Industries and applications label recognition labels

More information

Getting started with X-NUCLEO-53L1A1 long distance ranging ToF sensor expansion board based on VL53L1X for STM32 Nucleo

Getting started with X-NUCLEO-53L1A1 long distance ranging ToF sensor expansion board based on VL53L1X for STM32 Nucleo User manual Getting started with X-NUCLEO-53L1A1 long distance ranging ToF sensor expansion board based on VL53L1X for STM32 Nucleo Introduction This document provides detailed hardware information on

More information

USER S MANUAL VER.1. C10D- PARALLEL PORT INTERFACE CARD BOARD Rev. 1

USER S MANUAL VER.1. C10D- PARALLEL PORT INTERFACE CARD BOARD Rev. 1 USER S MANUAL VER.1 C10D- PARALLEL PORT INTERFACE CARD BOARD Rev. 1 MARCH 2018 User s Manual Page i USER'S MANUAL TABLE OF CONTENTS Contents Page # 1.0 OVERVIEW... iii 2.0 FEATURES... iii 3.0 SPECIFICATIONS...

More information

Secured Series: Hub Plus Kit Single Door Controller Package Installation Manual

Secured Series: Hub Plus Kit Single Door Controller Package Installation Manual Secured Series: Hub Plus Kit Single Door Controller Package Installation Manual This package is designed to simplify the connections to our Secured Series Hub Plus Controller. This will translate into

More information

BUILD: ARDUINO NANO + NEMA17 BIPOLAR STEPPER 12V 0.4A + EASYDRIVER

BUILD: ARDUINO NANO + NEMA17 BIPOLAR STEPPER 12V 0.4A + EASYDRIVER BOARD OPTION HW203 DRIVER BOARD The EASYDRIVER v44 driver board which can supply up to 750mA maximum current (typically 500mA), thus is able to driver stepper motors that require more current and hence

More information

PN PSTK-120 PowerSwitch Tail 120vac Kit PN PSTK-240 PowerSwitch Tail 240vac Kit

PN PSTK-120 PowerSwitch Tail 120vac Kit PN PSTK-240 PowerSwitch Tail 240vac Kit CAUTION: Please make sure you have or have access to the skills necessary to assemble and use this product. Always secure the case with the included screws before applying electrical power to the power

More information

Wind Logger Shield. Parts included: Date: 29/07/14 Version: 1.0 By: Matt Little

Wind Logger Shield. Parts included: Date: 29/07/14 Version: 1.0 By: Matt Little Wind Logger Shield Date: 29/07/14 Version: 1.0 By: Matt Little Parts included: This is a simple shield to easily implement a wind resource data logging system. It is designed to read 2 x pulse type anemometers

More information

Dwarf Boards. DB021 : L298 dual motor driver

Dwarf Boards. DB021 : L298 dual motor driver Dwarf Boards DB021 : L298 dual motor driver (c) Van Ooijen Technische Informatica version 1.0 PICmicro, In-Circuit Serial Programming and ICSP are registerd trademarks of Microchip Technology Inc. Introduction

More information

Network Controller. Installation/Troubleshooting Instructions NK220 COM1131C

Network Controller. Installation/Troubleshooting Instructions NK220 COM1131C Network Controller NK220 COM1131C Installation/Troubleshooting Instructions Part No. 70399101R4 October 2009 Table of Contents Getting Started... 2 Components of Network Controller... 2 System Overview...

More information

Connecting LEDs to the ADB I/O

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

More information