Wcapacitive-touch controls for

Size: px
Start display at page:

Download "Wcapacitive-touch controls for"

Transcription

1 Adding a Capacitive-Touch User Interface With Resources Already Present In Your System JONATHAN DILLON, MICROCHIP TECHNOLOGY INC. For many systems, the building blocks for implementing capacitive sensing, as either a proximity sensor or a button, are already present in the peripherals of a microcontroller, and these resources may currently be unused. This Article will discuss the methods for adding a capacitive-touch user interface with resources already present in your system: ith your embedded system already containing a microcontroller, you may be able to replace buttons and proximity sensors with Wcapacitive-touch controls for minimal expense, or even cost savings. Capacitive-touch user interfaces have become popular for modern applications because of their aesthetically pleasing, sleek controls; the fact that they do not have moving parts, allows the system to be sealed from the elements; and because they enable high tech control panels. However, the implementation of capacitive-touch user interfaces has been regarded as a mysterious art. For many systems, the building blocks for implementing capacitive sensing, as either a proximity sensor or a button, are already present in the peripherals of a microcontroller, and these resources may currently be unused. This Article will discuss the following methods for adding a capacitive-touch user interface with resources already present in your system: 1. Capacitive sensing using just the MCU s internal Analog-to-Digital Converter () 2. Measuring capacitance using an internal precision current source and the 3. Using the capacitive-sensing circuitry embedded into the I/O pins of a number of microcontrollers and onboard counter/timers. The Article will also explain the software handling required to overcome noise and other environmental issues, as well as methods for lowering power consumption when capacitive touch is used to turn systems on and off. Some of the design techniques required for implementing reliable capacitive touch sensing will also be covered. Introduction Capacitive-touch-sensing user interfaces have grown in popularity, due to the fact that they offer sleek, single-panel controls which, beyond their stylish design aspects, offer increased reliability and robustness. The lack of moving parts in capacitivetouch-sensing user interfaces prevents contact wear or corrosion and mechanical failure of push buttons, which improves product life. The ability to sense touch through materials allows panels to be sealed, protecting internal electronics from harsh environments and with greater durability than membrane technology. However, capacitive touch is not a purely binary signal, unlike a mechanical button; but instead, capacitive touch is an interpretation of an analog signal. As capacitive-touch technology does not require a direct electrical connection, but instead senses through material, it can also be used as a proximity sensor for user interfaces that react to users approaching the interface, rather than touching it. With many systems and user-interface control circuits already containing a microcontroller, implementing a capacitive user interface may lower system costs and component count. Buttons, sliders and dials can be replaced by capacitive sensors, which may be simple as conductive pads on the circuit board. These can essentially cost nothing while bringing far greater reliability. Capacitive touch functions when the user presses the surface of the panel, creating a capacitor to ground, where one plate is a conductive pad on the circuit board and the other is the user s finger. The conductive pad also has parasitic capacitance, as

2 Fig. 1. Sensor Capacitance do the circuit traces that connect it to the microcontroller. This parasitic capacitance can vary due to environmental changes, such as those associated with temperature and humidity. As these two capacitances are in parallel, as seen in Figure 1, we cannot simultaneously measure them. The capacitance created by a user s finger is dependant upon the area of the plate and finger, as well as the thickness and dielectric of the panel material, as given in Equation 1. C f = å å A 0 r d Equation 1: Capacitance of Parallel Plates C f is the capacitance created by the user s finger e0 is the permittivity of free space, er is the dielectric constant of the material between the two plates A is the overlapping area of the two plates d is the separation between the two plates The larger the capacitance created, the easier it is to detect a touch or sense proximity. From Equation 1, we can discern that the key factors in the capacitance created are the material selected for the user-interface panel and its thickness. The material choice determines the dielectric, and the thickness determines the separation between the user s finger and the conductive pad. Enlarging the area of the conductive pad on the board is only effective up to the area of the user s finger, since it is the overlapping area that is important. However, for proximity sensing, the conductive pad may be sized to couple with a user s hand, and the increased area improves the sensing range. For mechanical reasons, such as bracing ribs on the interface panel, it may not be possible to adjacently mount the circuit board. This can be overcome by mounting a spring on the circuit board instead of a conductive pad. The spring should press tightly against the button area on the interface panel, bridging the gap between it and the circuit board. The user s finger then couples to the spring through the panel. This method minimizes the capacitive-plate separation and avoids an airgap, which can significantly diminish responsiveness. A capacitive-touch interface continually measures the capacitance of the conductive pad and tracks the gradual environmental changes in parasitic capacitance, thus keeping an internal estimate for use in determining when a touch has occurred, which induces a frequency change in capacitance. Measurement Methods Methods suitable for a microcontroller to measure the capacitance of the conductive pad are: Capacitive Voltage Divider Charge Time Measurement Capacitive Sensing Module All three methods require no external components; however they do place some requirements on the microcontroller to measure and interpret the capacitance. Capacitive Voltage Divider This method requires a microcontroller with an internal Analog-to-Digital Converter (), which is already a common requirement for many systems, and no other features of the microcontroller. This method uses the internal holding capacitor of the with the capacitance of the conductive sensing pad on the circuit board to create a voltage, which is dependant upon the capacitance of the sensor. This voltage is then measured using the and handled by software. In normal operation, when performing an analogto-digital conversion, the analog mux in Figure 2-1 is used to select and measure the voltage on the pin of the microcontroller, referred to as the selected channel. The holding capacitor is allowed to charge to the voltage on the pin the acquisition I/O or Analog inputs Analog mux Sampling switch VCHOLD CHOLD - Holding capacitor Fig Analog Channel and Circuitry in a

3 time, and then the sampling switch is opened and the creates a digital representation of the voltage across the holding capacitor. The pins of the microcontroller can also be configured as digital I/O while they are selected by the analog mux, which allows us to charge and discharge the holding capacitor to the power rails. This measurement method requires a number of steps. The timing of some steps can be critical, as capacitors exhibit leakage and delay will cause readings to drift. i) To initialize the system for a measurement, we need to appropriately charge and discharge the capacitors in our system. By using the analog mux to select an unused pin and configure it as an output driven high, we can charge the internal holding capacitor. Meanwhile, we need to ensure that the sensor is uncharged. Thus, we configure the connected pin as an output driven low, which grounds the sensor. The states of the analog mux and outputs can be seen in Figure 2-2. ii) Once the sensor capacitance has been discharged and the holding cap has charged to the positive supply voltage, the output drive on the pin VCHOLD CHOLD - Fig. 2-2: CVD Measurement Initialization State connected to the sensor is disabled, as shown in Figure 2-3. At this time, the line to the capacitor is floating, and the capacitor may acquire some charge through pin or board leakage. As a result, this stage needs to be kept as short as possible. iii) The pin connected to the sensor is selected using the analog mux, which places the holding capacitor in parallel to the sensor. The holding capacitor was charged to VDD, while the sensor is CHOLD Fig. 2-3: Sensor no longer discharged - VCHOLD completely discharged. As a result, current flows from the holding capacitor to the capacitive sensor. The analog mux allows for bi-directional current flow, though its impedance does cause some losses. iv) After allowing sufficient time for the system to stabilize, an analog-to-digital conversion is initiated that opens the sampling switch, as seen in CHOLD - VCHOLD Fig. 2-4: Sensor Capacitance and Holding Capacitor in Parallel Figure 2-1. The voltage across the holding capacitor is then measured. This stabilization time is very short, and a conversion can usually be started on the following instruction. The voltage across the holding capacitor is dependant upon the capacitance of the sensor, which is the sum of its parasitic capacitance and of the user s finger, if present. This leads to the below relationship, with the voltage measured by the. C Equation 2-1: hold V Chold = X V C hold C p C dd Voltage across f Holding Capacitor VChold is the voltage measured by the is the supply voltage to the microcontroller Chold is the capacitance of the holding capacitor, which is 10pF for the device tested Cp is the parasitic capacitance of the sensor Cf is the capacitance created by a finger press From the equation, we can see that the additional capacitance of a finger press will cause a reduced voltage on the holding capacitor. This translates as a lower result from the. The resolution of the readings is governed by the s resolution. For this reason, a 10-bit is recommended. A lower-resolution can be used, but it will require a greater change in capacitance, which typically requires less plate separation and a thinner interface panel. To increase the resolution, conversions can be performed using a lower reference than the power rails, since the voltage measured is typically much

4 Untouched Touched Sampled Fig. 2-5: Voltage across the Sensor lower. This reference change will increase the voltage resolved per bit, but care needs to be taken to avoid saturation. Saturation is when the voltage being converted exceeds the reference voltage, and the can only respond with its maximum output code. As capacitive measurements are very fast, typically µs, the sensor can be oversampled to improve resolution. The prior text discussed charging the holding capacitor with an unused pin. However, if multiple capacitive-touch sensors are to be measured, the pin used for another sensor may temporarily be employed for charging the holding capacitor. The sensor for that input is not currently being measured and thus can be driven high, as the capacitances involved are small, and so is the output impedance of a digital output. Any internal references to the may also be used to charge the holding capacitor. Charge Time Measurement Some microcontrollers incorporate a constant current source that can be used to charge the sensor s capacitance for a fixed period and then measure the voltage developed, as shown in Figure 2-6. The additional capacitance of a user s finger coupling to the sensor will reduce the voltage being measured by the. V is the voltage measured by the i is the current from the constant-current source tcharge is the fixed time period that the sensor is charged Chold is the capacitance of the holding capacitor, which is 10pF for the device tested Begin Charge Sample Fig. 2-6: Charge Time Measurement Unit (CTMU) Voltage across Sensor V = Cp is the parasitic capacitance of the sensor Cf is the capacitance created by a finger press This implementation uses the analog channelselect mux of the, as shown in figure 2-7, to select different pins of the microcontroller. This allows it to scan multiple sensors, and the holding capacitor is charged in parallel to the sensor capacitance to avoid creating a capacitive voltage divider. Before the current source can be enabled, the capacitor s charge needs to be a known value. Thus, it is grounded through an internal gate in the microcontroller to ensure it is completely discharged. The current can be adjusted in software to give a fast charging time, thus allowing rapid measurements for the scanning of multiple sensors. The constant-current source is implemented on a number of Microchip higher pin count microcontroller, which have many analog channels allowing many capacitive sensors to be implemented. Sensor 0 Sensor 15 i x t E q u a t i o n 2-2 : charge Voltage Developed C hold C p C f across Sensor AN0 AN15 Current Source CTMU Fig. 2-7: Circuitry and Current Source A/D Conversion Trigger Capacitive Sensing Module Several newer general-purpose microcontrollers include a capacitive-sensing module that incorporates specific circuitry for capacitive sensing. It includes a large analog mux, which allows multiple capacitive sensors to be scanned for multi-button interfaces and uses a pair of internal counter timers, in addition to the CSM module. The module uses internal constant-current sources, and sinks to alternatively charge and discharge the sensor capacitance based off a lower and upper trip point, causing the waveform seen in Figure 2-9. The switching between the current source and sink is handled automatically by the module, and the

5 charge/discharge period is dependant on the sensor capacitance, where an increase in the capacitance will increase this time. To measure the frequency of the waveform, it is used to provide a clock signal for a digital logic counter/timer. By clearing and enabling the counter for a specific time window and reading its Sensor 0 Fig. 2-8: CSM Connections and Resources ending value, we know how many oscillations occurred in that time period. An increase in capacitance, such as from a press, lowers the oscillation frequency leading to less counts being recorded, as seen in Figure The time window period can be controlled by another counter, which can also disable the oscillation count automatically to allow the processor to handle other tasks. The time window can also be provided using the V 2 V 1 CPS0 CPS15 Fig. 2-9: CSM Sensor Waveform Cap Sense Module (Oscillator) Frequency Capture TMR1 TMR0 TMR2 oscillator from the Watchdog supervisor timer, WDT, which is extremely low power. The microcontroller can be in a low-power sleep mode while the CSM is still running and incrementing the counter/timer. The WDT will periodically wake the microcontroller, where the oscillation can be read and handled by the software. To handle the changing parasitic capacitance of the circuit, we need to keep a baseline value for the current parasitic capacitance, which is typically handled using a moving average filter acting on the results of prior measurements of the sensor. Due to the limited memory available, it is common to employ an IIR-based moving average, to avoid t having to store multiple previous samples. To determine whether there has been a press, the result of the last measurement of the sensor s capacitance is tested against the baseline. If the variation is greater than a design threshold, then a touch is determined to have occurred and should be handled by the software. Instead of using the c a p a c i t a n c e m e a s u r e m e n t directly, a filtered o r a v e r a g e d m e a s u r e m e n t First Time Window Second Time Window time Fig. 2-10: Clock Signal to the Internal Counter/Timer About Author may be used i n s t e a d, depending upon the application. The Capacitive Sensing Module can be used for proximity sensing as well as touch, since they are effectively the same operation; but the separation of the two plates is much greater. By increasing the size of the measurement time window, smaller variations in capacitance can be seen and transient noise is also averaged out over the time window. However, this is only effective up to a point, as it can make the interface slow to respond due to the time lag. For proximity sensing, the resolution can be increased by using the counter timers to measure the period for a number of oscillations of the waveform. This configuration has increased resolution, which compensates for the increased plate separation. Discussion Capacitive sensing offers many advantages, and new practices in user interaction and styling. The lack of moving parts increases system reliability and the ability to seal the user interface from its operating environment. If a microcontroller is already used in the application, then additional switch gear can be replaced with a capacitive interface at effectively no cost, since it only requires a conductive sensor pad. However, capacitive touch sensing can place other requirements on the system namely, the mechanical mounting and material dielectric to ensure acceptable levels of capacitive coupling. Jonathan Dillon, Applications Engineer Security, Technology Development Division, Microchip technology Inc.

Hello, and welcome to this presentation of the STM32 Touch Sensing Controller (TSC) which enables the designer to simply add touch sensing

Hello, and welcome to this presentation of the STM32 Touch Sensing Controller (TSC) which enables the designer to simply add touch sensing Hello, and welcome to this presentation of the STM32 Touch Sensing Controller (TSC) which enables the designer to simply add touch sensing functionality to any application. 1 Over recent years, Touch Sensing

More information

Capacitive mtouch Sensing Solutions

Capacitive mtouch Sensing Solutions Capacitive mtouch Sensing Solutions Design Guidelines 2010 Microchip Korea AE Team. All Rights Reserved. Capacitive Touch Sensing Design Guide Slide 1 Agenda Design Guidelines for: Copper Pad Size Circuit

More information

Incorporating a Capacitive Touch Interface into Your Design

Incorporating a Capacitive Touch Interface into Your Design Incorporating a Capacitive Touch Interface into Your Design Renesas Electronics America Inc. Renesas Technology & Solution Portfolio 2 Microcontroller and Microprocessor Line-up 2010 2012 32-bit 8/16-bit

More information

AS Channels Capacitive Touch Sensor IC From Santa Clara, United States of America

AS Channels Capacitive Touch Sensor IC From Santa Clara, United States of America ASI Competitor Equivalent A Competitor Equivalent B Volts Leading Performance: ESD HBM >8k Volts (Directly Applied to All IC Pins) Operating Temperature up to >+95 0 C Features Overview Analog and Digital

More information

Using an Analog Devices AD774X Capacitance-to-Digital Converter for Differential Button Sensor Operation

Using an Analog Devices AD774X Capacitance-to-Digital Converter for Differential Button Sensor Operation Using an Analog Devices AD774X Capacitance-to-Digital Converter for Differential Button Sensor Operation Eric Otte April 3 rd, 2010 ECE 480 Executive Summary: Capacitive sensors are increasingly being

More information

Capacitive Touch Remote Control Reference Design User s Guide

Capacitive Touch Remote Control Reference Design User s Guide Capacitive Touch Remote Control Reference Design User s Guide Microchip Korea V0.8-page 1 Capacitive Touch Remote Control Reference Design User s Guide Table of Contents Chapter 1. Introduction 1.1 Introduction

More information

APPLICATION NOTE 655 Supervisor ICs Monitor Battery-Powered Equipment

APPLICATION NOTE 655 Supervisor ICs Monitor Battery-Powered Equipment Maxim > Design Support > Technical Documents > Application Notes > Automotive > APP 655 Maxim > Design Support > Technical Documents > Application Notes > Microprocessor Supervisor Circuits > APP 655 Keywords:

More information

CY3280-BBM Universal CapSense TM Prototyping Module Kit Quick Start

CY3280-BBM Universal CapSense TM Prototyping Module Kit Quick Start CY3280-BBM Universal CapSense TM Prototyping Module Kit Quick Start Doc. # 001-43368 Rev. ** Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 (Intnl): 408.943.2600

More information

A variety of ECONseries modules provide economical yet flexible solutions. Waveform Generation

A variety of ECONseries modules provide economical yet flexible solutions. Waveform Generation ECONseries BUS: USB Type: Economy, Mini-Instruments ECONseries Economy USB Mini-Instruments Flexible Yet Economical A variety of low-cost ECONseries modules are available to provide flexible yet economical

More information

AZC002-02N Low Capacitance ESD Protection Array For High Speed Data Interfaces Features IEC (ESD) ±15kV (air), ±8kV (contact)

AZC002-02N Low Capacitance ESD Protection Array For High Speed Data Interfaces Features IEC (ESD) ±15kV (air), ±8kV (contact) Features ESD Protect for 2 high-speed I/O channels Provide ESD protection for each channel to IEC 61000-4-2 (ESD) ±15kV (air), ±8kV (contact) IEC 61000-4-4 (EFT) (5/50ns) Level-3, 20A for I/O, 40A for

More information

AZC002-04S Low Capacitance ESD Protection Array For High Speed Data Interfaces Features IEC (ESD) ±15kV (air), ±8kV (contact)

AZC002-04S Low Capacitance ESD Protection Array For High Speed Data Interfaces Features IEC (ESD) ±15kV (air), ±8kV (contact) Features ESD Protect for 4 high-speed I/O channels Provide ESD protection for each channel to IEC 000-4- (ESD) ±kv (air), ±8kV (contact) IEC 000-4-4 (EFT) (/0ns) Level-3, 0A for I/O, 40A for Power IEC

More information

DS1238A MicroManager PIN ASSIGNMENT PIN DESCRIPTION V BAT V CCO V CC

DS1238A MicroManager PIN ASSIGNMENT PIN DESCRIPTION V BAT V CCO V CC MicroManager www.dalsemi.com FEATURES Holds microprocessor in check during power transients Halts and restarts an out-of-control microprocessor Warns microprocessor of an impending power failure Converts

More information

Basic Sample and Hold Element. Prof. Paul Hasler Georgia Institute of Technology

Basic Sample and Hold Element. Prof. Paul Hasler Georgia Institute of Technology Basic Sample and Hold Element Prof. Paul Hasler Georgia Institute of Technology Sample and Hold Elements Sample and Hold Elements Amplitude (Hold) (Sample) (Hold) Time Sample and Hold Elements Amplitude

More information

IEC (EFT) 40A

IEC (EFT) 40A Features ESD Protect for high-speed I/O channels Provide ESD protection for each channel to IEC 61000-4- (ESD) ±1kV (air), ±8kV (contact) IEC 61000-4-4 (EFT) 40A (/0ns) IEC 61000-4- (Lightning) 1A (8/0µs)

More information

INTELLIGENT LOAD SWITCHING HELPS IMPLEMENT RELIABLE HOT SWAP SYSTEMS

INTELLIGENT LOAD SWITCHING HELPS IMPLEMENT RELIABLE HOT SWAP SYSTEMS INTELLIGENT LOAD SWITCHING HELPS IMPLEMENT RELIABLE HOT SWAP SYSTEMS March 2010 Lattice Semiconductor 5555 Northeast Moore Ct. Hillsboro, Oregon 97124 USA Telephone: (503) 268-8000 www.latticesemi.com

More information

Figure 1 Typical Application Circuit

Figure 1 Typical Application Circuit 4-CH CAPACITIVE TOUCH SENSOR WITH AUTO CALIBRATION August 2015 GENERAL DESCRIPTION The IS31SE5104 is a low power, fully integrated 4-channel solution for capacitive touch button applications. The chip

More information

Digital IO PAD Overview and Calibration Scheme

Digital IO PAD Overview and Calibration Scheme Digital IO PAD Overview and Calibration Scheme HyunJin Kim School of Electronics and Electrical Engineering Dankook University Contents 1. Introduction 2. IO Structure 3. ZQ Calibration Scheme 4. Conclusion

More information

E3B USER'S GUIDE. for QT310 / QT320 QProx IC evaluation and development Overview. Fast Start

E3B USER'S GUIDE. for QT310 / QT320 QProx IC evaluation and development Overview. Fast Start E3B USER'S GUIDE for QT310 / QT320 QProx IC evaluation and development Overview The E3B board works with Quantum s QT310 and QT320 QProx ICs. Either device can be inserted into the 8-pin DIP socket. QT310

More information

Capacitive Touch Based User Interfaces and Hardware-based Solutions

Capacitive Touch Based User Interfaces and Hardware-based Solutions Capacitive Touch Based User Interfaces and Hardware-based Solutions Renesas Electronics America Inc. Renesas Technology & Solution Portfolio 2 Microcontroller and Microprocessor Line-up 2010 2013 32-bit

More information

AZC099-04S 4 IEC (ESD)

AZC099-04S 4 IEC (ESD) Features ESD Protect for 4 high-speed I/O channels Provide ESD protection for each channel to IEC 000-4- (ESD) ±kv (air), ±8kV (contact) IEC 000-4-4 (EFT) (/0ns) Level-3, 0A for I/O, 40A for Power IEC

More information

TTP229-BSF TonTouch TM

TTP229-BSF TonTouch TM 16 KEYS OR 8 KEYS TOUCH PAD DETECTOR IC GENERAL DESCRIPTION The IC is capacitive sensing design specifically for touch pad controls. The device built in regulator for touch sensor. Stable sensing method

More information

AOZ8900. Ultra-Low Capacitance TVS Diode Array PRELIMINARY. Features. General Description. Applications. Typical Application

AOZ8900. Ultra-Low Capacitance TVS Diode Array PRELIMINARY. Features. General Description. Applications. Typical Application Ultra-Low Capacitance TS Diode Array General Description The is a transient voltage suppressor array designed to protect high speed data lines from Electro Static Discharge (ESD) and lightning. This device

More information

This Part-B course discusses design techniques that are used to reduce noise problems in large-scale integration (LSI) devices.

This Part-B course discusses design techniques that are used to reduce noise problems in large-scale integration (LSI) devices. Course Introduction Purpose This Part-B course discusses design techniques that are used to reduce noise problems in large-scale integration (LSI) devices. Objectives Learn approaches and design methods

More information

± 2g Tri-Axis Accelerometer Specifications

± 2g Tri-Axis Accelerometer Specifications Product Description The is a tri-axis, silicon micromachined accelerometer with a full-scale output range of ±g (19.6m/s ). The sense element is fabricated using Kionix s proprietary plasma micromachining

More information

LED1 LED2. Capacitive Touch Sense Controller LED3 LED4

LED1 LED2. Capacitive Touch Sense Controller LED3 LED4 October 2012 Introduction Reference Design RD1136 Capacitive sensing is a technology based on capacitive coupling which takes human body capacitance as input. Capacitive touch sensors are used in many

More information

HL2430/2432/2434/2436

HL2430/2432/2434/2436 Features Digital Unipolar Hall sensor High chopping frequency Supports a wide voltage range - 2.5 to 24V - Operation from unregulated supply Applications Flow meters Valve and solenoid status BLDC motors

More information

TTP229-LSF TonTouch TM

TTP229-LSF TonTouch TM 16 KEYS OR 8 KEYS TOUCH PAD DETECTOR IC GENERAL DESCRIPTION The IC is capacitive sensing design specifically for touch pad controls. The device built in regulator for touch sensor. Stable sensing method

More information

This Part-A course discusses techniques that are used to reduce noise problems in the design of large scale integration (LSI) devices.

This Part-A course discusses techniques that are used to reduce noise problems in the design of large scale integration (LSI) devices. Course Introduction Purpose This Part-A course discusses techniques that are used to reduce noise problems in the design of large scale integration (LSI) devices. Objectives Understand the requirement

More information

MICROCONTROLLER AND PLC LAB-436 SEMESTER-5

MICROCONTROLLER AND PLC LAB-436 SEMESTER-5 MICROCONTROLLER AND PLC LAB-436 SEMESTER-5 Exp:1 STUDY OF MICROCONTROLLER 8051 To study the microcontroller and familiarize the 8051microcontroller kit Theory:- A Microcontroller consists of a powerful

More information

KCX series. Electronic. Counters B-32

KCX series. Electronic. Counters B-32 B-32 KCX series KCX-1 KCX-2 KCX-3 KCX-4 KCX-1D KCX-2D KCX-2DM KCX-3D KCX-3DM KCX-4D KCX-4DM KCX-5D KCX-5DM KCX-6D KCX-6DM KCX-B4 KCX-B4M KCX-B6 KCX-B6M KCX-3W KCX-4W KCX-4WM KCX-5W KCX-6W KCX-6WM KCX-B4W

More information

Chapter 2 On-Chip Protection Solution for Radio Frequency Integrated Circuits in Standard CMOS Process

Chapter 2 On-Chip Protection Solution for Radio Frequency Integrated Circuits in Standard CMOS Process Chapter 2 On-Chip Protection Solution for Radio Frequency Integrated Circuits in Standard CMOS Process 2.1 Introduction Standard CMOS technologies have been increasingly used in RF IC applications mainly

More information

Electromagnetic Compatibility ( EMC )

Electromagnetic Compatibility ( EMC ) Electromagnetic Compatibility ( EMC ) ESD Strategies in IC and System Design 8-1 Agenda ESD Design in IC Level ( ) Design Guide Lines CMOS Design Process Level Method Circuit Level Method Whole Chip Design

More information

Lecture 20: Package, Power, and I/O

Lecture 20: Package, Power, and I/O Introduction to CMOS VLSI Design Lecture 20: Package, Power, and I/O David Harris Harvey Mudd College Spring 2004 1 Outline Packaging Power Distribution I/O Synchronization Slide 2 2 Packages Package functions

More information

2 AA Cell to 3.3V USB On-The-Go Devices White LED Drivers Handheld Devices. The HM3200B is available in the 6-pin SOT23-6.

2 AA Cell to 3.3V USB On-The-Go Devices White LED Drivers Handheld Devices. The HM3200B is available in the 6-pin SOT23-6. Low Noise, Regulated Charge Pump DC/DC Converter Features Fixed 3.3V ± 4% Output VIN Range: 1.8V to 5V Output Current: 100mA Constant Frequency Operation at All Loads Low Noise Constant Frequency (1.2MHz)

More information

HX4002 HX1001. White LED Backlighting Li-Ion Battery Backup Supplies Local 3V to 5V Conversion Smart Card Readers PCMCIA Local 5V Supplies

HX4002 HX1001. White LED Backlighting Li-Ion Battery Backup Supplies Local 3V to 5V Conversion Smart Card Readers PCMCIA Local 5V Supplies HX1001 Low Noise, Regulated Charge Pump DC/DC Converter Features Fixed 5V±4% Output VIN Range: 2.7V ~ 5V Output Current: up to 250mA (V IN =4.5V) Low Noise Constant Frequency Operation Shutdown Current:

More information

Octagon Systems Corporation, the Octagon logo, the Micro PC log and Micro PC are trademarks of Octagon Systems Corporation.

Octagon Systems Corporation, the Octagon logo, the Micro PC log and Micro PC are trademarks of Octagon Systems Corporation. 5974 PC 104 Card COPYRIGHT Copyright 1993 Octagon Systems Corporation. All rights reserved. However, any part of this document may be reproduced provided that Octagon Systems Corporation is cited as the

More information

Low Voltage, 10-Bit Digital Temperature Sensor in 8-Lead MSOP AD7314

Low Voltage, 10-Bit Digital Temperature Sensor in 8-Lead MSOP AD7314 a FEATURES 10-Bit Temperature-to-Digital Converter 35 C to +85 C Operating Temperature Range 2 C Accuracy SPI and DSP Compatible Serial Interface Shutdown Mode Space-Saving MSOP Package APPLICATIONS Hard

More information

PC-CARD-DAS16/12 Specifications

PC-CARD-DAS16/12 Specifications Specifications Document Revision 1.1, February, 2010 Copyright 2010, Measurement Computing Corporation Typical for 25 C unless otherwise specified. Specifications in italic text are guaranteed by design.

More information

Isolated Current Output 5B39 FEATURES APPLICATIONS PRODUCT OVERVIEW

Isolated Current Output 5B39 FEATURES APPLICATIONS PRODUCT OVERVIEW Isolated Current Output 5B39 FEATURES Converts a High-level analog input voltage into a floating proportional output current. Output current of 4 to 20 ma or 0 to 20 ma across loads from 0Ω to 750Ω. High

More information

USB 1608G Series USB Multifunction Devices

USB 1608G Series USB Multifunction Devices USB Multifunction Devices Features 16-bit high-speed USB devices Acquisition rates ranging from 250 ks/s to 500 ks/s differential (DIFF) or 16 singleended (SE) analog inputs (softwareselectable) Up to

More information

Hello, and welcome to this presentation of the STM32L4 power controller. The STM32L4 s power management functions and all power modes will also be

Hello, and welcome to this presentation of the STM32L4 power controller. The STM32L4 s power management functions and all power modes will also be Hello, and welcome to this presentation of the STM32L4 power controller. The STM32L4 s power management functions and all power modes will also be covered in this presentation. 1 Please note that this

More information

EMI/ESD Filters for Cellular Phones

EMI/ESD Filters for Cellular Phones EMI/ESD Filters for Cellular Phones Cellular phones, as with all handheld and wireless devices are susceptible to the damaging effects of Electrostatic Discharge (ESD) transients. As much as 40 kilovolts

More information

S12VR Hardware Design. Guidelines. 1 Introduction. 2 Hardware Design. Guidelines. 2.1 Voltage regulator. Freescale Semiconductor

S12VR Hardware Design. Guidelines. 1 Introduction. 2 Hardware Design. Guidelines. 2.1 Voltage regulator. Freescale Semiconductor Freescale Semiconductor Document Number: AN4643 Application Note Rev 1, 10/2013 S12VR Hardware Design Guidelines by: Carlos Aceff 1 Introduction This document lists the required external components and

More information

TTP224-ASD 4 KEY TOUCH PAD DETECTOR IC

TTP224-ASD 4 KEY TOUCH PAD DETECTOR IC 4 KEY TOUCH PAD DETECTOR IC GENERAL DESCRIPTION The SP224-ASD is capacitive sensing design specifically for touch pad controls. Stable sensing method can cover diversity conditions. Human interfaces control

More information

L Q. E411. User Manual. The New Vision of Touch TM

L Q.   E411. User Manual. The New Vision of Touch TM L Q www.qprox.com E411 User Manual The New Vision of Touch TM Contents 1 E411 Overview...3 1.1 Introduction...3 1.2 Contents of Kit...3 2 Mounting the Spare E411 Board...4 3 Setting Up the E411...5 4 QSlide...6

More information

PC-CARD-DAS16/16 Specifications

PC-CARD-DAS16/16 Specifications Specifications Document Revision 2.1, February, 2010 Copyright 2010, Measurement Computing Corporation Typical for 25 C unless otherwise specified. Specifications in italic text are guaranteed by design.

More information

AOZ8101. Ultra-Low Capacitance TVS Diode Array. General Description. Features. Applications. Typical Application

AOZ8101. Ultra-Low Capacitance TVS Diode Array. General Description. Features. Applications. Typical Application Ultra-Low Capacitance TS Diode Array General Description The AOZ8101 is a transient voltage suppressor array designed to protect high speed data lines from Electro Static Discharge (ESD) and lightning.

More information

Advanced NI-DAQmx Programming Techniques with LabVIEW

Advanced NI-DAQmx Programming Techniques with LabVIEW Advanced NI-DAQmx Programming Techniques with LabVIEW Agenda Understanding Your Hardware Data Acquisition Systems Data Acquisition Device Subsystems Advanced Programming with NI-DAQmx Understanding Your

More information

RT54SX T r / T f Experiment

RT54SX T r / T f Experiment 955 East Arques Avenue, Sunnyvale, CA 94086 408-739-1010 RT54SX T r / T f Experiment July 08, 2002 BY Actel Product Engineering 1 DATE: July 08, 2002 DEVICE TYPE: RT54SX16-CQ256E RT54SX32-CQ208P WAFER

More information

Section 30. In-Circuit Serial Programming (ICSP )

Section 30. In-Circuit Serial Programming (ICSP ) Section 30. In-Circuit Serial Programming (ICSP ) HIGHLIGHTS This section of the manual contains the following major topics: 30. Introduction... 30-2 30.2 Entering In-Circuit Serial Programming Mode...

More information

Today: Multi-touch capacitive touch screens How do they work?

Today: Multi-touch capacitive touch screens How do they work? 1975: Capacitive touch switches in use 1994: 1st laptop capacitive touchpad 2003: 1st ipod capacitive touchwheel Today: Multi-touch capacitive touch screens How do they work? CNMAT Sensor Workshop 2008

More information

Solid-State Counter/Timer

Solid-State Counter/Timer Solid-State Counter/Timer 1/16 DIN, Easy-to-Operate Combination Counter and Timer Operation selectable as preset counter or timer 6-digit LCD display Present Value: 8 mm (0.32 in) Set Value: 4 mm (0.16

More information

From mtouch to 1D/2D/3D gesture Технология mtouch для Бесконтактных кнопок Емкостной клавиатуры Распознавания жестов

From mtouch to 1D/2D/3D gesture Технология mtouch для Бесконтактных кнопок Емкостной клавиатуры Распознавания жестов From mtouch to 1D/2D/3D gesture Технология mtouch для Бесконтактных кнопок Емкостной клавиатуры Распознавания жестов 2012 Microchip Technology Incorporated. All Rights Reserved. mtouch Slide 1 Agenda Capacitive

More information

A0021. Overview. Features. Ordering Information. HSS Touch Signature IC 6 Input - I 2 C. Part Number Format: A X Y Z

A0021. Overview. Features. Ordering Information. HSS Touch Signature IC 6 Input - I 2 C. Part Number Format: A X Y Z VSS NC NC VDD SDA SENSOR 2 SENSOR 1 ADD1 HSS Touch Signature IC 6 Input - I 2 C A0021 Overview The patented AlSentis A0021 Touch IC is a complete 1 6 input touch sensing solution. It includes all signal

More information

CARDINAL COMPONENTS, INC.

CARDINAL COMPONENTS, INC. SERIES CJTDAE CJTDAL The Cardinal Cappuccino Crystal Oscillator LVDS/ LVPECL TCXO Features 3.3V supply voltage- configurable 10MHz to 250MHz LVDS and LVPECL outputs- configurable Better than 2Hz tuning

More information

MS BA Micro Barometric Module

MS BA Micro Barometric Module MS5605-02A Micro arometric Module High resolution module, 20cm Fast conversion down to ms Low power, µa (standby < 0.5 µa) QFN package 5.0 x 3.0 x.6 mm 3 Supply voltage.8 to 3.6 V Integrated digital pressure

More information

2:1 MULTIPLEXER CHIP FOR PCI-EXPRESS ICS Description. Features. Block Diagram DATASHEET

2:1 MULTIPLEXER CHIP FOR PCI-EXPRESS ICS Description. Features. Block Diagram DATASHEET DATASHEET 2:1 MULTIPLEXER CHIP FOR PCI-EXPRESS ICS557-08 Description The ICS557-08 is a 2:1 multiplexer chip that allows the user to select one of the two HCSL (Host Clock Signal Level) or LVDS input pairs

More information

TECHNICAL NOTE. VS1000: Evaluation Kit EVBA_2.0. Contents. EVBA_2.0 is a plug and play Evaluation Kit for Colibrys VS1000 accelerometers line.

TECHNICAL NOTE. VS1000: Evaluation Kit EVBA_2.0. Contents. EVBA_2.0 is a plug and play Evaluation Kit for Colibrys VS1000 accelerometers line. VS1000: Evaluation Kit EVBA_2.0 EVBA_2.0 is a plug and play Evaluation Kit for Colibrys VS1000 accelerometers line. To facilitate the integration in user environment and easily verify the excellent performances

More information

SSD1322. Product Preview. 480 x 128, Dot Matrix High Power OLED/PLED Segment/Common Driver with Controller

SSD1322. Product Preview. 480 x 128, Dot Matrix High Power OLED/PLED Segment/Common Driver with Controller SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA SSD1322 Product Preview 480 x 128, Dot Matrix High Power OLED/PLED Segment/Common Driver with Controller This document contains information on a product under

More information

A0061. Overview. Features. Ordering Information. HSS Touch Signature IC 15 Input - I 2 C. Part Number Format: A X Y Z

A0061. Overview. Features. Ordering Information. HSS Touch Signature IC 15 Input - I 2 C. Part Number Format: A X Y Z Sensor5 ADD2 ADD1 SCL SDA Sensor6 Sensor7 Sensor1 Sensor0 Reset NC NC Sensor14 Sensor13 HSS Touch Signature IC 15 Input - I 2 C A0061 Overview The patented AlSentis A0061 Touch IC is a complete 1 15 input

More information

INPAQ Global RF/Component Solutions

INPAQ Global RF/Component Solutions TEA10201V05A0 Specification Product Name Series Part No ESD Guard TM TEA Series (Thin Film Air Gap) TEA10201V05A0 Size EIA 0201 TEA10201V05A0 Engineering Specification 1. Scope This specification is applied

More information

Single Event Latchup Power Switch Cell Characterisation

Single Event Latchup Power Switch Cell Characterisation Single Event Latchup Power Switch Cell Characterisation Vladimir Petrovic, Marko Ilic, Gunter Schoof Abstract - In this paper are described simulation and measurement processes of a power switch cell used

More information

SCA620-EF1V1B SINGLE AXIS ACCELEROMETER WITH ANALOG INTERFACE

SCA620-EF1V1B SINGLE AXIS ACCELEROMETER WITH ANALOG INTERFACE Datasheet SCA620-EF1V1B SINGLE AXIS ACCELEROMETER WITH ANALOG INTERFACE The SCA620 accelerometer consists of a silicon bulk micro machined sensing element chip and a signal conditioning ASIC. The chips

More information

2 keys Touch Pad Detector IC

2 keys Touch Pad Detector IC 2 keys Touch Pad Detector IC Outline The TonTouch TM IC is capacitive sensing design specifically for touch pad controls. The device built in regulator for touch sensor. Stable sensing method can cover

More information

AIC1520. Ferrite Bead GND. *33µF, 16V Tantalum, or 100µF, 10V Electrolytic Bold line indicate high-current traces. USB High-Side Power Switch

AIC1520. Ferrite Bead GND. *33µF, 16V Tantalum, or 100µF, 10V Electrolytic Bold line indicate high-current traces. USB High-Side Power Switch USB High-Side Power Switch FEATURES 120mΩ (5V Input) High-Side MOSFET Switch. 500mA Continuous Load Current. 80µA Typical On-State Supply Current. Current-Limit / Short Circuit Protection. Thermal Limiting

More information

4. Hot Socketing & Power-On Reset

4. Hot Socketing & Power-On Reset 4. Hot Socketing & Power-On Reset CII51004-3.1 Introduction Cyclone II devices offer hot socketing (also known as hot plug-in, hot insertion, or hot swap) and power sequencing support without the use of

More information

ILI2303. ILI2303 Capacitive Touch Sensor Controller. Specification

ILI2303. ILI2303 Capacitive Touch Sensor Controller. Specification Capacitive Touch Sensor Controller Specification Version: V1.03 Date: 2014/9/17 ILI TECHNOLOGY CORP. 8F, No.38, Taiyuan St., Jhubei City, Hsinchu County 302, Taiwan, R.O.C. Tel.886-3-5600099; Fax.886-3-5600055

More information

Surface Mount Micromachined Accelerometer

Surface Mount Micromachined Accelerometer Freescale Semiconductor Data Sheet: Technical Data Surface Mount Micromachined Accelerometer The MMA3204 series of dual axis (X and Y) silicon capacitive, micromachined accelerometers features signal conditioning,

More information

Operating Requirements

Operating Requirements Operating Requirements for Altera Devices January 1998, ver. 8 Data Sheet Introduction Altera devices combine unique programmable logic architectures with advanced CMOS processes to provide exceptional

More information

William Stallings Computer Organization and Architecture 8th Edition. Chapter 5 Internal Memory

William Stallings Computer Organization and Architecture 8th Edition. Chapter 5 Internal Memory William Stallings Computer Organization and Architecture 8th Edition Chapter 5 Internal Memory Semiconductor Memory The basic element of a semiconductor memory is the memory cell. Although a variety of

More information

TVW MSOP 04 AD0 Engineering Specification

TVW MSOP 04 AD0 Engineering Specification TVW MSOP 4 AD 1 Scope TVW MSOP 4 AD s are TVS arrays designed to protect power/control lines and high-speed signal lines from overvoltage hazard of Electrostatic Discharge (ESD), Electrical Fast Transients

More information

WI-076 Issue 1 Page 1 of 7

WI-076 Issue 1 Page 1 of 7 Design for Test (DFT) Guidelines WI-076 Issue 1 Page 1 of 7 Contents Scope... 3 Introduction... 3 Board Layout Constraints... 4 Circuit Design Constraints... 5 ICT Generation Requirements... 7 WI-076 Issue

More information

PSEC-4: Review of Architecture, etc. Eric Oberla 27-oct-2012

PSEC-4: Review of Architecture, etc. Eric Oberla 27-oct-2012 PSEC-4: Review of Architecture, etc. Eric Oberla 27-oct-2012 PSEC-4 ASIC: design specs LAPPD Collaboration Designed to sample & digitize fast pulses (MCPs): Sampling rate capability > 10GSa/s Analog bandwidth

More information

CARDINAL COMPONENTS, INC.

CARDINAL COMPONENTS, INC. SERIES CJAL CJAE The Cardinal Cappuccino Crystal Oscillator LVDS/ LVPECL Features 2.5V or 3.3V supply voltageconfigurable 10MHz to 250MHz LVDS and LVPECL outputs- configurable Better than 2Hz tuning resolution

More information

Overvoltage Protection in Automotive Systems

Overvoltage Protection in Automotive Systems HOME PRODUCTS SOLUTIONS DESIGN APPNOTES SUPPORT BUY COMPANY MEMBERS App Notes > CIRCUIT PROTECTION SENSOR SIGNAL CONDITIONERS APP 760: Jun 18, 2001 Keywords: overvoltage, over voltage, protection, automotive,

More information

Chapter 1 Introducing the OM-USB-1608FS-Plus... 6 Functional block diagram... 6

Chapter 1 Introducing the OM-USB-1608FS-Plus... 6 Functional block diagram... 6 Table of Contents Preface About this User's Guide... 5 What you will learn from this user's guide... 5 Conventions in this user's guide... 5 Where to find more information... 5 Chapter 1 Introducing the

More information

USB 1608G Series USB Multifunction Devices

USB 1608G Series USB Multifunction Devices USB Multifunction Devices Features 16-bit high-speed USB devices Acquisition rates ranging from 250 ks/s to 500 ks/s differential (DIFF) or 16 singleended (SE) analog inputs (softwareselectable) Up to

More information

Getting Started. 1.3 X-MWsystem Vocabulary. X-MWprobe X-MWanchor X-MWjumper. X-MWblock RF. X-MWblock Bias and Control. X-MWprotoplate X-MWwall X-MWlid

Getting Started. 1.3 X-MWsystem Vocabulary. X-MWprobe X-MWanchor X-MWjumper. X-MWblock RF. X-MWblock Bias and Control. X-MWprotoplate X-MWwall X-MWlid 1. X-Microwave System (X-MWsystem) 1.1 Overview RF and Microwave design and product development is an incredibly interesting and challenging field. The Craft is truly an art and it takes years to learn

More information

2:1 MULTIPLEXER CHIP FOR PCI-EXPRESS ICS Features

2:1 MULTIPLEXER CHIP FOR PCI-EXPRESS ICS Features DATASHEET 2:1 MULTIPLEXER CHIP FOR PCI-EXPRESS ICS557-08 Description The ICS557-08 is a 2:1 multiplexer chip that allows the user to select one of the two HCSL (Host Clock Signal Level) input pairs and

More information

ESD Protection Circuits: Basics to nano-metric ASICs

ESD Protection Circuits: Basics to nano-metric ASICs ESD Protection Circuits: Basics to nano-metric ASICs Manoj Sachdev University of Waterloo msachdev@ece.uwaterloo.ca September 2007 1 Outline Group Introduction ESD Basics Basic ESD Protection Circuits

More information

4 keys Touch Pad Detector IC

4 keys Touch Pad Detector IC 4 keys Touch Pad Detector IC Outline The TonTouch TM IC is capacitive sensing design specifically for touch pad controls. The device built in regulator for touch sensor. Stable sensing method can cover

More information

Surface Mount Micromachined Accelerometer

Surface Mount Micromachined Accelerometer Freescale Semiconductor Data Sheet: Technical Data Surface Mount Micromachined Accelerometer The MMA3202 series of dual axis (X and Y) silicon capacitive, micromachined accelerometers features signal conditioning,

More information

DS1233A 3.3V EconoReset

DS1233A 3.3V EconoReset 3.3V EconoReset www.maxim-ic.com FEATURES Automatically restarts microprocessor after power failure Monitors pushbutton for external override Internal circuitry debounces pushbutton switch Maintains reset

More information

VT-820 VT-820. Temperature Compensated Crystal Oscillator Previous Vectron Model VTM3. Description

VT-820 VT-820. Temperature Compensated Crystal Oscillator Previous Vectron Model VTM3. Description VT-820 Temperature Compensated Crystal Oscillator Previous Vectron Model VTM3 VT-820 Description Vectron s VT-820 Temperature Compensated Crystal Oscillator (TCXO) is a quartz stabilized, clipped sine

More information

DS1830/A Reset Sequence Pushbutton

DS1830/A Reset Sequence Pushbutton DS1830/A DS183 DS1830/A Reset Sequence Pushbutton www.maxim-ic.com FEATURES 5V (DS1830) or 3.3V (DS1830A) power-on reset Excellent for systems that need power-on resets in a consistent sequence Asserts

More information

APPLICATION NOTE. Atmel AVR3005: Low Power QTouch Design. Atmel QTouch. Features. Introduction

APPLICATION NOTE. Atmel AVR3005: Low Power QTouch Design. Atmel QTouch. Features. Introduction APPLICATION NOTE Atmel AVR3005: Low Power QTouch Design Atmel QTouch Features Factors affecting power consumption Guidelines to reduce power consumption in Atmel QTouch designs Introduction With the increasing

More information

Preliminary 16 KEYS OR 8 KEYS TOUCH PAD DETECTOR IC

Preliminary 16 KEYS OR 8 KEYS TOUCH PAD DETECTOR IC 16 KEYS OR 8 KEYS TOUCH PAD DETECTOR IC GENERAL DESCRIPTION The IC is capacitive sensing design specifically for touch pad controls. The device built in regulator for touch sensor. Stable sensing method

More information

Overcome the Top 4 Challenges of Capacitive Sense Design

Overcome the Top 4 Challenges of Capacitive Sense Design Overcome the Top 4 Challenges of Capacitive Sense Design By Parker Dorris, Applications Engineer, Silicon Labs www.silabs.com Smart. Connected. Energy-Friendly. Introduction From light switches to washing

More information

E401. User Manual. The New Vision of Touch

E401. User Manual. The New Vision of Touch E401 User Manual The New Vision of Touch E401 User Manual OVERVIEW This kit is designed for evaluation and development of QT401-based QSlide slider controls. It includes a fully assembled slider PCB, demo

More information

Addressable Bus Buffer Provides Capacitance Buffering, Live Insertion and Nested Addressing in 2-WireBus Systems

Addressable Bus Buffer Provides Capacitance Buffering, Live Insertion and Nested Addressing in 2-WireBus Systems Addressable Bus Buffer Provides Capacitance Buffering, Live Insertion and Nested Addressing in 2-WireBus Systems by John Ziegler Introduction The reliability of data processing, data storage and communications

More information

MP6500 Stepper Motor Driver, Digital Current Control

MP6500 Stepper Motor Driver, Digital Current Control This breakout board for the MPS MP6500 micro stepping bipolar stepper motor driver is Pololu s latest stepper motor driver. The module has a pinout and interface that are very similar to that of our popular

More information

DS1821 Programmable Digital Thermostat and Thermometer

DS1821 Programmable Digital Thermostat and Thermometer ma www.maxim-ic.com FEATURES Requires no external components Unique 1-Wire interface requires only one port pin for communication Operates over a -55 C to +125 C (-67 F to +257 F) temperature range Functions

More information

TS04. 4-Channel Self Calibration Capacitive Touch Sensor SPECIFICATION V2.0

TS04. 4-Channel Self Calibration Capacitive Touch Sensor SPECIFICATION V2.0 TS4 4-Channel Self Calibration Capacitive Touch Sensor SPECIFICATION V2. Specification TS4 (4-CH Auto Sensitivity Calibration Capacitive Touch Sensor). General Feature 4-Channel capacitive sensor with

More information

Multiple Switch Detection Interface with Suppressed Wake-up

Multiple Switch Detection Interface with Suppressed Wake-up Freescale Semiconductor Technical Data Multiple Switch Detection Interface with Suppressed Wake-up The Multiple Switch Detection Interface with suppressed wake-up is designed to detect the closing and

More information

System Monitoring Oscillator with Watchdog and Power Fail

System Monitoring Oscillator with Watchdog and Power Fail General Description The MAX7387/MAX7388 replace ceramic resonators, crystals, and supervisory functions for microcontrollers in 3.3V and 5V applications. The MAX7387/MAX7388 provide a clock source together

More information

Section 28. WDT and SLEEP Mode

Section 28. WDT and SLEEP Mode Section 28. WDT and SLEEP Mode HIGHLIGHTS This section of the manual contains the following major topics: 28 28.1 Introduction... 28-2 28.2 Control Register... 28-3 28.3 Watchdog Timer (WDT) Operation...

More information

TS2043 Preliminary CMOS IC

TS2043 Preliminary CMOS IC UNISONIC TECHNOLOGIES CO., LTD TS2043 Preliminary CMOS IC TOUCH PANEL CONTROLLER DESCRIPTION The UTC TS2043 is a highly integrated 12-bit SAR analog-to-digital (A/D) converter designed for touch panel

More information

Digital Thermometer and Thermostat

Digital Thermometer and Thermostat General Description The DS75 digital thermometer and thermostat provides 9, 10, 11, or 12-bit digital temperature readings over a -55 C to +125 C range with ±2 C accuracy over a -25 C to +100 C range.

More information

INPAQ. Specification TEA10402V15A0. Product Name. ESD Guard TM TEA Series (Thin Film Air Gap) Size EIA Global RF/Component Solutions

INPAQ. Specification TEA10402V15A0. Product Name. ESD Guard TM TEA Series (Thin Film Air Gap) Size EIA Global RF/Component Solutions TEA10402V15A0 Specification Product Name Series Part No ESD Guard TM TEA Series (Thin Film Air Gap) TEA10402V15A0 Size EIA 0402 TEA10402V15A0 Engineering Specification 1. Scope TEA series is designed to

More information

Sample. Pearson BTEC Levels 4 Higher Nationals in Engineering (RQF) Unit 15: Automation, Robotics and Programmable Logic Controllers (PLCs)

Sample. Pearson BTEC Levels 4 Higher Nationals in Engineering (RQF) Unit 15: Automation, Robotics and Programmable Logic Controllers (PLCs) Pearson BTEC Levels 4 Higher Nationals in Engineering (RQF) Unit 15: Automation, Robotics and Programmable Logic Controllers (PLCs) Unit Workbook 1 in a series of 4 for this unit Learning Outcome 1 Design

More information