Pressure and presence sensors in textile

Size: px
Start display at page:

Download "Pressure and presence sensors in textile"

Transcription

1 Pressure and presence sensors in textile Eindhoven University of Technology Industrial Design Wearable Senses Admar Schoonen

2 Contents Part I: Hard/soft connections Temporary connections Through hole components Single connections Multiple connections Part II: Textile sensor Theory of resistive pressure sensors Making a resistive pressure sensor Theory of capacitive touch sensors Making a capacitive touch sensor Making capacitive touch sensor sensing only one side Combining resistive and capacitive touch sensing 2

3 Part I: Temporary connections Alligator clips Great for quick tests When connecting conductive thread or thin copper wire: wind wire a few times around bottom part of the beak for more reliable connection (image: jensentools.com) 3

4 Part I: Temporary connections Kettelstiften (jewelry making materials): Great for quick tests Fits in standard 0.1 header Available in bronze, silver, gold and rose Can be soldered onto NB: rose colored version seems to be a little thicker; could be too thick for some headers? (image: bykaro.nl/) 4

5 Part I: Temporary connections Simple connections can often be done very inconspicuous with existing haberdashery. Safety pins (image: globalsources.com) 5

6 Part I: Through hole components Components with long leads: bend leads outwards and into a curl, then hand-sew over them. (image: open softwear) 6

7 Part I: Through hole components Components with short leads: bend leads outwards then handsew over them. Test with a multimeter to make sure you have no short circuits! (image: open softwear) 7

8 Part I: Circuit boards Circuit boards (image: lilypadarduino.org) Circuit boards with standard 0.1 header holes require very fine needle 8

9 Part I: Haberdashery Simple connections can often be done very inconspicuous with existing haberdashery. Snap buttons (images: ayutrade.nl) (image: open softwear) 9

10 Part I: Haberdashery Simple connections can often be done very inconspicuous with existing haberdashery. Metal buttons (image: buttons4u.com) (image: open softwear) 10

11 Part I: Haberdashery Simple connections can often be done very inconspicuous with existing haberdashery. Zipper (image: ucanzippers.com) (image: open softwear) 11

12 Part I: Many connections When many connections are needed, a simple, efficient method is using a standard pin header Insulated conductive thread recommended Base fabric needs to be heat resistant (cotton: OK; nylon, polyester: not OK) Details at 12

13 Part I: Links ta pdf e-connector/ 13

14 Part II: Pressure sensor circuit Use fixed resistor as reference R sense V =V cc R ref + R sense 5V + 5V + R ref =10 k Ω R ref =10 k Ω V =4 V R sense =40 k Ω V =3.75 V R sense =30 k Ω 14

15 Part II: Pressure sensor stackup Electrode 1 Resistive pressure sensitive material Electrode 2 15

16 Part II: Pressure sensitive material Unpressed Pressed 16

17 Part II: Actual structure Electrode 1 Resistive pressure sensitive material Electrode 2 17

18 Part II: Pressure sensitive material ESD foam image: conrad.com PU foam Impregnated with carbon / latex mixture Typically about 5 mm thick Very compressable Velostat / Linqstat image: aura-comms.com PE film Impregnated with carbon based material Typically about 0.2 mm thick Slightly compressible 18

19 Part II: Conductive textile Any conductive textile with good conductivity will work. Textiles with metal coating or metal woven into is fine Textiles with carbon coating or carbon woven into is not preferred (has higher resistivity) Textile should not have an insulating coating Examples: Sparkfun DEV (conductive fabric ripstop) Sparkfun DEV (conductive fabric MedTex180, strechable in 1 direction) Sparkfun DEV (conductive fabric MedTex130, strechable in 2 directions) 19

20 Part II: Sensor design Electrodes: Size is always a bit smaller than pressure sensitive material (prevents short circuit) Material: conductive fabric or uncoated conductive yarn / wire Conductive fabric based on nylon can easily fray watch out for short circuits Conductive fabric has lower resistance than yarn / wire Good sensor: > 40 kohm unpressed, < 4 kohm pressed Pressure sensitive material: resistance can be increased by: Stacking several layers of pressure sensitive material (increases the length of the resistor) Decreasing area Using material with lower conductivity Pressure sensitive materials usually have a hysteresis Material does not always immediately and completely recover sensor still sees some pressure after pressure is removed 20

21 Part II: Sensor design: conductive fabric electrodes Front electrode Back electrode Prepare electrodes: Cut out 2 pieces of conductive fabric, about 7 x 7 cm Tip: ripstop fabric easily frays, which can cause short circuits. If you use a sewing machine, this will be taken care of in step 3. If sewing by hand: Laser cutter (melts the material no fraying) Sew a hem Tape edges (when you're lazy) 21

22 Part II: Sensor design: conductive fabric electrodes Front electrode Back electrode Prepare electrodes: Place uncoated conductive thread / wire on electrode and fixate with stitches Alternatively: sew thread directly through electrode 22

23 Part II: Sensor design: conductive fabric electrodes Electrode Cotton patch Cut a patch of nonconductive fabric (such as cotton); must be larger than the electrode Optionally: trace outlines of conductive fabric on cotton patch, such that it is visible on both sides Trace of conductive fabric 23

24 Part II: Sensor design: conductive fabric electrodes Front Back Sew each electrode to its own cotton patch When using sewing machine: use zigzag to keep in any frays 24

25 Part II: Sensor design: conductive fabric electrodes Front Pressure sensitive material Cut out pressure sensitive material Must be slightly larger than electrode but smaller than cotton patch 25

26 Part II: Sensor design: conductive fabric electrodes Front Side Place pressure sensitive material in between electrodes Electrodes must face inwards 26

27 Part II: Sensor design: conductive fabric electrodes Sew sensor together Good Bad Be careful to not stitch inside the outline, to prevent stitching through conductive fabric and causing short circuit Do not pull the stitches too tight to prevent too must base pressure 27

28 Part II: Wiring it all up void setup() { Serial.begin(115200); } void loop() { int x; } x = analogread(0); Serial.println(x); 28

29 Part II: Simplifying things Arduino has internal pull-up resistors on analog input (20 50 kohm) void setup() { Serial.begin(115200); pinmode(a0, INPUT); digitalwrite(a0, HIGH); } void loop() { int x; } x = analogread(0); Serial.println(x); 29

30 Part II: Schematic vs reality 5V + 5V + R ref R ref Switch to enable pull-up Switch to enable pull-up To ADC R sense To ADC R sense 30

31 Part II: Resistor or capacitor? Pressure sensitive material has too low resistance to work as proper insulator. Instead, both sides of conductive fabric + pressure sensitive material can act as one large (and thick) plate of a capacitor. Human hand acts as 2nd plate of capacitor. Capacitance increases if hand is brought closer to sensor. Details on how this type of capacitive sensing works are out of scope for workshop. 31

32 Part II: Combining capacitive and resistive sensing 5V + 5V + R ref Closed switch to enable pullup R sense Closed switch to connect ground R ref To ADC Open switch to disable pull-up To ADC C sense Open switch to disconnect ground 32

33 Part II: Wiring it all up (without guard) Software: rapidly switch between capacitive sensing (for distance information) and resistive sensing (for pressure information) Download: 33

34 Part II: Summary Resistive sensor: reduce resistance by compressing medium resistive material, reducing path length for electrons ESD foam and ESD foil are very suitable Influence sensitivity with number of layers and area Capacitive sensor: increase capacitance to ground by bringing hand / finger close to sensor, increasing field lines Resistive sensor with floating pins is very suitable as capacitive sensor Influence sensitivity with area Capacitive and resistive sensor can be combined in one to measure both distance and pressure 34

35 Part II: Hands-on Sew sensor (slides 21-27) Download Arduino code (slide 33) Install as library in Arduino Open Example00SemiAutoTuning Set Arduino serial monitor speed to baud Answer questions Copy + paste generated code in new Arduino sketch Upload sketch and test sensor More details:

Build Manual. for Studying Electrical Conductivity using a 3D Printed 4-Point Probe Station

Build Manual. for Studying Electrical Conductivity using a 3D Printed 4-Point Probe Station Build Manual for Studying Electrical Conductivity using a 3D Printed 4-Point Probe Station 1 Materials 1. 3D printed parts Head support Trigger Front Probe head panel Right panel Middle panel Left panel

More information

Temperature Sensor. Positive + (to 5 volts.) Ground. To A0 To GND Signal. To 5v

Temperature Sensor. Positive + (to 5 volts.) Ground. To A0 To GND Signal. To 5v Temperature Sensor This system measures the change in temperature and converts it to a colorful thermometer using LEDs. The first time you run the sketch, you will use the serial monitor to find the lowest

More information

DIY Wearable Technology

DIY Wearable Technology DIY Wearable Technology ISEA 2009 Wearable Materialities Panel Hannah Perner-Wilson Research Fellow Distance Lab hannah@plusea.at Abstract DIY practice of wearable technology allows individuals to explore

More information

Bill of Materials: Car Battery/charging system diagnostics PART NO

Bill of Materials: Car Battery/charging system diagnostics PART NO Car Battery/charging system diagnostics PART NO. 2192106 You can hook up the kit's test leads directly to the car battery (with engine off) and see whether battery voltage is ok (green LED on) or low (yellow

More information

EMG SpikerShield v1.2 Instructions

EMG SpikerShield v1.2 Instructions EMG SpikerShield v1.2 Instructions Prepare yourself. In 2-4 hours, you will have built your own Arduino compatible EMG SpikerBox, so you can control robots and anything you wish with your EMG muscle activity.

More information

The Go Baby Go Build Manual

The Go Baby Go Build Manual The Go Baby Go Build Manual The step-by-step guide to creating your own Go Baby Go Car 4488 Shockwave Robotics and Pacific University Index 1. List of Mat erials 2. Mechanical Assembly a. Installing the

More information

IV-3 VFD Shield for Arduino. Assembly Manual

IV-3 VFD Shield for Arduino. Assembly Manual June 2014 Table of Contents 1 Overview Features Applications 3 3 3 2 Assembly Hints 4 3 PCB Overview 5 4 Circuit Diagram 6 5 Assembly Diodes and IC socket Electrolytic capacitors Ceramic capacitors 10K

More information

Prusa i3 Printer Assembly Guide

Prusa i3 Printer Assembly Guide Prusa i3 Printer Assembly Guide Special thanks to Carlos Sanchez and Miguel Sanchez for the graphics. All graphics captured from their great animation: http://www.carlos-sanchez.com/ Prusa3/ For copyright

More information

1. Overview Power output & conditioning 5 2. What is included Software description 6 3. What you will need 2

1. Overview Power output & conditioning 5 2. What is included Software description 6 3. What you will need 2 Control system for Horizon fuel cell stack Refillable metal hydride hydrogen storage with pressure regulators Complete component kit to build and create your own hydrogen fuel cell power plant Development

More information

Using your Digital Multimeter

Using your Digital Multimeter Using your Digital Multimeter The multimeter is a precision instrument and must be used correctly. The rotary switch should not be turned unnecessarily. To measure Volts, Milliamps or resistance, the black

More information

BATTERY BOOSTER SHIELD

BATTERY BOOSTER SHIELD BATTERY BOOSTER SHIELD Introduction The Battery Booster Shield is an add-on for the Arduino that efficiently boosts a lower input voltage (0.65V to 4.5V) up to 5V. It powers the Arduino and peripherals

More information

Electrostatics Revision 4.0b

Electrostatics Revision 4.0b Electrostatics Revision 4.0b Objective: This experiment allows you to investigate the production of static charge, charging by: induction and contact, the measurement of charge, grounding techniques and

More information

Electrical Circuits: Automatic Book Light

Electrical Circuits: Automatic Book Light Henry Lin Hani Mehrpouyan Electrical Circuits: Automatic Book Light Note: Do not look directly at LED with unshielded eyes or damage to retina may occur. Introduction: In this lab you will construct a

More information

Zip Tie Domes. 2 Frequency Geodesic Silo Dome Assembly Manual. Silo Dome Version

Zip Tie Domes. 2 Frequency Geodesic Silo Dome Assembly Manual. Silo Dome Version Zip Tie Domes 2 Frequency Geodesic Silo Dome Assembly Manual Silo Dome Version (c) 2015 Zip Tie Domes 1857 Brindley Hollow Rd Buffalo Valley, TN 38548 (931) 858-6892 Zip Tie Domes - 2V Silo Dome Manual

More information

(for example A0) on the Arduino you can expect to read a value of 0 (0V) when in its upright position and 1023 (5V) when it is tilted.

(for example A0) on the Arduino you can expect to read a value of 0 (0V) when in its upright position and 1023 (5V) when it is tilted. Tilt Sensor Module Tilt sensors are essential components in security alarm systems today. Standalone tilt sensors sense tilt angle or movement. Tilt sensors can be implemented using mercury and roller

More information

SUPER CAPACITOR CHARGE CONTROLLER KIT

SUPER CAPACITOR CHARGE CONTROLLER KIT TEACHING RESOURCES ABOUT THE CIRCUIT COMPONENT FACTSHEETS HOW TO SOLDER GUIDE POWER YOUR PROJECT WITH THIS SUPER CAPACITOR CHARGE CONTROLLER KIT Version 2.0 Teaching Resources Index of Sheets TEACHING

More information

Uno Compatible Pogobed Kit

Uno Compatible Pogobed Kit Uno Compatible Pogobed Kit Intermediate Level The pogobed kit is a hardware fixture that enables you to temporarily connect from your Arduino development board to any Arduino shield. Using the springloaded

More information

Lab 4: Robot Assembly

Lab 4: Robot Assembly E11: Autonomous Vehicles Lab 4: Robot Assembly In this lab, you ll put together your very own robot! You should have a Mudduino and a chassis, as well as your kit of parts. Now it s time to put them all

More information

Draw a Circuit! Fun with graphite. by Kyle Seyler.

Draw a Circuit! Fun with graphite. by Kyle Seyler. Draw a Circuit! Fun with graphite by Kyle Seyler http://cei.washington.edu 1 Overview Students explore the conductive properties of graphite and graphene as they create simple circuits. Next Generation

More information

Bruce s Science workbench

Bruce s Science workbench Baby Vandegraff Generator by Bruce Yeany 2001 https://www.youtube.com/watch?v=parq01q DKe4 http://www.instructables.com/id/van-de- Graaff-Electrostatic-High-Voltage- Generator/ https://www.youtube.com/watch?v=esz

More information

Re-Energy.ca - Solar Electricity - Build Your Own Solar Car

Re-Energy.ca - Solar Electricity - Build Your Own Solar Car Backgrounder Build Your Own Solar Car Back to Page 1 Build It! These step-by-step instructions provide you with a plan for making a basic solar car. If you can think of ways to improve the design of your

More information

MaxSonar Operation on a Multi-Copter

MaxSonar Operation on a Multi-Copter maxbotix.com http://www.maxbotix.com/articles/067.htm MaxSonar Operation on a Multi-Copter MaxBotix Inc., sensors have been successfully used on a number of multi- copters. Multi- copters are also called

More information

Integration Guide TPE-500 SERIES. Force Sensing Resistor

Integration Guide TPE-500 SERIES. Force Sensing Resistor Integration Guide TPE-500 SERIES To be used in conjunction with current single-point sensor data-sheets available at www.tangio.ca Tangio TPE-500 Series Integration Guide: Force Sensing Resistor v2.0 Jan

More information

Indium Tin Oxide (ITO) Coated Glass Slides

Indium Tin Oxide (ITO) Coated Glass Slides Indium Tin Oxide (ITO) Coated Glass Slides Techinstro sell ITO Coated Glass, excellent quality with the finest transparency at lowest price around the world you can compare it. Available in various sizes

More information

Motor Driver PCB Layout Guidelines. Application Note

Motor Driver PCB Layout Guidelines. Application Note AN124 Motor Driver PCB Layout Guidelines Motor Driver PCB Layout Guidelines Application Note Prepared by Pete Millett August 2017 ABSTRACT Motor driver ICs are able to deliver large amounts of current

More information

SCA-80(Q) C11 REPLACEMENT ASSEMBLY MANUAL

SCA-80(Q) C11 REPLACEMENT ASSEMBLY MANUAL SCA-80(Q) C11 REPLACEMENT ASSEMBLY MANUAL 2014-2016 AkitikA, LLC All rights reserved Revision 1p05 July 3, 2016 Page 1 of 15 Table of Contents Table of Contents... 2 Table of Figures... 2 Section 1: About

More information

Rose Quartz. Abbreviations. Necessary Materials. Head. Pattern by Erica Knorr

Rose Quartz. Abbreviations. Necessary Materials. Head. Pattern by Erica Knorr 1 Rose Quartz Pattern by Erica Knorr Abbreviations Ch chain Sc single crochet Hdc half double crochet Dc double crochet Sc2tog single crochet two together 4 dc-cl four double crochet cluster stitch St

More information

SM361 RIG SWITCH CONSTRUCTION MANUAL

SM361 RIG SWITCH CONSTRUCTION MANUAL SM361 RIG SWITCH CONSTRUCTION MANUAL Document ver 1, For software release ver 1.1 May 27, 2016 Controls the power of 12V equipment while a vehicle is in use Product Development by: SM361 RIG SWITCH OVERVIEW

More information

LAB 3 SeaMATE PufferFish Practice Board

LAB 3 SeaMATE PufferFish Practice Board LAB 3 SeaMATE PufferFish Practice Board Components: Practice Board Kit, (2 resistors, 2 LEDs, 1 DPDT switch, 1 PCB, 1 9-volt battery connector, 2 motor wires color varies) Tools & equipment needed: Safety

More information

PSL2 Assembly guide. PSL2 Assembly guide. Resistors. Test pins. Document revision 1.1 Last modification : 30/05/08

PSL2 Assembly guide. PSL2 Assembly guide. Resistors. Test pins.   Document revision 1.1 Last modification : 30/05/08 Safety warning THIS KIT IS NOT FOR BEGINNERS! This kit is main powered and use potentially lethal voltages. Under no circumstance should someone undertake the realisation of this kit unless he has full

More information

MONGOOSE. Introduction. < blueroomelectronics > Assembly Instructions. Mongoose was designed as an introduction to Mechatronics.

MONGOOSE. Introduction. < blueroomelectronics > Assembly Instructions. Mongoose was designed as an introduction to Mechatronics. MONGOOSE Assembly Instructions Introduction Mongoose was designed as an introduction to Mechatronics Page 1 of 12 Before you start The Mongoose is a complex kit and skipping instructions is not advised,

More information

Assembly Guide for RedBot with Shadow Chassis

Assembly Guide for RedBot with Shadow Chassis Page 1 of 32 Assembly Guide for RedBot with Shadow Chassis Introduction The SparkFun RedBot is a platform for teaching basic robotics and sensor integration! It is based on the SparkFun RedBoard and fully

More information

LED PICTURE FRAME KIT

LED PICTURE FRAME KIT ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS MAKE A DISPLAY OF YOUR MOST TREASURED PHOTOGRAPH WITH THIS LED PICTURE FRAME KIT Version

More information

AUTOMOTIVE ENGINEERING SECTION

AUTOMOTIVE ENGINEERING SECTION PURPOSE OF IGNITION SYSTEM The ignition system supplies high-voltage surges as high as 47,000 volts (in some electronic systems) to the spark plugs in the engine cylinders. These surges produce electric

More information

Lesson Plan Day 1 (hot water heater) productid=109&cat=2&page=1 Full kit SKU KWS005A. Weight 5.00 lbs

Lesson Plan Day 1 (hot water heater) productid=109&cat=2&page=1 Full kit SKU KWS005A. Weight 5.00 lbs G. Van Knowe Supply List for SummerITeens 2010 Solar July 26-30 Program NOTE: due to time constraints, most kits will be assembled before class Item Total for Number per student Suggest Obtain at : Approx.

More information

Tilt Sensor. Created by lady ada. Last updated on :04:38 PM UTC

Tilt Sensor. Created by lady ada. Last updated on :04:38 PM UTC Tilt Sensor Created by lady ada Last updated on 2017-12-26 10:04:38 PM UTC Guide Contents Guide Contents Overview Basic Stats Testing a Tilt Sensor Connecting to a Tilt Sensor Using a Tilt Sensor Simple

More information

Zip Tie Domes. Greenhouse Version. 2 Frequency Geodesic Dome Assembly Manual

Zip Tie Domes. Greenhouse Version. 2 Frequency Geodesic Dome Assembly Manual Zip Tie Domes 2 Frequency Geodesic Dome Assembly Manual Greenhouse Version (c) 2014 Zip Tie Domes 1857 Brindley Hollow Rd Buffalo Valley, TN 38548 (931) 858-6892 Zip Tie Domes - 2V Assembly Manual Instructions

More information

These instructions show how to build the Remote Controlled Fart machine Sound Kit.

These instructions show how to build the Remote Controlled Fart machine Sound Kit. Remote Controlled Fart Machine Assembly Instructions These instructions show how to build the Remote Controlled Fart machine Sound Kit. Tools Required Drill with 7/64, 3/16, and ¼ drill bits. Holt melt

More information

HOW IS ELECTRICITY PRODUCED?

HOW IS ELECTRICITY PRODUCED? ELECTRICITY HOW IS ELECTRICITY PRODUCED? All electricity is produced from other sources of energy. Hydroelectricity is produced from the stored energy of water held back by a dam. As the water runs downhill

More information

Voltmeter. for Experiments with the fischertechnik Expansion Kit. Order No

Voltmeter. for Experiments with the fischertechnik Expansion Kit. Order No Voltmeter for Experiments with the fischertechnik Expansion Kit Order No. 30083 Fischer Werke 7241 Tumlingen Printed in Germany Ref. No. 33-8/70/5 2. Operation of the Moving Coil Meter If a current flows

More information

Thank you for purchasing a kit from SparKIT. Your support is greatly appreciated.

Thank you for purchasing a kit from SparKIT. Your support is greatly appreciated. SparKIT Instructions Thank you for purchasing a kit from SparKIT. Your support is greatly appreciated. First of all we would like to go through a few basic precautions. 1. This kit includes small parts

More information

CHAPTER 2. Current and Voltage

CHAPTER 2. Current and Voltage CHAPTER 2 Current and Voltage The primary objective of this laboratory exercise is to familiarize the reader with two common laboratory instruments that will be used throughout the rest of this text. In

More information

This appendix gives you a general introduction to what electricity is

This appendix gives you a general introduction to what electricity is C5865_App B_CTP.qxd 24/09/2006 01:50 PM Page 1215 APPENDIX B Electricity and Multimeters This appendix gives you a general introduction to what electricity is and how it is measured. In addition, you will

More information

Rigid Base / Turntable Bed. Exploded side view of bottom rotating wood drive wheel, showing optics aligned to stop bracket.

Rigid Base / Turntable Bed. Exploded side view of bottom rotating wood drive wheel, showing optics aligned to stop bracket. TURNTABLE INDEXER #617 for use with BOWSER and other, turntables by 246 W. Main St. Leola, PA 17540 (717) 661-7041 www.dallee.com OVERVIEW The TURNTABLE INDEXER unit has been made with simplicity of installation

More information

Linear Stepper Driver v0.9.2 Assembly Instructions

Linear Stepper Driver v0.9.2 Assembly Instructions Linear Stepper Driver v0.9.2 Assembly Instructions Here's what's included in the kit: 1x Printed Circuit board 1x Heatsink bracket 5x 0.1uF capacitors 1x 6-pin ISP header 1x 10-pin configuration header

More information

Whether it s a harsh outdoor environment or an indoor desktop, PowerFilm has an optimal solution for your application.

Whether it s a harsh outdoor environment or an indoor desktop, PowerFilm has an optimal solution for your application. Electronic Component Solar Panels PowerFilm Electronic Component panels are well suited to power the wireless devices and sensors of the emerging IoT industry as well as many other battery operated and

More information

Letter Figures Words SYSTEMS ENGINEERING. Written examination. Monday 18 November 2013

Letter Figures Words SYSTEMS ENGINEERING. Written examination. Monday 18 November 2013 Victorian Certificate of Education 2013 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words SYSTEMS ENGINEERING Written examination Monday 18 November 2013 Reading time: 9.00

More information

C capacitance, 91 capacitors, codes for, 283 coupling, polarized and nonpolarized,

C capacitance, 91 capacitors, codes for, 283 coupling, polarized and nonpolarized, Index Numbers and Symbols 555 timer, 164 166 making sound using, setting output speed of, 166 167 using for reaction game speed, 260 261 μf (microfarad), 92 Ω (ohms), 7, 70 A A (amperes), 7 AC (alternating

More information

FURUTECH. Finished Analog Cable

FURUTECH. Finished Analog Cable High End performance Power Cable 1.8 m Power Reference III 72,500.- 49-strand α (Alpha) μ-conductor 0.32mm x 3 cores, 2.5mm Insulation: Irradiated PE (Red/Natural/Yellow) 5mm Sheath: Two layers flexible

More information

White Light CLASSIC PEDAL KIT. Assembly Instructions WHEN YOU CAN T BUY IT BUILD IT. StewMac RARE / VINTAGE / HARD TO GET

White Light CLASSIC PEDAL KIT. Assembly Instructions WHEN YOU CAN T BUY IT BUILD IT. StewMac RARE / VINTAGE / HARD TO GET Sheet #i-2206 Updated 5/18 StewMac White Light CLASSIC PEDAL KIT Kit case is unpainted IN COLLABORATION WITH EarthQuakerDevices Assembly Instructions The White Light Overdrive is based on vintage overdrives

More information

Heavy Duty U-Joint Service Kit

Heavy Duty U-Joint Service Kit Heavy Duty U-Joint Service Kit 00 Safety Warning Read all instructions and safety warnings prior to operation. Failure to do so could result in equipment damage, personal injury or even death. CAUTION

More information

Load Cell Amplifier HX711 Breakout Hookup Guide

Load Cell Amplifier HX711 Breakout Hookup Guide Load Cell Amplifier HX711 Breakout Hookup Guide CONTRIBUTORS: SARAH AL-MUTLAQ, ALEX THE GIANT FAVORITE 0 Getting Started The HX711 load cell amplifier is used to get measurable data out from a load cell

More information

QRPGuys Digital RF Probe

QRPGuys Digital RF Probe QRPGuys Digital RF Probe First, familiarize yourself with the parts and check for all the components. If a part is missing, please contact us and we will send one. This kit contains seventeen 1206 size

More information

Arlo Power Distribution Board Kit Rev B (#28996)

Arlo Power Distribution Board Kit Rev B (#28996) 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

ESSENTIAL INFORMATION /2153 BUILD INSTRUCTIONS HOW THE BUGGY WORKS EXPLORE SOLAR POWER WITH THIS SOLAR POWERED BUGGY. Version 2.2

ESSENTIAL INFORMATION /2153 BUILD INSTRUCTIONS HOW THE BUGGY WORKS EXPLORE SOLAR POWER WITH THIS SOLAR POWERED BUGGY. Version 2.2 /2153 ESSENTIAL INFORMATION BUILD INSTRUCTIONS HOW THE BUGGY WORKS EXPLORE SOLAR POWER WITH THIS SOLAR POWERED BUGGY Version 2.2 Build Instructions 1 Push the rear two clips into the base of the buggy,

More information

Maintenance Information

Maintenance Information Form 16575334 Edition 1 April 2005 Electric Screwdrivers EL, EP and ET 34V DC Series Maintenance Information Save These Instructions WARNING Maintenance procedures have the potential for severe shock hazard

More information

SMD Pressure and Flow Sensors for Industrial Compressed Air in LTCC Technology

SMD Pressure and Flow Sensors for Industrial Compressed Air in LTCC Technology SMD Pressure and Flow Sensors for Industrial Compressed Air in LTCC Technology Yannick.Fournier@a3.epfl.ch A. Barras, G. Boutinard Rouelle, T. Maeder, P. Ryser Sensor Packaging session June 17 th, 15:15

More information

PARTS LIST. Beams: 72x. 16x. 64x. 16x. 12x. 2x Breadboards CYB x TotemDuino 1x LabBoard 1x 30cm 34way Flat Cable 1x Power Supply 12v 1,5A

PARTS LIST. Beams: 72x. 16x. 64x. 16x. 12x. 2x Breadboards CYB x TotemDuino 1x LabBoard 1x 30cm 34way Flat Cable 1x Power Supply 12v 1,5A Totem Mini Lab is a great platform to experiment, learn basics of electronics and Arduino coding. We have made an all-in-one breadboarding and testing unit, that gives you several useful features: Different

More information

Getting Started with the Digilent Electronics Explorer Board

Getting Started with the Digilent Electronics Explorer Board Getting Started with the Digilent Electronics Explorer Board This tutorial provides a very basic overview of the Digilent Electronics Explorer (EE) Board. 1. EE Board Physical Description A top view of

More information

Bimotion Advanced Port & Pipe Case study A step by step guide about how to calculate a 2-stroke engine.

Bimotion Advanced Port & Pipe Case study A step by step guide about how to calculate a 2-stroke engine. Bimotion Advanced Port & Pipe Case study A step by step guide about how to calculate a 2-stroke engine. 2009/aug/21. Bimotion. This paper is free for distribution and may be revised, for further references

More information

SGM4056 High Input Voltage Charger

SGM4056 High Input Voltage Charger GENERAL DESCRIPTION The SGM456 is a cost-effective, fully integrated high input voltage single-cell Li-ion battery charger. The charger uses a CC/CV charge profile required by Li-ion battery. The charger

More information

WINDUP TORCH KIT TEACHING RESOURCES. Version 1.1 LIGHT UP YOUR DAY WITH THIS

WINDUP TORCH KIT TEACHING RESOURCES. Version 1.1 LIGHT UP YOUR DAY WITH THIS TEACHING RESOURCES SCHEMES OF WORK DEVELOPING A SPECIFICATION COMPONENT FACTSHEETS HOW TO SOLDER GUIDE LIGHT UP YOUR DAY WITH THIS WINDUP TORCH KIT Version 1.1 Index of Sheets TEACHING RESOURCES Index

More information

Ian Jones, TWI Ltd ITMA 2015, Milan

Ian Jones, TWI Ltd ITMA 2015, Milan Ian Jones, TWI Ltd ITMA 2015, Milan Powerweave FP7 European Project Development of Textiles for Electrical Energy Generation and Storage 4 years - ends in November 2015 Coordinated by TWI Ltd, UK 7 industrial

More information

RB-See-218. Seeedstudio Solar Charger Shield for Arduino V2. Introduction

RB-See-218. Seeedstudio Solar Charger Shield for Arduino V2. Introduction RB-See-218 Seeedstudio Solar Charger Shield for Arduino V2 Introduction The solar charger is a stackable shield to Arduino compatible platforms, enables adaptive battery power and act as energy harvester

More information

This worksheet shows you how to construct a simple alarm in PCB Wizard.

This worksheet shows you how to construct a simple alarm in PCB Wizard. Page 1 of 7 < Back Next > Project: Author: Description: Sensor Alarm A.J.Booker (www.ajbooker.co.uk) This worksheet shows you how to construct a simple alarm in PCB Wizard. When viewed in PCB Wizard this

More information

Electricity Merit Badge

Electricity Merit Badge Electricity Merit Badge Class 2 - Magnetism 1 Classes Class 1 Basic Electricity (shared with the Electronics Merit Badge) Class 2 Magnetism Magnets & Compasses Electromagnets & Coils Solenoids & Electric

More information

Hard Bar Sport, M1/M2 Hard Core Hardtop, M2 Sport, and Xtreme Installation Instructions

Hard Bar Sport, M1/M2 Hard Core Hardtop, M2 Sport, and Xtreme Installation Instructions HARDWARE KIT: Hard Bar Sport, M1/M2 Hard Core Shoulder Harness Guide Relocation Assemblies: 2-3/8" X 1" grade 8 bolts 4-3/8" flat washers 2-3/8" lock nuts 2 - brass bushings 2 - plastic trim caps 2-3/8"

More information

INTELLIQUILTER INSTALLATION ON INNOVA VERSION

INTELLIQUILTER INSTALLATION ON INNOVA VERSION INTELLIQUILTER INSTALLATION ON INNOVA VERSION 04.25.16 1. EDGERIDER WHEELS ON THE CARRIAGE Slightly loosen the bolts ( A ) on the bracket that holds the front wheels, so it can allow for changes in the

More information

The Easy Driver gives you the capability to drive bipolar stepper motors between 150mA to 700mA per phase.

The Easy Driver gives you the capability to drive bipolar stepper motors between 150mA to 700mA per phase. Introduction The Easy Driver gives you the capability to drive bipolar stepper motors between 150mA to 700mA per phase. Hardware Overview The Easy Driver is designed by Brian Schmalz, and is designed around

More information

TAPING LINES ALBERSRIETH VOHENSTRAUSS VERTICAL HORIZONTAL TANGENTIAL PI LINES GLASS FIBER / DAGLAS LINES MICA LINES PTFE LINES

TAPING LINES ALBERSRIETH VOHENSTRAUSS VERTICAL HORIZONTAL TANGENTIAL PI LINES GLASS FIBER / DAGLAS LINES MICA LINES PTFE LINES E TAPING LINES ALBERSRIETH VOHENSTRAUSS Factory : Hydro-Power Albersrieth 27 92727 Waldthurn Germany/Bavaria Fon: +9 (0) 967/930-0 Fax: +9 (0) 967/930-23 info@lukas-anlagenbau.de www.lukas-anlagenbau.de

More information

Digital Multimeter: This handheld device is used by this course to measure voltage and resistance we will not use this to measure current or capacitan

Digital Multimeter: This handheld device is used by this course to measure voltage and resistance we will not use this to measure current or capacitan Digital Multimeter: This handheld device is used by this course to measure voltage and resistance we will not use this to measure current or capacitance. For current you will use an analog ammeter and

More information

Doily Pumpkin. By Kristin Baird

Doily Pumpkin. By Kristin Baird Doily Pumpkin By Kristin Baird So, the inspiration for this little ditty, came from a doily pattern I found using the pineapple stitch. I had to modify the pattern quite a bit to make the shape I was looking

More information

ET Series Sealed Subminiature Toggle Switches

ET Series Sealed Subminiature Toggle Switches Sealed Subminiature Switches eatures/benefits Sealed against solder and cleaning process contaminants ESD protection available Thru-hole and surface mount models Compact size and small footprint save PCB

More information

BESTEEL 170 SERIES CURTAIN TRACKS

BESTEEL 170 SERIES CURTAIN TRACKS BESTEEL 170 SERIES CURTAIN TRACKS BL = Black Finish 2XX Series Track Systems have a black finish. Parts Included 170 (270) 170 BESTEEL CWANA code CORD OPERATED/MOTORIZED 171 (271) 171-R (271-R) 260 172

More information

REVISION DESCRIPTION:

REVISION DESCRIPTION: REVISION DESCRIPTION: 1) Page: 12-03 REV 1: Step 1: and Figure 1: Final-Drill s.b. Match-Drill. Step 4: Updated flox mixture description to match later description (removed "peanut butter-like" description).

More information

Anti-Surge Thick Film Chip Resistors

Anti-Surge Thick Film Chip Resistors FEATURES EXCELLENT ANTI-SURGE & ANTI-SULFUR CHARACTERISTICS AEC-Q200 QUALIFIED RATED POWER UPGRADE IN SMALLER PACKAGE SIZE AVAILABLE IN ± TOLERANCE BOTH FLOW SOLDER AND REFLOW SOLDERING ARE APPLICABLE

More information

QUASAR KIT No THYRISTOR - TRIAC TESTER

QUASAR KIT No THYRISTOR - TRIAC TESTER QUASAR KIT No. 1087 THYRISTOR - TRIAC TESTER GENERAL DESCRIPTION With this new kit Quasar Kit offers you a very useful instrument for your bench that will help you to test THYRISTORS and TRIACS. These

More information

DATA SHEET CURRENT SENSOR - LOW TCR PT series 5%, 2%, 1% sizes 0402/0603/0805/1206/2010/2512

DATA SHEET CURRENT SENSOR - LOW TCR PT series 5%, 2%, 1% sizes 0402/0603/0805/1206/2010/2512 DATA SHEET CURRENT SENSOR - LOW TCR PT series 5%, 2%, 1% sizes 0402/0603/0805/1206/2010/2512 RoHS compliant & Halogen free Product specification December 30, 2015 V.1 Product specification 2 SCOPE This

More information

VEX Extra Parts List. SOLDERING Vice Soldering Iron Wire Strippers Black and Red Wire Touch Sensor Solder Safety Glasses.

VEX Extra Parts List. SOLDERING Vice Soldering Iron Wire Strippers Black and Red Wire Touch Sensor Solder Safety Glasses. The Carnegie Mellon VEX curriculum contains an instructional link called Resources. This section includes many additional learning resources that a teacher can use to teach electronics, mechanics, basic

More information

Factors Influencing the Performance of Ball and Rolling Bearings

Factors Influencing the Performance of Ball and Rolling Bearings Factors Influencing the Performance of Ball and Rolling Bearings Course No: M02-033 Credit: 2 PDH Robert P. Tata, P.E. Continuing Education and Development, Inc. 9 Greyridge Farm Court Stony Point, NY

More information

LAB 7. SERIES AND PARALLEL RESISTORS

LAB 7. SERIES AND PARALLEL RESISTORS Name: LAB 7. SERIES AND PARALLEL RESISTORS Problem How do you measure resistance, voltage, and current in a resistor? How are these quantities related? What is the difference between a series circuit and

More information

Resistivity. Equipment

Resistivity. Equipment Resistivity Equipment Qty Item Parts Number 1 Voltage Source 850 Interface 1 Resistance Apparatus EM-8812 1 Sample Wire Set EM-8813 1 Voltage Sensor UI-5100 2 Patch Cords rev 05/2018 Purpose The purpose

More information

Modifications to the TS-930 Power Supply. Ken Grant, VE3FIT

Modifications to the TS-930 Power Supply. Ken Grant, VE3FIT Modifications to the TS-930 Power Supply Ken Grant, VE3FIT My TS-930 has a serial number in the 5 million and uses a +21.7 Volt low-current regulator as well as the normal +28.5 V high current supply.

More information

Consult electrical engineer before use. cal enterprises ltd. Instructions for use

Consult electrical engineer before use. cal enterprises ltd. Instructions for use Washing Machine Motor Speed Controller Consult electrical engineer before use. cal enterprises ltd Instructions for use Contents Page 2 Disclaimer Page 3 Introduction Page 4-6 Bits to salvage Page 7-8

More information

ASSEMBLY INSTRUCTIONS FOR NEW FK109 4 LED Railroad Crossing Flasher Kit WITH ADJUSTABLE FLASHING SPEED CONTROL with 4 Red 3mm Leds

ASSEMBLY INSTRUCTIONS FOR NEW FK109 4 LED Railroad Crossing Flasher Kit WITH ADJUSTABLE FLASHING SPEED CONTROL with 4 Red 3mm Leds ASSEMBLY INSTRUCTIONS FOR NEW FK109 4 LED Railroad Crossing Flasher Kit WITH ADJUSTABLE FLASHING SPEED CONTROL with 4 Red 3mm Leds Description: Very easy to build, The FK109 Led Flasher kit makes the perfect

More information

VPPC Terry Hosking, V.P. of Engineering SBE Inc.

VPPC Terry Hosking, V.P. of Engineering SBE Inc. VPPC 2009 Comparative Evaluation and Analysis of the 2008 Toyota Lexus, Camry and 2004 Prius DC Link Capacitor Assembly vs. the SBE Power Ring DC Link Capacitor --- Terry Hosking, V.P. of Engineering SBE

More information

Electrical Engineering:

Electrical Engineering: Electrical Engineering: 1. Resistors: Remember resistors are components designed to limit the flow of electrons through an electrical circuit. Resistors are usually indicated with a colour code, as shown

More information

This chapter gives details of the design, development, and characterization of the

This chapter gives details of the design, development, and characterization of the CHAPTER 5 Electromagnet and its Power Supply This chapter gives details of the design, development, and characterization of the electromagnets used to produce desired magnetic field to confine the plasma,

More information

Technical Workshop: Electrical December 3, 2016

Technical Workshop: Electrical December 3, 2016 Technical Workshop: Electrical December 3, 2016 ELECTRICAL: CIRCUITS Key terms we will be using today: Voltage (V): The difference in electrical potential at one point in a circuit in relation to another.

More information

QUASAR ELECTRONICS KIT No ELECTRONIC CAR IGNITION

QUASAR ELECTRONICS KIT No ELECTRONIC CAR IGNITION QUASAR ELECTRONICS KIT No. 1058 ELECTRONIC CAR IGNITION General Description The advantages of having an electronic ignition in your car are well known. Let us mention them again: 1. Perfect burning of

More information

BESTEEL Model 170 Curtain Tracks BESTEEL Model 171-N Curtain Tracks BESTEEL Model 171-R Curtain Tracks

BESTEEL Model 170 Curtain Tracks BESTEEL Model 171-N Curtain Tracks BESTEEL Model 171-R Curtain Tracks BESTEEL Model 170 Curtain Tracks - Curtain tracks shall be of 14 gauge galvanized steel construction entirely enclosed except for slot in bottom, each half to be in one continuous piece except where splicing

More information

These instructions were written for reference only and the use of a factory service manual is recommended.

These instructions were written for reference only and the use of a factory service manual is recommended. Introducing the CorkSport High Pressure Fuel Line designed for the MZR DISI. This fuel line is designed to replace the OEM fuel line which are prone to failure at the brazed connection at the rail. The

More information

SB-GVS Shield v1.0. ! Ideal for servo & sensor accessories (Phidgets, Seeed Bricks)! Full break-out for all 12 digital lines & 6 analog lines 2

SB-GVS Shield v1.0. ! Ideal for servo & sensor accessories (Phidgets, Seeed Bricks)! Full break-out for all 12 digital lines & 6 analog lines 2 SB-GVS Shield v1.0 Arduino tm -Compatible Sensor Interface Connect up 18 peripherals to the popular Ground/Voltage/Signal interface. Got more? Use the IC-interface too! Build Time: 0mins Skill Level: Beginner

More information

205 Gti seat insert preparation, layout and sewing guide Contents

205 Gti seat insert preparation, layout and sewing guide Contents 205 Gti seat insert preparation, layout and sewing guide Contents Introduction... 2 Important... 2 Step 1 Marking up and cutting out:... 3 Generic measurements:... 3 Front seat:... 3 Rear seat... 3 Typical

More information

Force Sensitive Resistor (FSR) Created by Ladyada

Force Sensitive Resistor (FSR) Created by Ladyada Force Sensitive Resistor (FSR) Created by Ladyada Guide Contents Guide Contents Overview Some Basic Stats These stats are specifically for the Interlink 402, but nearly all FSRs will be similar. Checking

More information

Project Report EMF DETECTOR

Project Report EMF DETECTOR Project Report EMF DETECTOR Adarsh Kumar (120260013) Yashwanth Sandupatla (120260022) Vishesh Arya (120260001) Indian Institute of Technology Bombay 1 Abstract Deflection instruments like voltmeters and

More information

Arlo Power Distribution Board Kit Rev B (#28996)

Arlo Power Distribution Board Kit Rev B (#28996) 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

Soldering Pi2Go Lite. Soldering the Line-Follower PCB

Soldering Pi2Go Lite. Soldering the Line-Follower PCB Soldering Pi2Go Lite First check which version of the main PCB you have. It is marked above the left motor "Pi2Go-Lite v1.x". There are minor changes to some parts of the build. v1.0 (initial release)

More information

SOFT-SHIELD 5000 Series Conductive Jacket over Foam EMI Gaskets

SOFT-SHIELD 5000 Series Conductive Jacket over Foam EMI Gaskets Seals Conductive elastomers Knitted wire mesh Conductive coatings, sealants, adhesives Cable shielding products EMI/ESD shielding laminates Shielded vents and windows Commercial and military EMI testing

More information

Chapter 2. Battery Charger and Base Assembly

Chapter 2. Battery Charger and Base Assembly Chapter 2 Battery Charger and Base Assembly 11 CHAPTER 2. BATTERY CHARGER AND BASE ASSEMBLY 2.1 Section Overview This Lab teaches students how to assemble a Tekbot, in the following steps: Describe the

More information