Guide for ESP32-Sense Development Kit

Size: px
Start display at page:

Download "Guide for ESP32-Sense Development Kit"

Transcription

1 Guide fr ESP32-Sense Develpment Kit 1. Overview The ESP32 tuch sensr develpment kit, ESP32-Sense Kit, is used fr evaluating and develping ESP32 tuch sensr system. ESP32-Sense Kit cnsists f ne mtherbard and multiple daughterbards. The mtherbard cntains a display unit, a main cntrl unit and a debug unit. The daughterbards have tuch electrdes in different cmbinatins r shapes, such as linear slider, wheel slider, matrix buttns and spring buttns, depending n the applicatin scenaris. Users can design and add their wn daughterbards fr special usage cases. The fllwing image shws the whle ESP32-Sense develpment kit.

2 2. Related Resurces Set up Sftware Envirnment ESP-IDF is the SDK fr ESP32. Yu can refer t Get Started fr hw t set up the ESP32 sftware envirnment. ESP-Prg is the debugger fr ESP32 that features dwnlad and debugging functins. ESP32 IT Slutin ESP32 IT Slutin prject is based n ESP-IDF and cntains multiple prjects. Please refer t Build system and dependency fr hw t set up and cmpile the prgrams. ESP32-Sense Prject cntains the prgrams fr ESP32-Sense Kit that can be dwnladed t the develpment bard t enable tuch sensr functin. Hardware Manuals Please refer t Espressif website fr the hardware resurces including schematics, PCB reference design, BOM and ther files. Please refer t ESP-Prg fr the intrductin t the debugger. Related Resurces Espressif website ESP32 prgramming guide: It hsts extensive dcumentatin fr ESP-IDF ranging frm hardware guides t API reference. ESP32 tuch sensr design: It is the reference design manual fr the ESP32 tuch sensr system. Technical Supprt If yu need technical supprt regarding ESP32-Sense Kit, please submit a new issue referring t the ESP32-Sense Prject. Hw t buy WeChat Accunt: espressif_systems Purchase cnsulting

3 3. Preparatin Install verlay If plastic is used fr the verlay, the recmmended thickness is 3 mm r less. Because air reduces tuch sensitivity, any air gaps between the daughterbard and verlay must be eliminated. Yu can use duble-sided adhesive tape t fill in the air gap. Fr the daughterbard with metal springs, 7 mm stud blts shuld be used t install the verlay. Install daughterbard Use a cnnectr t cnnect mtherbard with daughterbard. Yu can use fur 7 mm plastic stud blts t have the daughterbard steadily parallel t the mtherbard, as shwn n the image belw: Set ESP-Prg debugger ESP-Prg is used as the prgram dwnlad tl and pwer supply. ESP-Prg has tw sets f jumpers: IO0 jumper and pwer supply jumper. Chse 5V pwer supply fr the latter. IO0 can be used bth fr selecting bt mde (dwnlad mde r wrking mde) and as a tuch pin. As a result, it shuld be discnnected if used as a tuch pin in wrking mde. The image belw shws the settings fr ESP-Prg.

4 Cnnect ESP-Prg with mtherbard The ESP-Prg has a Jtag interface and a Prgram interface. Cnnect ESP-Prg and the mtherbard thrugh the Prgram interface. Dwnlad prgrams Run make menucnfig t cnfigure the cnfig settings fr ESP32-Sense Prject, as the screensht belw shws. Run make flash t dwnlad prgrams int the develpment bard.

5 Replace daughterbard ESP32 will detect the divided vltage f the vltage divider n the daughterbard when it is pwered n t identify different daughterbards. Re-pwer n the develpment bard after replacing the daughterbard. 4. Hardware Resurces 4.1 Mtherbard Functin Blck Diagram The image belws shws the functin blck diagram f the mtherbard.

6 Mtherbard Cmpnents The display unit includes three segment displays and an RGB circuit. The debug unit includes the ESP-Prg debugger interface. The main cntrl unit includes the ESP32 mdule. The mini USB is the pwer supply. Pwer Management System The mini USB and ESP-Prg can bth be the pwer supply fr ESP32-Sense Kit. They d nt interfere with each ther thanks t the prtectin dide. The mini USB can nly serve as the pwer supply, while ESP-Prg als supprts autmatic firmware dwnlading. The figure belw shws the schematics f the pwer management system.

7 Display Unit The display unit n the mtherbard can intuitively feedback tuch event. The three 7- segment displays shw the lcatin f the pad that is being tuched and the duratin f a tuch event. The segment displays are driven by CH455G chip, and cntrlled thrugh I2C interface. The RGB LED reflects the clrs when a tuch event ccurs. When a finger mves n the slider, the RGB LED will shw the change f clrs. The figure belw shws the schematics f the display unit:

8 4.2 Daughterbard Divided resistance The tuch electrdes are arranged in different cmbinatins depending n the applicatin scenari. Each daughterbard has a vltage divider that has a unique value. The prgram running n mtherbard reads the divider value thrugh ADC and thus each daughterbard can be identified. The vltage divider is shwn belw:

9 The divided resistance n the mtherbard is 10 KΩ. The table belw lists the divided resistance n each daughterbard. Daughterbard Divided resistance (Khm) ADC reading (Min) ADC reading (Max) Spring buttn Linear slider Matrix buttn Duplex slider Wheel slider

10 5. Applicatin Prgrams ESP32-Sense Prject within ESP32 IT Slutin repsitry cntains the applicatin prgrams fr ESP32-Sense Kit. The directry structure is shwn belw:. main evb_adc.c //Identifies different daughterbards thrugh ADC. Sets unique ADC threshld fr each daughterbard. evb.h //Cnfigures settings fr mtherbard, including tuch threshld,adc I/O,IIC I/O, etc. evb_led.cpp //Initializatin prgram f RGB LED. evb_seg_led.c //Driver fr digital tube. evb_tuch_buttn.cpp //Driver fr tuch buttn. evb_tuch_wheel.cpp //Driver fr wheel slider. evb_tuch_matrix.cpp //Driver fr matrix buttn. evb_tuch_seq_slide.cpp //Driver fr duplex slider. evb_tuch_slide.cpp //Driver fr linear slider. evb_tuch_spring.cpp //Driver fr spring buttn. Kcnfig.prjbuild main.cpp //Entry pint. Makefile sdkcnfig.defaults 5.1. Cnfigure Settings When using verlays f different thicknesses r materials, users need t reset the change rate f tuch readings n each channel, that is, the sensitivity. This parameter is calculated frm the pulse cunt value. The calculatin frmula is: (Nn-tuch value - Tuch value) / Nn-tuch value, where "Nn-tuch value" refers t the pulse cunt value when there is n tuch event, and "Tuch value" refers t the pulse cunt value when a tuch event ccurs. Users need t take a measurement and btain these tw values. When the system is initialized, the tuch threshld is autmatically calculated frm the change rate f tuch readings. The tuch threshld is directly prprtinal t the change rate. When the change rate is set, users can write it int evb.h file.

11 5.2. Dem Spring Buttn Matrix Buttn Linear Slider Wheel Slider

12 Duplex Slider it slutin/blb/master/dcuments/evaluatin_bards/esp32_sense_kit_guide_en.md#52 dem

VM1AT-R1 INDUSTRIAL MICROCONTROLLER

VM1AT-R1 INDUSTRIAL MICROCONTROLLER VM1AT-R1 INDUSTRIAL MICROCONTROLLER WARNING T avid permanent damage t integrated circuits yu may take precautins t discharge any static electricity frm yur bdy befre handling them. ASSEMBLY INSTRUCTIONS

More information

Enabling the Bluetooth Low Energy Direct Test Mode (DTM) with BlueNRG-MS

Enabling the Bluetooth Low Energy Direct Test Mode (DTM) with BlueNRG-MS DT0069 Design tip Enabling the Bluetth Lw Energy Direct Test Mde (DTM) with BlueNRG-MS By Salv Bnina Main cmpnents BlueNRG-MS Upgradable Bluetth Lw Energy netwrk prcessr SPBTLE-RF Very lw pwer mdule fr

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Cmp 541 Digital Lgic and Cmputer Design Prf. Mntek Singh Fall 2016 Lab Prject (PART A): Attaching a Display t the Prcessr

More information

BV4115. RF Packet Transmitter. Product specification. February ByVac 2007 ByVac Page 1 of 5

BV4115. RF Packet Transmitter. Product specification. February ByVac 2007 ByVac Page 1 of 5 Prduct Specificatin Prduct specificatin. February 2007 ByVac 2007 ByVac Page 1 f 5 Prduct Specificatin Cntents 1. Dcument Versins... 2 2. Intrductin... 2 3. Features... 2 4. Battery Life... 2 5. Blck Diagram...

More information

Altis Flight Manager. PC application for AerobTec devices. AerobTec Altis v3 User Manual 1

Altis Flight Manager. PC application for AerobTec devices. AerobTec Altis v3 User Manual 1 Altis Flight Manager PC applicatin fr AerbTec devices AerbTec Altis v3 User Manual 1 Table f Cntents Intrductin...3 Requirements...3 Installatin...3 Applicatin...3 USB Driver fr Altis v3 interface ALink...4.NET

More information

OV5640 Camera Board (B) USER MANUAL

OV5640 Camera Board (B) USER MANUAL OV5640 Camera Bard (B) OV5640 Camera Bard (B) USER MANUAL OVERVIEW The mdule OV5640 Camera Bard (B) cntains is a vide camera based n vide sensr OV5640 (CMOS), takes 5 Megapixel image in QSXGA mde (2592x1944),

More information

Lab2 Digital Weighing Scale (Sep 18)

Lab2 Digital Weighing Scale (Sep 18) GOAL Lab2 Digital Weighing Scale (Sep 18) The gal f Lab 2 is t demnstrate a digital weighing scale. INTRODUCTION The electrnic measurement f mass has many applicatins. A digital weighing scale typically

More information

Dry Contact Sensor DCS15 User Manual

Dry Contact Sensor DCS15 User Manual Dry Cntact Sensr DCS15 User Manual Help Versin updated till firmware 404i / SP456 Cpyright 2012, AKCess Pr C., Ltd.. Intrductin / What is a Dry Cntact Sensr The Dry Cntact sensr r DCS15 is a simple cnnectin

More information

High Level Design Circuit CitEE. Irere Kwihangana Lauren Mahle Jaclyn Nord

High Level Design Circuit CitEE. Irere Kwihangana Lauren Mahle Jaclyn Nord High Level Design Circuit CitEE Irere Kwihangana Lauren Mahle Jaclyn Nrd 12/16/2013 Table f Cntents 1 Intrductin. 3 2 Prblem Statement and Prpsed Slutin. 3 3 Requirements. 3 4 System Blck Diagram 4.1 Overall

More information

ECE 3829: Advanced Digital System Design with FPGAs A Term 2017

ECE 3829: Advanced Digital System Design with FPGAs A Term 2017 ECE 3829: Advanced Digital System Design with FPGAs A Term 2017 Lab 2- VGA display and Light Sensr interface Reprt due at start f class Friday September 15 th Use the prvided Ambient Light Sensr mdule

More information

idcv Isolated Digital Voltmeter User Manual

idcv Isolated Digital Voltmeter User Manual www.akcp.cm idcv Islated Digital Vltmeter User Manual Help Versin updated till firmware SP446 Cpyright 2011, AKCess Pr Limited Prvided by fficial AKCP-Distributr Didactum https://www.didactum-security.cm/en/

More information

Dry Contact Sensor

Dry Contact Sensor www.akcp.cm Dry Cntact Sensr Intrductin The Dry Cntact sensr is a simple cnnectin t burglar alarms, fire alarms r any applicatin that requires mnitring by the unit. Dry cntact sensrs are user definable

More information

TUTORIAL I ECE 555 CADENCE SCHEMATIC SIMULATION USING SPECTRE

TUTORIAL I ECE 555 CADENCE SCHEMATIC SIMULATION USING SPECTRE TUTORIAL I ECE 555 CADENCE SCHEMATIC SIMULATION USING SPECTRE Cadence Virtus Schematic editing prvides a design envirnment cmprising tls t create schematics, symbls and run simulatins. This tutrial will

More information

Application Note AN-2097 Evaluation Kit for the S7500 CW Tunable Laser

Application Note AN-2097 Evaluation Kit for the S7500 CW Tunable Laser Applicatin Nte AN-2097 Evaluatin Kit fr the S7500 CW Tunable Laser 1 Intrductin The evaluatin kit is intended t facilitate testing f Finisar s S7500 widely tunable laser, S7610 Integrable Tunable Laser

More information

OV5640 Camera Board (A) USER MANUAL

OV5640 Camera Board (A) USER MANUAL OV5640 Camera Bard (A) User Manual OV5640 Camera Bard (A) USER MANUAL OVERVIEW OV5640 Camera Bard (A) is a CMOS camera uses sensr OV5640, takes 5 Megapixel image in QSXGA mde (2592x1944), uses DVP data

More information

Damocles 2404i Manual

Damocles 2404i Manual Damcles 2404i Inputs 1 8 Each blue terminal is shared by tw inputs. POWER 12V supply (+U / GND) ETHERNET Link & Activity Inputs 17 24 Each blue terminal is shared by tw inputs. Cnfiguratin Default: DIP1=

More information

Electrical devices may only be mounted and connected by electrically skilled persons.

Electrical devices may only be mounted and connected by electrically skilled persons. Order N. : 5323 02 Operating instructins 1 Safety instructins Electrical devices may nly be munted and cnnected by electrically skilled persns. Serius injuries, fire r prperty damage pssible. Please read

More information

Processors with Sub-Microsecond Response Times Control a Variety of I/O. *Adapted from PID Control with ADwin, by Doug Rathburn, Keithley Instruments

Processors with Sub-Microsecond Response Times Control a Variety of I/O. *Adapted from PID Control with ADwin, by Doug Rathburn, Keithley Instruments PID Cntrl with ADwin Prcessrs with Sub-Micrsecnd Respnse Times Cntrl a Variety f I/O CHESTERLAND OH March 9, 2015 *Adapted frm PID Cntrl with ADwin, by Dug Rathburn, Keithley Instruments By Terry Nagy,

More information

Laboratory: Introduction to Mechatronics. Instructor TA: Edgar Martinez Soberanes Lab 1.

Laboratory: Introduction to Mechatronics. Instructor TA: Edgar Martinez Soberanes Lab 1. Labratry: Intrductin t Mechatrnics Instructr TA: Edgar Martinez Sberanes (eem370@mail.usask.ca) 2015-01-12 Lab 1. Intrductin Lab Sessins Lab 1. Intrductin Read manual and becme familiar with the peratin

More information

ELEC 7250 VLSI TESTING. Term Paper. Analog Test Bus Standard

ELEC 7250 VLSI TESTING. Term Paper. Analog Test Bus Standard ELEC 7250 VLSI TESTING Term Paper On Analg Test Bus Standard Muthubalaji Ramkumar 1 Analg Test Bus Standard Muthubalaji Ramkumar Dept. f Electrical and Cmputer Engineering Auburn University Abstract This

More information

E-Learning, DC drives DCS800 Hardware Options, part 1 Size D1 D4. ABB Group February 2, 2010 Slide 1 DCS800_HARDWARE_OPTIONS_01R0101

E-Learning, DC drives DCS800 Hardware Options, part 1 Size D1 D4. ABB Group February 2, 2010 Slide 1 DCS800_HARDWARE_OPTIONS_01R0101 E-Learning, DC drives DCS800 Hardware Optins, part 1 Size D1 D4 February 2, 2010 Slide 1 Objectives This training mdule cvers: Lcatin fr plug-in ptins Types f plug-in ptins Fiber ptic cnnectin bard DCS800

More information

Documentation of the PIC32 Pin Finder

Documentation of the PIC32 Pin Finder App. Versin: 1.1.1.120 Dcument Versin: 1.0 Dcument Create date: 2009-10-16 Dcument Update: 2009-10-19 22:37 Authr: B Gärdmark Cmpany: Spectrn System Develpment AB WEB: www.spectrn.us Cpyright 2009 All

More information

Some Safety Warnings

Some Safety Warnings Sme Safety Warnings 1. With the pwer supply pen and cnnected t AC mains (huse) pwer, there is the pssibility that yu may cntact AC mains (huse) vltage. Depending n the scenari, that can be fatal. 2. The

More information

RiverSurveyor S5/M9 & HydroSurveyor Second Generation Power & Communications Module (PCM) Jan 23, 2014

RiverSurveyor S5/M9 & HydroSurveyor Second Generation Power & Communications Module (PCM) Jan 23, 2014 SnTek, a Xylem brand 9940 Summers Ridge Rad, San Dieg, CA 92121-3091 USA Telephne (858) 546-8327 Fax (858) 546-8150 E-mail: inquiry@sntek.cm Internet: http://www.sntek.cm RiverSurveyr S5/M9 & HydrSurveyr

More information

PAPER SPACE AND LAYOUTS

PAPER SPACE AND LAYOUTS PAPER SPACE AND LAYOUTS There are tw distinct wrking envirnments in AutCAD namely: Mdel Space and Paper space. Prjects can be develped by either wrking in the mdel space thrugh the use f MVSETUP r PAPER

More information

RS232 Communication Between a Sunny Boy 2500U and a PC. Technical Note

RS232 Communication Between a Sunny Boy 2500U and a PC. Technical Note RS232 Cmmunicatin Between a Sunny By 2500U and a PC Technical Nte Revisin 1.5 July 8, 2003 Kent Sheldn Revisin Histry 1.5 July 8, 2003 Kent Sheldn Cntact update 20830 Red Dg Rad Grass Valley, CA 95945

More information

Lab 1 Load Cell Measurement System

Lab 1 Load Cell Measurement System BME/ECE 386 Lab 1 Lad Cell Measurement System GOALS Lab 1 Lad Cell Measurement System 1) Build and test a lad cell amplifier. 2) Write an Arduin prgram t: a. Acquire data frm a lad cell amplifier b. Cmpute

More information

PaperStream IP (TWAIN) change history

PaperStream IP (TWAIN) change history PaperStream IP (TWAIN) change histry Service Update 6 Versin 1.30.0.5032 Crrected issue: 1. Fixed the defect that Sftware Operatin Panel culd nt functin prperly r culd stp respnding when tw r mre scanners

More information

PreLab5 Temperature-Controlled Fan (Due Oct 16)

PreLab5 Temperature-Controlled Fan (Due Oct 16) PreLab5 Temperature-Cntrlled Fan (Due Oct 16) GOAL The gal f Lab 5 is t demnstrate a temperature-cntrlled fan. INTRODUCTION The electrnic measurement f temperature has many applicatins. A temperature-cntrlled

More information

Damocles 1208 MANUAL. Damocles Damocles 1208 Manual. Input status LED indicators. Inputs Not connected

Damocles 1208 MANUAL. Damocles Damocles 1208 Manual. Input status LED indicators. Inputs Not connected Damcles 1208 Damcles 1208 MANUAL Input status LED indicatrs Inputs 5 12 Nt cnnected DIP settings Default: DIP1:SETUP = Off DIP2:SAFE = Off Inputs 1 4 Output activatin LED indicatrs Outputs 1 8 (pen cllectrs)

More information

TROUBLESHOOTING GUIDE

TROUBLESHOOTING GUIDE TROUBLESHOOTING GUIDE Dcument revisin 1.3 Last revised: December 6, 2017 Recn Wireless Blckage and Flw Mnitr Trubleshting Guide 2014-2017 Intelligent Agricultural Slutins All Rights Reserved. Recn Wireless

More information

Lab 1 Load Cell Measurement System (Jan 09/10)

Lab 1 Load Cell Measurement System (Jan 09/10) BME/ECE 386 Lab 1 Lad Cell Measurement System GOALS Lab 1 Lad Cell Measurement System (Jan 09/10) 1) Test the lad cell amplifier. 2) Write an Arduin prgram t: a. Acquire data frm a lad cell amplifier b.

More information

Remote Control Learn Button Receiver Input Connections

Remote Control Learn Button Receiver Input Connections Remte Cntrl Learn Buttn Receiver Input Cnnectins Remte Cntrl LED Light Wi-fi/Factry Reset Buttn Receiver Output Cnnectin Heartbeat LED Light PRV Cnnectins Pwer Reset Buttn Pl / Treadmill Switch Flat Switch

More information

Dry Contact Sensor. Communications cable - RJ-45 jack to sensor using UTP Cat 5 wire. Power source: powered by the unit. No additional power needed.

Dry Contact Sensor. Communications cable - RJ-45 jack to sensor using UTP Cat 5 wire. Power source: powered by the unit. No additional power needed. Intrductin Dry Cntact Sensr The Dry Cntact sensr is a simple cnnectin t burglar alarms, fire alarms r any applicatin that requires mnitring by the unit. Dry cntact sensrs are user definable and can be

More information

TC 60 THERMOCOMPUTER TC 60. prog. start stop. Operating Instructions

TC 60 THERMOCOMPUTER TC 60. prog. start stop. Operating Instructions TC 60 prg start stp THERMOCOMPUTER TC 60 h C/h C Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing Curve...2 Checing

More information

Operating Instructions

Operating Instructions TC 60/8 THERMOCOMPUTER TC 60/8 temp / time s s temp / time k start stp Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing

More information

VIP-200. Point to Point Extension Configuration Quick Start Guide. Video over IP Extender and Matrix System

VIP-200. Point to Point Extension Configuration Quick Start Guide. Video over IP Extender and Matrix System VIP-200 Vide ver IP Extender and Matrix System Pint t Pint Extensin Cnfiguratin Quick Start Guide PureLink TM 535 East Crescent Avenue Ramsey, NJ 07446 USA Cntents What is in the bx... 3 Transmitter kit

More information

Dispatcher Control for MotoTRBO Capacity Plus Systems

Dispatcher Control for MotoTRBO Capacity Plus Systems Dispatcher Cntrl fr MtTRBO Capacity Plus Systems This tutrial prvides brief instructins t set up the dispatch cntrl ver MtTRBO Capacity Plus systems, using SmartPTT dispatch sftware. Bth cases are cnsidered:

More information

CAR ASYST - Quick Start Guide MAIN MENU

CAR ASYST - Quick Start Guide MAIN MENU fficially apprved by CAR ASYST - Quick Start Guide MAIN MENU Main menu The main menu f ur CAR ASYST APP is divided int 7 menu items. Belw yu will find a list f these items including a shrt descriptin.

More information

Owner s Manual Installation and Operating Instructions

Owner s Manual Installation and Operating Instructions Meitav-tec Ltd (Cntel grup) Tel: +972 (3) 962 6462 Fax: +972 (3) 962 6620 www.meitavtec.cm - supprt@meitavtec.cm ETN-24-P-1S Owner s Manual Installatin and Operating Instructins Please read this manual

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS Lad with min. 5 kg 405000090 405070090 INSTALLATION INSTRUCTIONS CONTENT: 1. Imprtant safety instructins. 2. Specificatins and main dimensins. 3. Parts included. 4. Installatin. 5. Adjusting the strke

More information

S-400 Series User Guide

S-400 Series User Guide S-400 Series User Guide temptimecrp.cm Ntices and Safety 1 Ntices and Safety 1.1 Disclaimer and limitatin f liability Temptime assumes n respnsibility fr any lss r claims by third parties which may arise

More information

Configuring the MSNSwitch For the LAN-Cell 3

Configuring the MSNSwitch For the LAN-Cell 3 Cnfiguring the MSNSwitch Fr the LAN-Cell 3 Technte LCTN3003 Prxicast, LLC 312 Sunnyfield Drive Suite 200 Glenshaw, PA 15116 1-877-77PROXI 1-877-777-7694 1-412-213-2477 Fax: 1-412-492-9386 E-Mail: supprt@prxicast.cm

More information

Spectracom GSG ecall Test Suite

Spectracom GSG ecall Test Suite 18-Dec-2017 GSG App Nte Spectracm GSG ecall Test Suite Table f Cntents 1. Intrductin... 1 2. Befre Starting the Test... 2 3. Running the ecall Test Suite... 4 4. Psitin Errr Tests 2.2.2-2.2.4... 10 5.

More information

Universal input/output controller

Universal input/output controller Embedded autmatin equipment (Shanghai) Limited Rm 305. Twer B.NO.18Talin rad Pudng District, Shanghai Phne: +86-21-51090839/50750355, fax: +86-21-50758598, e-mail: sales@stammkn.cm Universal input/utput

More information

Maxon Motor & Motor Controller Manual

Maxon Motor & Motor Controller Manual Maxn Mtr & Mtr Cntrller Manual Nte: This manual is nly fr use fr the Maxn mtr and cntrller utlined belw. This infrmatin is based upn the tutrial vides fund nline and thrugh testing. NOTE: Maximum Permitted

More information

ELECTRICAL CIRCUITS LABORATORY II EEE 209 EXPERIMENT-6. Operational Amplifiers II

ELECTRICAL CIRCUITS LABORATORY II EEE 209 EXPERIMENT-6. Operational Amplifiers II ADANA SCIENCE AND TECHNOLOGY UNIVERSITY ELECTRICAL ELECTRONICS ENGINEERING DEPARTMENT ELECTRICAL CIRCUITS LABORATORY II EEE 209 EXPERIMENT-6 Operatinal Amplifiers II OPERATIONAL AMPLIFIERS Objectives The

More information

Section HH - 1. Troubleshooting & Repair. - Circuit Breaker & Fuse Location - Block Diagrams - Troubleshooting Charts

Section HH - 1. Troubleshooting & Repair. - Circuit Breaker & Fuse Location - Block Diagrams - Troubleshooting Charts Sectin Trubleshting & Repair - Circuit Breaker & Fuse Lcatin - Blck Diagrams - Trubleshting Charts HH - Circuit Breaker And Fuse Lcatin 0 Amp Main Circuit Breaker F 60-A F F6 F F Fig. G - Uninterruptible

More information

Ten-Tec Model RX-366 Subreceiver 565/566 Subreceiver Installation and Operation Manual-74467

Ten-Tec Model RX-366 Subreceiver 565/566 Subreceiver Installation and Operation Manual-74467 Ten-Tec Mdel RX-366 Subreceiver 565/566 Subreceiver Installatin and Operatin Manual-74467 Tls required: Sldering irn r heat gun (fr shrinking heat shrink tubing) Number 1 Phillips screw driver Number 2

More information

Wireless Bridge Module for DXR2.E

Wireless Bridge Module for DXR2.E Technical Specificatin Sheet Dcument N. A6V11470500 July 31, 2018 Wireless Bridge Mdule fr DXR2.E Descriptin A wireless bridge cnnects tw wired netwrks tgether ver Wi-Fi utilizing a Wireless Access Pint.

More information

Photoshop Elements: Color and Tonal Correction Basics

Photoshop Elements: Color and Tonal Correction Basics Phtshp Elements: Clr and Tnal Crrectin Basics Cntrast Lighten Phtshp Elements: Clr and Tnal Crrectin Basics 1 Sharpen Expsure Phtshp Elements: Clr and Tnal Crrectin Basics 2 Highlights and Shadws All key

More information

KIP Cost Center User Guide

KIP Cost Center User Guide - 1 - KIP Cst Center User Guide Cntents 1 Intrductin... 3 1.1 Requirements:... 4 1.2 Supprted Operating Systems... 4 2 Installatin... 5 3 Setup... 8 4 KIP Cst Center Main Screen Print Mde... 12 4.1 Lading

More information

CURRENT AND VOLTAGE SENSORS. General Information. Overhead Current and Voltage Monitoring Insulators (CVMI)

CURRENT AND VOLTAGE SENSORS. General Information. Overhead Current and Voltage Monitoring Insulators (CVMI) CURRENT AND VOLTAGE SENSORS General Infrmatin Overhead Current and Vltage Mnitring Insulatrs (CVMI) Many electric utilities are using Distributin Autmatin (DA) fr bth verhead and undergrund systems. DA

More information

3DPIXA System Requirements

3DPIXA System Requirements 3DPIXA System Requirements CD40130 Versin 7 Table f Cntents CD40130 Versin 7 1 1 Abut Chrmasens 3 1.1 Cntact Infrmatin 3 1.2 Supprt 3 2 Hardware Requirements 4 2.1 Framegrabber 5 2.1.1 Qualified Framegrabbers

More information

Nordic ID AR82 User Guide Version 1.2 NORDIC ID AR82 USER GUIDE

Nordic ID AR82 User Guide Version 1.2 NORDIC ID AR82 USER GUIDE NORDIC ID AR82 USER GUIDE TABLE OF CONTENTS GETTING STARTED... 4 1.1. GENERAL... 4 1.2. AVAILABLE VARIANTS... 4 1.3. AVAILABLE ACCESSORIES... 4 1.4. PACKAGE CONTENT... 4 1.5. FEATURES AND CONNECTORS OVERVIEW...

More information

LED wdali MC Switch Input Modul Set - User Manual

LED wdali MC Switch Input Modul Set - User Manual LED wli MC Switch Input Mdul Set - User Manual Buttn mdul (Transmitter) 1. Prduct Descriptin Item N.: LC-004-302 Receive mdul (Receiver) The wli MC Switch Input Mdul Set is a cmpact wireless Multi Cntrl

More information

NanoDrop One/One C Printing

NanoDrop One/One C Printing MARK S100 INSTRUCTIONS NanDrp One/One C NanDrp One/One C Printing Fr use with versin 1.4 f lcal cntrl sftware All Therm Scientific NanDrp One/One C instruments with versin 1.4 f lcal cntrl sftware can

More information

1.12 Equipment Manager

1.12 Equipment Manager Mdule 1 Categry 1 1.12 Equipment Manager Functin f the windw The windw is the central data file fr the Kntrl Pr and cllects the main data fr fees f an bject that t be used in this prject. The Equipment

More information

Fig 1 System architecture. As shown in Figure 1, AUV system could be separated in 3 main blocks:

Fig 1 System architecture. As shown in Figure 1, AUV system could be separated in 3 main blocks: AUV System Descriptin Railway usage authrizatin system (called AUV, by its abbreviatin in Spanish) is a Safe Train Cntrl (STC) system prvided by Alta Rail Technlgy (ART). AUV system s structure is based

More information

Acceptance and verification PCI tests according to MIL-STD

Acceptance and verification PCI tests according to MIL-STD Acceptance and verificatin PCI tests accrding t MIL-STD-188-125 Bertrand Daut, mntena technlgy V1 - August 2013 CONTENTS 1. INTRODUCTION... 1 2. DEFINITIONS... 1 3. SCHEMATIC OF THE TEST SETUP WITH USE

More information

Mobile LightSync Link App Programing Guide Revision 2

Mobile LightSync Link App Programing Guide Revision 2 Mbile LightSync Link App Prgraming Guide Revisin 2 Overview: The Mbile LightSync Link App emulates LightSync input devices used t cntrl ILC relays and dimmer utputs frm an Andrid r Apple mbile device.

More information

Application Note. Lock-in Milliohmmeter

Application Note. Lock-in Milliohmmeter Applicatin Nte AN2207 Lck-in Millihmmeter Authr: Oleksandr Karpin Assciated Prject: Yes Assciated Part Family: CY8C24xxxA, CY8C27xxx PSC Designer Versin: 4.1 SP1 Assciated Applicatin Ntes: AN2028, AN2044,

More information

Operating Instructions

Operating Instructions TC 40 THERMOCOMPUTER TC 40 start stp Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing Curve...2 Checing the Prgramme

More information

Martel LC-110H Loop Calibrator and HART Communications/Diagnostics

Martel LC-110H Loop Calibrator and HART Communications/Diagnostics Martel LC-110H Lp Calibratr and HART Cmmunicatins/Diagnstics Abstract Martel Electrnics Crpratin This white paper describes the basic functins f HART cmmunicatins and the diagnstic capability f the Martel

More information

Automatic Number Plate Recognition

Automatic Number Plate Recognition Release Ntes Autmatic Number Plate Recgnitin Versin 14.2.0 Release Ntes Revisin 0 This dcument describes new features and reslved issues fr Autmatic Number Plate Recgnitin 14.2.0. Yu can retrieve the latest

More information

Pre-Installation Preparation Job Aid

Pre-Installation Preparation Job Aid Summary This Jb Aid cvers: ViaSat Installatin Standards Equipment Necessary fr ViaSat Service installatin Installatin Tls Safety: IDU Safety: ODU Safety: Persnal Safety: Wrking Arund Electricity Safety:

More information

LINE POWER SUPPLIES Low-Loss Supplies for Line Powered EnOcean Modules

LINE POWER SUPPLIES Low-Loss Supplies for Line Powered EnOcean Modules Lw-Lss Supplies fr Line Pwered EnOcean Mdules A line pwer supply has t ffer the required energy t supply the actuatr electrnic and t supply the EnOcean TCM/RCM radi cntrl mdule. This paper cntains sme

More information

Lab 5 Blood Pressure Measurement System (Feb 13/14)

Lab 5 Blood Pressure Measurement System (Feb 13/14) GOAL Lab 5 Bld Pressure Measurement System (Feb 3/4) Demnstrate a system that measures mean arterial pressure (MAP). OBJECTIVES ) Build the electrnics t measure the air pressure frm a pressure cuff. 2)

More information

Security Exercise 12

Security Exercise 12 Security Exercise 12 Asynchrnus Serial Digital Baseband Transmissin Discussin: In this chapter, yu learned that bits are transmitted ver a cpper wire as a series f vltage pulses (a prcess referred t as

More information

CATA Composer R2016 Fact Sheet. Add a New Dimension to Your Product Communications

CATA Composer R2016 Fact Sheet. Add a New Dimension to Your Product Communications CATA Cmpser R2016 Fact Sheet Add a New Dimensin t Yur Prduct Cmmunicatins Versin 1.0-8/11/2015 Table f Cntents 1. CATIA Cmpser: VALUE AT A GLANCE... 3 2. CATIA Cmpser: Overview... 4 2.1. Immediate Prductivity

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS Lad: Min. 5 kg Max. 100 kg TS1000A TS700A INSTALLATION INSTRUCTIONS CONTENT: 1. Imprtant safety instructins. 2. Specificatins and main measures. 3. Parts included. 4. Installatin. 5. Adjusting the strke

More information

NORDIC ID SAMPO S2 NORDIC ID SAMPO S2 ONE- SERIES

NORDIC ID SAMPO S2 NORDIC ID SAMPO S2 ONE- SERIES NORDIC ID SAMPO S2 NORDIC ID SAMPO S2 ONE- SERIES USER GUIDE TABLE OF CONTENTS GETTING STARTED... 4 1.1. GENERAL... 4 1.2. DIFFERENCES BETWEEN NORDIC ID SAMPO S2 AND NORDIC ID SAMPO S2 ONE-SERIES... 4

More information

MrX Sound Board. for the ZX81 from Sinclair.

MrX Sound Board. for the ZX81 from Sinclair. MrX Sund Bard fr the ZX8 frm Sinclair Manual fr users and prgrammers www.eightbits.de Date: 29..22 CONTENT. System Requirements... 4 2. MrX Sund Card... 5 3. MrX Expansin Bus K3... 6 4. Optinal 3,5mm jacks

More information

DXF2DAT 3.0 Professional Designed Computing Systems 848 W. Borton Road Essexville, Michigan 48732

DXF2DAT 3.0 Professional Designed Computing Systems 848 W. Borton Road Essexville, Michigan 48732 Prgram Infrmatin 1 DXF2DAT 3.0 Prfessinal Designed Cmputing Systems 848 W. Brtn Rad Essexville, Michigan 48732 Cntact: (989) 892-4376 website: http://www.famwrk.net General Infrmatin: inf@famwrk.net Technical

More information

Excel Step by Step Instructions Creating Lists and Charts. Microsoft

Excel Step by Step Instructions Creating Lists and Charts. Microsoft Infrmatin Yu Can Enter in a Wrksheet: Labels: Any type f text r infrmatin nt used in any calculatins. Labels are used fr wrksheet headings and make wrksheets easy t read and understand. Labels can als

More information

GANTOM iq AND iqx USER GUIDE

GANTOM iq AND iqx USER GUIDE GANTOM iq AND iqx USER GUIDE The Gantm iq is the wrld s smallest gb prjectr with zm and fcus fr prfessinal lighting applicatins. The Gantm iqx features the same amazing ptics f the Gantm iq but adds integrated

More information

RF MONO 8.2MHz RF MONO HIGH FREQUENCY PCB CONNECTION. Please see the last section in this document. FOREWARDS

RF MONO 8.2MHz RF MONO HIGH FREQUENCY PCB CONNECTION. Please see the last section in this document. FOREWARDS RF MONO 8.2MHz PCB CONNECTION Please see the last sectin in this dcument. FOREWARDS This user guide cntains basic infrmatin n hw t adjust ur RF Mn Antenna System SP82 and btain its best perfrmance pssible.

More information

Human Finger Twitch Experiment Using Finger Twitch Transducer

Human Finger Twitch Experiment Using Finger Twitch Transducer Updated 5.17.06 BSL PRO Lessn H06: Human Finger Twitch Experiment Using Finger Twitch Transducer This PRO lessn describes hardware and sftware setup f the BSL PRO System t recrd and measure the finger

More information

Xerox 8160/8142 Wide Format Color

Xerox 8160/8142 Wide Format Color PRODUCT RANGE / POSITIONING The Xerx 8142/8160 Slutin Printer is a thermal inkjet printing system intended fr use in a prductin envirnment prducing graphical cntent, including Psters, POP, signage, etc.

More information

IntesisBox IS-IR-KNX-1i v1.0. User's Manual Issue Date: 06/2017 r1.0 eng

IntesisBox IS-IR-KNX-1i v1.0. User's Manual Issue Date: 06/2017 r1.0 eng IntesisBx IS-IR-KNX-1i v1.0 User's Manual Issue Date: 06/2017 r1.0 eng IntesisBx KNX IR Universal AC Intesis Sftware S.L.U. 2017 All Rights Reserved. Infrmatin in this dcument is subject t change withut

More information

GANTOM iq AND iqx USER GUIDE

GANTOM iq AND iqx USER GUIDE GANTOM iq AND iqx USER GUIDE The Gantm iq is the wrld s smallest gb prjectr with zm and fcus fr prfessinal lighting applicatins. The Gantm iqx features the same amazing ptics f the Gantm iq but adds integrated

More information

PaperStream IP (TWAIN x64) change history

PaperStream IP (TWAIN x64) change history PaperStream IP (TWAIN x64) change histry Service Update 7 Versin 1.56.1 Crrected issue: 1. Fixed the prblem that scanning failed when using the scanner thrugh PaperStream IP Net. Versin 1.50.0.6382 New

More information

Lab 3 ECG System GOALS GENERAL GUIDELINES REQUIRED MATERIALS LAB ACTIVITIES. BME/ECE 386 Lab 3 Winter 2018

Lab 3 ECG System GOALS GENERAL GUIDELINES REQUIRED MATERIALS LAB ACTIVITIES. BME/ECE 386 Lab 3 Winter 2018 GOALS Lab 3 ECG System 1) Build and test the signal cnditining electrnics fr an ECG system. 2) Develp the Arduin and MATLAB data acquisitin system. 3) Recrd an ECG wavefrm frm yurself. GENERAL GUIDELINES

More information

AIR CONDITIONER REMOTE CONTROLLER ILLUSTRATION CS406-R51E

AIR CONDITIONER REMOTE CONTROLLER ILLUSTRATION CS406-R51E AIR CONDITER REMOTE CONTROLLER ILLUSTRAT CS406-R5E 00550905 0009 Thank yu very much fr purchasing ur air cnditiner. Please read this wner's manual carefully befre using yur air cnditiner. CONTENTS Handling

More information

Super ABC Plug-in kit for Pacman or Ms Pacman

Super ABC Plug-in kit for Pacman or Ms Pacman Super ABC Plug-in kit fr Pacman r Ms Pacman This page is a technical reference fr thse wh wn the SUPER ABC kit manufactured by Tw Bit Scre during the 1990's. This prduct is n lnger available. Under the

More information

Lab3 Audio Amplifier (Sep 25)

Lab3 Audio Amplifier (Sep 25) GOAL Lab3 Audi Amplifier (Sep 25) The gal f Lab 3 is t demnstrate an audi amplifier based n an p amp and ttem-ple stage. OBJECTIVES 1) Observe crssver distrtin in a Class B ttem-ple stage. 2) Measure frequency

More information

MiLAB. Version. User Manual. Copyright 2016 Fourier Education

MiLAB. Version. User Manual. Copyright 2016 Fourier Education MiLAB Versin User Manual Cpyright 2016 Furier Educatin Table f Cntents Intrductin... 4 Installing the Sftware n an ios device... 4 Installing the Sftware n an Andrid device... 4 Multilingual MiLAB... 5

More information

SolarEdge Built-in Revenue Grade Meter Troubleshooting

SolarEdge Built-in Revenue Grade Meter Troubleshooting SlarEdge Built-in Revenue Grade Meter Trubleshting Versin 1.0 Cntents Trubleshting Meter Cnnectin 3 Cmmunicatin Status Screen Trubleshting 3 Device Type and Prtcl are cnfigured incrrectly 3 Number f devices

More information

Troubleshooting Guide StarFire Satellite Changes

Troubleshooting Guide StarFire Satellite Changes Trubleshting Guide StarFire Satellite Changes This guide is updated t reflect the sftware frm NavCm which is related t the StarFire satellite and frequency changes. The mst recent versin f sftware fr bth

More information

Application for Drive Technology

Application for Drive Technology Applicatin fr Drive Technlgy MICROMASTER 4 Applicatin Descriptin Warranty, Liability and Supprt 1 Warranty, Liability and Supprt We d nt accept any liability fr the infrmatin cntained in this dcument.

More information

Ultracom for Apple ios (2.X.X >) Printable user manual

Ultracom for Apple ios (2.X.X >) Printable user manual 30.8.2018 Ultracm fr Apple ios (2.X.X >) Printable user manual Table f cntents 1. General... 3 1.1 General inf... 3 1.2 Ultracm subscriptin and additinal services... 3 1.3 Operatr settings... 3 1.4 General

More information

Electrical devices may only be mounted and connected by electrically skilled persons.

Electrical devices may only be mounted and connected by electrically skilled persons. 2-gang Art. N. : HS2 RF 4-gang Art. N. : HS4 RF Operating instructins 1 Safety instructins Electrical devices may nly be munted and cnnected by electrically skilled persns. Serius injuries, fire r prperty

More information

Figure 1: View, connection compartment closed

Figure 1: View, connection compartment closed Radi Management Art. N. : 2700AP Operating instructins 1 Safety instructins Electrical equipment may nly be installed and fitted by electrically skilled persns. Serius injuries, fire r prperty damage pssible.

More information

Using the Laser Cutter

Using the Laser Cutter Using the Laser Cutter Prerequisites Befre yu will be allwed t use the laser cutter, yu must cmplete these three steps: 1. Yu must have cmpleted the Laser Cutter training at Cyberia 2. Yu must schedule

More information

WS-400 BASE STATION FOR WIRELESS INTERCOM WITH FOUR TX/RX MODULES USER MANUAL

WS-400 BASE STATION FOR WIRELESS INTERCOM WITH FOUR TX/RX MODULES USER MANUAL WS-400 BASE STATION FOR WIRELESS INTERCOM WITH FOUR TX/RX MODULES USER MANUAL Issue February 2011 ASL Intercm BV DESIGNED AND MANUFACTURED BY: ASL INTERCOM BV ZONNEBAAN 42 3542 EG UTRECHT THE NETHERLANDS

More information

SolarEdge. StorEdge Interface Installation Guide. For the S1/S2 StorEdge Interface with LG Chem Batteries and Single Phase non-hd-wave Inverters

SolarEdge. StorEdge Interface Installation Guide. For the S1/S2 StorEdge Interface with LG Chem Batteries and Single Phase non-hd-wave Inverters SlarEdge StrEdge Interface Installatin Guide Fr the S1/S2 StrEdge Interface with LG Chem Batteries and Single Phase nn-hd-wave Inverters Fr Eurpe, APAC, Australia & Suth Africa Versin 1.4 Disclaimers Disclaimers

More information

Puget Sound Company Overview. Purpose of the Project. Solution Overview

Puget Sound Company Overview. Purpose of the Project. Solution Overview Puget Sund Cmpany Overview Puget Sund Energy is Washingtn State s largest and ldest energy utility, serving nearly 1 millin electric custmers and mre than 650,000 natural gas custmers, primarily within

More information

Hospital Task Scheduling using Constraint Programming

Hospital Task Scheduling using Constraint Programming Hspital Task Scheduling using Cnstraint Prgramming Authr: Chaman Chahal Supervisr: Dr. P. Bse, Schl f Cmputer Science Organizatin: Carletn University Curse: COMP4905 Date: Dec. 11, 2012 1 Abstract Hspitals

More information

Sci. Technol. Arts Res. J., Oct-Dec 2015, 4(4):

Sci. Technol. Arts Res. J., Oct-Dec 2015, 4(4): DOI: http://dx.di.rg/10.4314/star.v4i4.20 ISSN: 2226-7522 (Print) and 2305-3372 (Online) Science, Technlgy and Arts Research Jurnal Sci. Technl. Arts Res. J., Oct-Dec 2015, 4(4): 131-137 Jurnal Hmepage:

More information

EE 311: Electrical Engineering Junior Lab Phase Locked Loop

EE 311: Electrical Engineering Junior Lab Phase Locked Loop Backgrund Thery EE 311: Electrical Engineering Junir Lab Phase Lcked Lp A phase lcked lp is a cntrlled scillatr whse instantaneus frequency is dynamically adjusted thrugh multiplicative feedback and lw

More information