AVR221: Discrete PID Controller on tinyavr and megaavr devices. Introduction. AVR 8-bit Microcontrollers APPLICATION NOTE

Size: px
Start display at page:

Download "AVR221: Discrete PID Controller on tinyavr and megaavr devices. Introduction. AVR 8-bit Microcontrollers APPLICATION NOTE"

Transcription

1 AVR 8-bit Microcontrollers AVR221: Discrete PID Controller on tinyavr and megaavr devices APPLICATION NOTE Introduction This application note describes a simple implementation of a discrete Proportional- Integral-Derivative (PID) controller. When working with applications where control of the system output due to changes in the reference value or state is needed, implementation of a control algorithm may be necessary. Examples of such applications are motor control, control of temperature, pressure, flow rate, speed, force, or other variables. The PID controller can be used to control any measurable variable, as long as this variable can be affected by manipulating some other process variables. Many control solutions have been used over the time, but the PID controller has become the industry standard due to its simplicity and good performance. For further information about the PID controller and its implications, the reader should consult other sources, e.g. PID Controllers by K. J. Astrom & T. Hagglund (1995). Figure -1. Typical PID Regulator Response to Step Change in Reference Input p pi pid ref

2 Features Simple discrete PID controller algorithm Supported by all Atmel AVR devices 2

3 Table of Contents Introduction...1 Features PID Controller Proportional Term Integral Term Derivative Term Proportional, Integral, and Derivative Terms Together Tuning the Parameters Discrete PID Controller Algorithm Background Implementation Integral Windup Further Development Literature References Revision History...13

4 1. PID Controller In the figure below a schematic of a system with a PID controller is shown. The PID controller compares the measured process value y with a reference setpoint value, y 0. The difference or error, e, is then processed to calculate a new process input, u. This input will try to adjust the measured process value back to the desired setpoint. The alternative to a closed loop control scheme such as the PID controller is an open loop controller. Open loop control (no feedback) is in many cases not satisfactory, and is often impossible due to the system properties. By adding feedback from the system output, performance can be improved. Figure 1-1. Closed Loop System with PID Controller y0 e - PID u System y Unlike simple control algorithms, the PID controller is capable of manipulating the process inputs based on the history and rate of change of the signal. This gives a more accurate and stable control method. The basic idea is that the controller reads the system state by a sensor. Then it subtracts the measurement from a desired reference to generate the error value. The error will be managed in three ways; to handle the present through the proportional term, recover from the past using the integral term, and to anticipate the future through the derivate term. The figure below shows the PID controller schematics, where T p, T i, and T d denote the time constants of the proportional, integral, and derivative terms respectively. Figure 1-2. PID Controller Schematic T d d dt e K p u T i 1.1. Proportional Term The proportional term (P) gives a system control input proportional with the error. Using only P control gives a stationary error in all cases except when the system control input is zero and the system process value equals the desired value. In the figure below the stationary error in the system process value appears after a change in the desired value (ref). Using a too large P term gives an unstable system. 4

5 Figure 1-3. Step Response P Controller 12 p ref Integral Term The integral term (I) gives an addition from the sum of the previous errors to the system control input. The summing of the error will continue until the system process value equals the desired value, and this results in no stationary error when the reference is stable. The most common use of the I term is normally together with the P term, called a PI controller. Using only the I term gives slow response and often an oscillating system. The figure below shows the step responses to a I and PI controller. As seen the PI controller response have no stationary error and the I controller response is very slow. Figure 1-4. Step Response I and PI Controller p i pi ref 1.3. Derivative Term The derivative term (D) gives an addition from the rate of change in the error to the system control input. A rapid change in the error will give an addition to the system control input. This improves the response to a sudden change in the system state or reference value. The D term is typically used with the P or PI as a PD or PID controller. A too large D term usually gives an unstable system. The figure below shows D and PD controller responses. The response of the PD controller gives a faster rising system process value 5

6 than the P controller. Note that the D term essentially behaves as a high-pass filter on the error signal and thus easily introduces instability in a system and make it more sensitive to noise. Figure 1-5. Step Response D and PD Controller p d pd ref Proportional, Integral, and Derivative Terms Together Using all the terms together, as a PID controller usually gives the best performance. The figure below compares the P, PI, and PID controllers. PI improves the P by removing the stationary error, and the PID improves the PI by faster response and no overshoot. Figure 1-6. Step Response P, PI, and PID Controller p pi pid ref Tuning the Parameters The best way to find the needed PID parameters is from a mathematical model of the system, parameters can then be calculated to get the desired response. Often a detailed mathematical description of the system is unavailable, experimental tuning of the PID parameters has to be performed. Finding the terms for the PID controller can be a challenging task. Good knowledge about the systems properties and the 6

7 way the different terms work is essential. The optimum behavior on a process change or setpoint change depends on the application at hand. Some processes must not allow overshoot of the process variable from the setpoint. Other processes must minimize the energy consumption in reaching the setpoint. Generally, stability is the strongest requirement. The process must not oscillate for any combinations or setpoints. Furthermore, the stabilizing effect must appear within certain time limits. Several methods for tuning the PID loop exist. The choice of method will depend largely on whether the process can be taken off-line for tuning or not. Ziegler-Nichols method is a well-known online tuning strategy. The first step in this method is setting the I and D gains to zero, increasing the P gain until a sustained and stable oscillation (as close as possible) is obtained on the output. Then the critical gain K c and the oscillation period P c is recorded and the P, I, and D values adjusted accordingly using the table below. Table 1-1. Ziegler-Nichols Parameters Controller Kp Ti Td P 0.5 * Kc PD 0.65 * Kc 0.12 * Pc PI 0.45 * Kc 0.85 * Pc PID 0.65 * Kc 0.5 * Pc 0.12 * Pc Further tuning of the parameters is often necessary to optimize the performance of the PID controller. The reader should note that there are systems where the PID controller will not work very well, or will only work on a small area around a given system state. Non-linear systems can be such, but generally problems often arise with PID control when systems are unstable and the effect of the input depends on the system state Discrete PID Controller A discrete PID controller will read the error, calculate and output the control input at a given time interval, at the sample period T. The sample time should be less than the shortest time constant in the system Algorithm Background Unlike simple control algorithms, the PID controller is capable of manipulating the process inputs based on the history and rate of change of the signal. This gives a more accurate and stable control method. Figure 1-2 shows the PID controller schematics, where Tp, Ti, and Td denotes the time constants of the proportional, integral, and derivative terms respectively. The transfer function of this system is: = = This gives u with respect to e in the time domain: = d + Approximating the integral and the derivative terms to get the discrete form, using: 0 d = 0 1 = 7

8 Where n is the discrete step at time t. This gives the controller: = = 0 Where: = = To avoid that changes in the desired process value makes any unwanted rapid changes in the control input, the controller is improved by basing the derivative term on the process value only: = = 0 8

9 2. Implementation The example code is written for "Atmel START". It can be downloaded from "BROWSE EXAMPLES" entry of Atmel START for both Atmel Studio 7 and IAR IDE. Double click the downloaded.atzip file and the project will be imported to Atmel Studio 7. To import the project in IAR, refer to "Atmel START in IAR", select Atmel Start Output in External Tools IAR'. Figure 2-1. Block Diagram of Demo Application pid.c / pid.h main() PID_timer p_factor, i_factor d_factor setpoint, processvalue control input Init_PID() PID() pid LAST_PROCESS_VALUE SUM_ ERROR P_FACTOR I_FACTOR D_ FACTOR MA X_ERROR MA X_SUM_ ERROR In the figure above a simplified block diagram of the demo application is shown. The PID controller uses a struct to store its status and parameters. This struct is initialized in main, and only a pointer to it is passed to the Init_PID() and PID() functions. The PID() function must be called for each time interval T. This is done by a timer, which sets the PID_timer flag when the time interval has passed. When the PID_timer flag is set the main routine reads the desired process value (setpoint) and system process value, calls PID(), and outputs the result to the control input. To increase the accuracy the p_factor, i_factor, and d_factor are scaled with a factor 1:128. The result of the PID algorithm is later scaled back by dividing by 128. The value 128 is used to allow for optimizing in the compiler. = 128 Furthermore the effect of the IFactor and DFactor will depend on the sample time T. = 128 = Integral Windup When the process input, u, reaches a high enough value, it is limited in some way. Either by the numeric range internally in the PID controller, the output range of the controller, or constraints in amplifiers or the process itself. This will happen if there is a large enough difference in the measured process value and the reference set point value, typically because the process has a larger disturbance/load than the system is capable of handling. 9

10 If the controller uses an integral term, this situation can be a problematic. The integral term will sum up as long as the situation last, and when the larger disturbance/load disappear, the PID controller will overcompensate the process input until the integral sum is back to normal. This problem can be avoided in several ways. In this implementation the maximum integral sum is limited by not allowing it to become larger than MAX_I_TERM. The correct size of the MAX_I_TERM will depend on the system and sample time used. 10

11 3. Further Development The PID controller presented here is a simplified example. The controller should work fine, but it might be necessary to make the controller even more robust (limit runaway/overflow) in certain applications. Adding saturation correction on the integral term, basing the proportional term on only the system process value can be necessary. In the calculating of IFactor and DFactor the sample time T is a part of the equation. If the sample time T used is much smaller or larger than 1 second, the accuracy for either IFactor or DFactor will be poor. Consider rewriting the PID algorithm and scaling so accuracy for the integral and derivative terms are kept. 11

12 4. Literature References K. J. Astrom & T. Hagglund, 1995: PID Controllers: Theory, Design, and Tuning. International Society for Measurement and Con. 12

13 5. Revision History Doc Rev. Date Comments 2558C 2558B 2558A 09/2016 Chapter "Features" has been updated. Chapter "Implementation" has been updated by adding the relation to Atmel START. 08/2016 New template and some minor changes 05/2006 Initial document release 13

14 Atmel Corporation 1600 Technology Drive, San Jose, CA USA T: (+1)(408) F: (+1)(408) Atmel Corporation. / Rev.: Atmel, Atmel logo and combinations thereof, Enabling Unlimited Possibilities, AVR, tinyavr, megaavr, and others are registered trademarks or trademarks of Atmel Corporation in U.S. and other countries. Other terms and product names may be trademarks of others. DISCLAIMER: The information in this document is provided in connection with Atmel products. No license, express or implied, by estoppel or otherwise, to any intellectual property right is granted by this document or in connection with the sale of Atmel products. EXCEPT AS SET FORTH IN THE ATMEL TERMS AND CONDITIONS OF SALES LOCATED ON THE ATMEL WEBSITE, ATMEL ASSUMES NO LIABILITY WHATSOEVER AND DISCLAIMS ANY EXPRESS, IMPLIED OR STATUTORY WARRANTY RELATING TO ITS PRODUCTS INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE, SPECIAL OR INCIDENTAL DAMAGES (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS AND PROFITS, BUSINESS INTERRUPTION, OR LOSS OF INFORMATION) ARISING OUT OF THE USE OR INABILITY TO USE THIS DOCUMENT, EVEN IF ATMEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Atmel makes no representations or warranties with respect to the accuracy or completeness of the contents of this document and reserves the right to make changes to specifications and products descriptions at any time without notice. Atmel does not make any commitment to update the information contained herein. Unless specifically provided otherwise, Atmel products are not suitable for, and shall not be used in, automotive applications. Atmel products are not intended, authorized, or warranted for use as components in applications intended to support or sustain life. SAFETY-CRITICAL, MILITARY, AND AUTOMOTIVE APPLICATIONS DISCLAIMER: Atmel products are not designed for and will not be used in connection with any applications where the failure of such products would reasonably be expected to result in significant personal injury or death ( Safety-Critical Applications ) without an Atmel officer's specific written consent. Safety-Critical Applications include, without limitation, life support devices and systems, equipment or systems for the operation of nuclear facilities and weapons systems. Atmel products are not designed nor intended for use in military or aerospace applications or environments unless specifically designated by Atmel as military-grade. Atmel products are not designed nor intended for use in automotive applications unless specifically designated by Atmel as automotive-grade.

ATF15xx Power-On Reset Hysteresis Feature. Abstract. Features. Complex Programmable Logic Device APPLICATION NOTE

ATF15xx Power-On Reset Hysteresis Feature. Abstract. Features. Complex Programmable Logic Device APPLICATION NOTE Complex Programmable Logic Device ATF15xx Power-On Reset Hysteresis Feature APPLICATION NOTE Abstract For some applications, a larger power reset hysteresis is required to prevent an Atmel ATF15xx Complex

More information

AT15291: Migrating QTouch Designs from SAM D MCUs to SAM C MCUs. Scope. Features. QTouch APPLICATION NOTE

AT15291: Migrating QTouch Designs from SAM D MCUs to SAM C MCUs. Scope. Features. QTouch APPLICATION NOTE QTouch AT15291: Migrating QTouch Designs from SAM D MCUs to SAM C MCUs APPLICATION NOTE Scope This application note is a guide to assist users in migrating QTouch designs from Atmel SMART SAM D MCUs to

More information

APPLICATION NOTE. ATA6629/ATA6631 Development Board V2.2 ATA6629/ATA6631. Introduction

APPLICATION NOTE. ATA6629/ATA6631 Development Board V2.2 ATA6629/ATA6631. Introduction APPLICATION NOTE ATA6629/ATA6631 Development Board V2.2 ATA6629/ATA6631 Introduction The development board for the Atmel ATA6629/ATA6631 (ATA6629-EK, ATA6631-EK) is designed to give users a quick start

More information

APPLICATION NOTE. AT11009: Migration from ATxmega64D3/128D3/192D3/256D3 Revision E to Revision I. Introduction. Features.

APPLICATION NOTE. AT11009: Migration from ATxmega64D3/128D3/192D3/256D3 Revision E to Revision I. Introduction. Features. APPLICATION NOTE AT11009: Migration from ATxmega64D3/128D3/192D3/256D3 Revision E to Revision I Atmel AVR XMEGA Introduction This application note lists out the differences and changes between Revision

More information

AT14164: User Calibration of Internal Temperature Sensor - SAM R21. Introduction. SMART ARM-based MCUs APPLICATION NOTE

AT14164: User Calibration of Internal Temperature Sensor - SAM R21. Introduction. SMART ARM-based MCUs APPLICATION NOTE SMART ARM-based MCUs AT14164: User Calibration of Internal Temperature Sensor - SAM R21 APPLICATION NOTE Introduction This application note explains about calibrating and compensating the errors of temperature

More information

Introduction. Reference Documents. AFE Calibration on SAM V/E/S7x Microcontrollers. SMART ARM-based Microcontrollers APPLICATION NOTE

Introduction. Reference Documents. AFE Calibration on SAM V/E/S7x Microcontrollers. SMART ARM-based Microcontrollers APPLICATION NOTE SMART ARM-based Microcontrollers AFE Calibration on SAM V/E/S7x Microcontrollers APPLICATION NOTE Introduction The Atmel SMART SAM V/E/S7x series are high-performance, power-efficient embedded MCUs based

More information

8Mb (1M x 8) One-time Programmable, Read-only Memory

8Mb (1M x 8) One-time Programmable, Read-only Memory Features Fast read access time 90ns Low-power CMOS operation 100µA max standby 40mA max active at 5MHz JEDEC standard packages 32-lead PLCC 32-lead PDIP 5V 10% supply High-reliability CMOS technology 2,000V

More information

AVR122: Calibration of the AVR's internal temperature reference. 8-bit Microcontrollers. Application Note. Features.

AVR122: Calibration of the AVR's internal temperature reference. 8-bit Microcontrollers. Application Note. Features. AVR1: Calibration of the AVR's internal temperature reference Features Two-point and one-point calibration Compensating the ADC output values 1 Introduction This application note describes how to calibrate

More information

ATA2526. Low-voltage IR Receiver ASSP DATASHEET. Features. Applications

ATA2526. Low-voltage IR Receiver ASSP DATASHEET. Features. Applications ATA2526 Low-voltage IR Receiver ASSP DATASHEET Features No external components except P diode Supply-voltage range: 2.7V to 5.5V High sensitivity due to automatic sensitivity adaption (AGC) and automatic

More information

APPLICATION NOTE. Atmel AVR127: Understanding ADC Parameters. Atmel 8-bit Microcontroller. Features. Introduction

APPLICATION NOTE. Atmel AVR127: Understanding ADC Parameters. Atmel 8-bit Microcontroller. Features. Introduction APPLICATION NOTE Atmel AVR127: Understanding ADC Parameters Atmel 8-bit Microcontroller Features Getting introduced to ADC concepts Understanding various ADC parameters Understanding the effect of ADC

More information

AVR1302: Using the XMEGA Analog Comparator. 8-bit Microcontrollers. Application Note. Features. 1 Introduction

AVR1302: Using the XMEGA Analog Comparator. 8-bit Microcontrollers. Application Note. Features. 1 Introduction AVR1302: Using the XMEGA Analog Comparator Features Flexible Input Selection High-speed vs. Low-power Option Selectable Input Hysteresis Comparator 0 Output Available on I/O Pin Scalable Voltage References

More information

APPLICATION NOTE. ATA6621, ATA6621N, ATA6622, ATA6622C, ATA6624, ATA6624C, ATA6626, ATA6626C Development Board ATA6621/22/24/26.

APPLICATION NOTE. ATA6621, ATA6621N, ATA6622, ATA6622C, ATA6624, ATA6624C, ATA6626, ATA6626C Development Board ATA6621/22/24/26. APPLICATION NOTE ATA6621, ATA6621N, ATA6622, ATA6622C, ATA6624, ATA6624C, ATA6626, ATA6626C Development Board ATA6621/22/24/26 Introduction The development board for the Atmel ATA6621/22/24/26 (ATA6621-EK,

More information

Evaluation Kit ATA8520-EK1-F and Extension Board ATA8520-EK3-F (US Version) Kit Content ATAN0157 APPLICATION NOTE

Evaluation Kit ATA8520-EK1-F and Extension Board ATA8520-EK3-F (US Version) Kit Content ATAN0157 APPLICATION NOTE ATAN0157 Evaluation Kit ATA8520-EK1-F and Extension Board ATA8520-EK3-F (US Version) APPLICATION NOTE Kit Content The ATA8520-EK1-F kit includes the following components: Standalone board 902MHz antenna

More information

Atmel U6032B. Automotive Toggle Switch IC DATASHEET. Features. Description

Atmel U6032B. Automotive Toggle Switch IC DATASHEET. Features. Description Atmel U6032B Automotive Toggle Switch IC DATASHEET Features Debounce time: 0.3ms to 6s RC oscillator determines switching characteristics Relay driver with Z-diode Debounced input for toggle switch Three

More information

QTouch Capacitive Touch Technology Copyright Atmel Atmel Corporation

QTouch Capacitive Touch Technology Copyright Atmel Atmel Corporation QTouch Capacitive Touch Technology 1 2013 Copyright Atmel Atmel Corporation Atmel Industry Presence: Recent Design Wins Industrial Consumer Appliance 2 QTouch - Buttons, Sliders, & Wheels Atmel Touch Solutions

More information

AVR42778: Core Independent Brushless DC Fan Control Using Configurable Custom Logic on ATtiny817. Features. Introduction. AVR 8-bit Microcontroller

AVR42778: Core Independent Brushless DC Fan Control Using Configurable Custom Logic on ATtiny817. Features. Introduction. AVR 8-bit Microcontroller AVR 8-bit Microcontroller AVR42778: Core Independent Brushless DC Fan Control Using Configurable Custom Logic on ATtiny817 APPLICATION NOTE Features Base setup for performing core independent brushless

More information

AT02598:Migration from AT86RF212 to AT86RF212B. Description. Features. Atmel MCU Wireless APPLICATION NOTE

AT02598:Migration from AT86RF212 to AT86RF212B. Description. Features. Atmel MCU Wireless APPLICATION NOTE Atmel MCU Wireless AT02598:Migration from AT86RF212 to AT86RF212B APPLICATION NOTE Description This application note assists the users of Atmel Sub-GHz transceiver, AT86RF212 in converting designs to Atmel

More information

APPLICATION NOTE. ATA5279 Application Hints ATAN0003. Features. Description

APPLICATION NOTE. ATA5279 Application Hints ATAN0003. Features. Description APPLICATION NOTE ATA5279 Application Hints ATAN0003 Features General information Boost converter calculation and practical hints Antenna current regulation Oscillator aspects Description Most applications

More information

Atmel LED Driver Technology. Smart LED Power Management for Efficiency, Programmability and Scalability

Atmel LED Driver Technology. Smart LED Power Management for Efficiency, Programmability and Scalability Atmel LED Driver Technology Atmel LED drivers offer systemcentric, mixedsignal LED driver ICs for the backlighting and solidstate lighting markets. This broadbased and rapidly growing market in cludes

More information

AVR1311: Using the XMEGA Timer/Counter Extensions. 8-bit Microcontrollers. Application Note. Features. 1 Introduction

AVR1311: Using the XMEGA Timer/Counter Extensions. 8-bit Microcontrollers. Application Note. Features. 1 Introduction AVR1311: Using the XMEGA Timer/Counter Extensions Features Advanced Waveform extensions (AWeX) - Dead-time insertion - Pattern generation - Fault protection High Resolution Extension (HiRes) - Increases

More information

APPLICATION NOTE. AT11849: QTouch Surface Design Guide. Atmel QTouch. Introduction. Features

APPLICATION NOTE. AT11849: QTouch Surface Design Guide. Atmel QTouch. Introduction. Features APPLICATION NOTE AT11849: QTouch Surface Design Guide Atmel QTouch Introduction User interfaces in consumer products such as wearables, IoT devices, remote controls, and PC/gaming controls are being driven

More information

Flasher IC with 18-mΩ Shunt U6043B

Flasher IC with 18-mΩ Shunt U6043B Features Temperature and Supply Voltage Compensated Flashing Frequency Frequency Doubling Indicates Lamp Outage Relay Driver Output with High Current Carrying Capacity and Low Saturation Voltage Minimum

More information

Atmel ATA6629/ Atmel ATA6631 Development Board V2.2. Application Note. Atmel ATA6629/ATA6631 Development Board V

Atmel ATA6629/ Atmel ATA6631 Development Board V2.2. Application Note. Atmel ATA6629/ATA6631 Development Board V Atmel ATA6629/ATA6631 Development Board V2.2 1. Introduction The development board for the Atmel ATA6629/ATA6631 (ATA6629-EK, ATA6631-EK) is designed to give users a quick start using these ICs and prototyping

More information

TI Designs: Biometric Steering Wheel. Amy Ball TIDA-00292

TI Designs: Biometric Steering Wheel. Amy Ball TIDA-00292 www.ti.com 2 Biometric Steering Wheel - -Revised July 2014 www.ti.com TI Designs: Biometric Steering Wheel - -Revised July 2014 Biometric Steering Wheel 3 www.ti.com 4 Biometric Steering Wheel - -Revised

More information

Current Monitor IC U4793B

Current Monitor IC U4793B Features 10 kv ESD Protection Two Comparators with Common Reference Tight Threshold Tolerance Constant Threshold NPN Output Interference and Damage-protection According to VDE 0839 and ISO/CD 7637 EMI

More information

ShortLink Wide Band Antenna Family Models: SLA150-SMA, SLA150-UFL. Wide Band Antenna Family SLA150 Datasheet

ShortLink Wide Band Antenna Family Models: SLA150-SMA, SLA150-UFL. Wide Band Antenna Family SLA150 Datasheet ShortLink Wide Band Antenna Family Models: SLA150-SMA, SLA150-UFL Patent-pending omnidirectional antenna, based on a hybrid-design for market leading performance. Excellent efficiency over a very wide

More information

Low-cost Phase-control IC with Soft Start

Low-cost Phase-control IC with Soft Start Features Full Wave Current Sensing Compensated Mains Supply Variations Variable Soft Start or Load-current Sensing Voltage and Current Synchronization Switchable Automatic Retriggering Triggering Pulse

More information

8-bit. Application Note. Microcontrollers. AVR077: Opto Isolated Emulation for the DebugWIRE

8-bit. Application Note. Microcontrollers. AVR077: Opto Isolated Emulation for the DebugWIRE AVR077: Opto Isolated Emulation for the DebugWIRE. Features DebugWIRE emulation Opto isolation Works with AVR Dragon and JTAGICE mkii. Introduction This application note describes how to implement an optoisolated

More information

UM DALI getting started guide. Document information

UM DALI getting started guide. Document information Rev. 1 6 March 2012 User manual Document information Info Keywords Abstract Content LPC111x, LPC1343, ARM, Cortex M0/M3, DALI, USB, lighting control, USB to DALI interface. This user manual explains how

More information

UM Slim proximity touch sensor demo board OM Document information

UM Slim proximity touch sensor demo board OM Document information Rev. 1 26 April 2013 User manual Document information Info Keywords Abstract Content PCA8886, Touch, Proximity, Sensor User manual for the demo board OM11052 which contains the touch and proximity sensor

More information

STEVAL-ISQ010V1. High-side current-sense amplifier demonstration board based on the TSC102. Features. Description

STEVAL-ISQ010V1. High-side current-sense amplifier demonstration board based on the TSC102. Features. Description High-side current-sense amplifier demonstration board based on the TSC102 Data brief Features Independent supply and input common-mode voltages Wide common-mode operating range: 2.8 V to 30 V Wide common-mode

More information

Low Voltage Brushed Motor System

Low Voltage Brushed Motor System Low Voltage Brushed Motor System Tests performed: 1. RPM vs Output Voltages 2. Thermal Imaging 3. Output Voltage, Output Current, and Direction Voltage for100% duty Cycle a. Forward Direction b. Reverse

More information

AN Energy Harvesting with the NTAG I²C and NTAG I²C plus. Application note COMPANY PUBLIC. Rev February Document information

AN Energy Harvesting with the NTAG I²C and NTAG I²C plus. Application note COMPANY PUBLIC. Rev February Document information Rev. 1.0 1 February 2016 Application note COMPANY PUBLIC Document information Info Content Keywords NTAG I²C, NTAG I²C plus, Energy Harvesting Abstract Show influencing factors and optimization for energy

More information

EVAL-RHF310V1. EVAL-RHF310V1 evaluation board. Features. Description

EVAL-RHF310V1. EVAL-RHF310V1 evaluation board. Features. Description evaluation board Data brief Features Mounted Engineering Model RHF310K1: Rad-hard, 120 MHz, operational amplifier (see RHF310 datasheet for further information) Mounted components (ready-to-use) Material:

More information

SKY65120: WCDMA PA Bias Method For Lower Junction Temperature

SKY65120: WCDMA PA Bias Method For Lower Junction Temperature application note SKY6120: WCDMA PA Bias Method For Lower Junction Temperature Introduction This application note describes how SKY6120 may be used with reduced bias control to obtain better thermal performance.

More information

Flasher, 18-mΩ Shunt, Frequency Doubling Disabling U6433B

Flasher, 18-mΩ Shunt, Frequency Doubling Disabling U6433B Features Temperature and Voltage Compensated Frequency Warning Indication of Lamp Failure by Means of Frequency Doubling can be Disabled Voltage Dependence of the Car Indicator Lamps Compensated for Lamp

More information

Flasher, 30 mω Shunt, Pilot Lamp to GND or V Batt U2043B

Flasher, 30 mω Shunt, Pilot Lamp to GND or V Batt U2043B Features Temperature and Voltage Compensated Frequency Warning Indication of Lamp Failure by Means of Frequency Doubling Minimum Lamp Load for Flasher Operation 10W Relay Output with High Current Carrying

More information

Flasher IC with U643B

Flasher IC with U643B Features Temperature and Supply Voltage Compensated Flashing Frequency Frequency Doubling Indicates Lamp Outage Relay Driver Output with High Current Carrying Capacity and Low Saturation Voltage Minimum

More information

AN MIFARE Plus Card Coil Design. Application note COMPANY PUBLIC. Rev April Document information

AN MIFARE Plus Card Coil Design. Application note COMPANY PUBLIC. Rev April Document information MIFARE Plus Card Coil Design Document information Info Content Keywords Contactless, MIFARE Plus, ISO/IEC 1443, Resonance, Coil, Inlay Abstract This document provides guidance for engineers designing magnetic

More information

Ultra-Low-Noise Amplifiers

Ultra-Low-Noise Amplifiers WHITE PAPER Ultra-Low-Noise Amplifiers By Stephen Moreschi and Jody Skeen This white paper describes the performance and characteristics of two new ultra-low-noise LNAs from Skyworks. Topics include techniques

More information

UHF ASK/FSK Receiver ATA5721 ATA5722. Features

UHF ASK/FSK Receiver ATA5721 ATA5722. Features Features High FSK Sensitivity: 105.5 dbm at 20 Kbits/s, 109 dbm at 2.4 Kbits/s (433.92 MHz) High ASK Sensitivity: 111.5 dbm at 10 Kbits/s, 116 dbm at 2.4 Kbits/s (100% ASK Carrier Level, 433.92 MHz) Low

More information

UM DALI getting started guide. Document information

UM DALI getting started guide. Document information Rev. 2 6 March 2013 User manual Document information Info Content Keywords LPC111x, LPC1343, ARM, Cortex M0/M3, DALI, USB, lighting control, USB to DALI interface. Abstract This user manual explains how

More information

ATA6140. Flasher Application Module. Application Note. ATA Flasher Application Module. 1. Description

ATA6140. Flasher Application Module. Application Note. ATA Flasher Application Module. 1. Description - Flasher Application Module 1. Description Figure 1-1. Flasher Application Module Flasher Application Module Application Note The module version presented here is one of the connection options described

More information

SMV LF and SMV LF: Surface Mount, 0402 Hyperabrupt Tuning Varactor Diodes

SMV LF and SMV LF: Surface Mount, 0402 Hyperabrupt Tuning Varactor Diodes DATA SHEET SMV1247-040LF and SMV1249-040LF: Surface Mount, 0402 Hyperabrupt Tuning Varactor Diodes Applications Wide bandwidth VCOs Wide voltage range, tuned phase shifters and filters Features High capacitance

More information

Test Report TIDA November 2015

Test Report TIDA November 2015 Test Report TIDA-00830 November 2015 TIDA-00830 24V Stepper Motor Design with AutoTune TI Reference Design Design Overview TIDA-00830 is an application overview of TI s automatic stepper motor tuning feature

More information

SKY LF: Low Noise Amplifier Operation

SKY LF: Low Noise Amplifier Operation application note SKY655-372LF: Low Noise Amplifier Operation Introduction The SKY655-372LF is a high performance, low noise, n-channel, depletion mode phemt, fabricated from Skyworks advanced phemt process

More information

AN2979 Application note

AN2979 Application note Application note Implementing a simple ADC using the STM8L101xx comparator Introduction This application note gives a simple method for implementing an A/D converter with a minimum amount of external components:

More information

AN2333 Application note

AN2333 Application note Application note White LED power supply for large display backlight Introduction This application note is dedicated to the STLD40D, it's a boost converter that operates from 3.0 V to 5.5 V dc and can provide

More information

AN3116 Application note

AN3116 Application note Application note STM32 s ADC modes and their applications Introduction STM32 microcontrollers have one of the most advanced ADCs on the microcontroller market. You could imagine a multitude of applications

More information

AN2944 Application note

AN2944 Application note Application note Plethysmograph based on the TS507 Introduction This application note provides a method to make an analog front-end plethysmograph (from the ancient greek plethysmos, which means increase),

More information

8-bit Microcontroller with 2K Bytes In-System Programmable Flash. ATtiny261A. Appendix A. Appendix A ATtiny261A Specification at 105 C

8-bit Microcontroller with 2K Bytes In-System Programmable Flash. ATtiny261A. Appendix A. Appendix A ATtiny261A Specification at 105 C Appendix A ATtiny261A Specification at 15 C This document contains information specific to devices operating at temperatures up to 15 C. Only deviations are covered in this appendix, all other information

More information

AN1489 Application note

AN1489 Application note Application note VIPower: non isolated power supply using VIPer20 with secondary regulation Introduction Output voltage regulation with adjustable feedback compensation loop is very simple when a VIPer

More information

AN3332 Application note

AN3332 Application note Application note Generating PWM signals using STM8S-DISCOVERY Application overview This application user manual provides a short description of how to use the Timer 2 peripheral (TIM2) to generate three

More information

APPLICATION NOTE. Practical Hints for Enhancing EMC Performance with Atmel ATA6612/ATA6613 ATA6612/ATA6613. Description

APPLICATION NOTE. Practical Hints for Enhancing EMC Performance with Atmel ATA6612/ATA6613 ATA6612/ATA6613. Description APPLICATION NOTE Practical Hints for Enhancing EMC Performance with Atmel ATA6612/ATA6613 ATA6612/ATA6613 Description Highly integrated solutions such as the Atmel ATA6612/ATA6613 automotive-grade system-in-package

More information

STEVAL-CCA040V1. 4X10 Watt dual/quad power amplifier demonstration board based on the STA540SAN. Features. Description

STEVAL-CCA040V1. 4X10 Watt dual/quad power amplifier demonstration board based on the STA540SAN. Features. Description 4X10 Watt dual/quad power amplifier demonstration board based on the STA540SAN Features High output-power capability: 4x10 W / 4 Ω at 17 V, 1 KHz, THD = 10% 2x26 W / 4 Ω at 14.4 V, 1 KHz, THD = 10% 2x15

More information

AN1441 Application note

AN1441 Application note Application note ST890: a high side switch for PCMCIA and USB applications Introduction The ST890 is a low voltage, P-channel MOSFET power switch, intended for high side load switching applications. Its

More information

AN279 Application note

AN279 Application note Application note Short-circuit protection on the L6201, L6202 and the L6203 By Giuseppe Scrocchi and Thomas Hopkins With devices like the L6201, L6202 or L6203 driving external loads you can often have

More information

2.4 GHz 2.5 GHz FlexNotch 2 dbi Antenna w/u.fl Cable, 100mm

2.4 GHz 2.5 GHz FlexNotch 2 dbi Antenna w/u.fl Cable, 100mm 2.4 GHz 2.5 GHz FlexNotch 2 dbi Antenna w/u.fl Cable, 100mm ORDERING INFORMATION Order Number Description 001-0015 2.4 GHz FlexNotch Antenna w/u.fl Cable, 100mm 001-0023 2.4GHz FlexNotch Antenna w/ MHF4L

More information

AN4112 Application note

AN4112 Application note Application note Using STM32F05xx analog comparators in application cases Introduction This document describes six application cases of the two analog comparators embedded in the ultra-low power STM32F05xx

More information

UM UBA2024 application development tool. Document information

UM UBA2024 application development tool. Document information Rev. 02 4 February 2010 User manual Document information Info Content Keywords UBA2024, application, development, tool, CFL, IC Abstract User manual for the for CFL lamps Revision history Rev Date Description

More information

UM10950 Start-up Guide for FRDM-KW41Z Evaluation Board Bluetooth Paring example with NTAG I²C plus Rev February

UM10950 Start-up Guide for FRDM-KW41Z Evaluation Board Bluetooth Paring example with NTAG I²C plus Rev February Start-up Guide for FRDM-KW41Z Evaluation Board Bluetooth Paring example with NTAG I²C plus Document information Info Content Keywords NTAG I²C plus, FRDM-KW41Z Abstract This document gives a start-up guide

More information

STEVAL-ISA005V1. 1.8W buck topology power supply evaluation board with VIPer12AS. Features. Description. ST Components

STEVAL-ISA005V1. 1.8W buck topology power supply evaluation board with VIPer12AS. Features. Description. ST Components Features Switch mode general purpose power supply Input: 85 to 264Vac @ 50/60Hz Output: 15V, 100mA @ 50/60Hz Output power (pick): 1.6W Second output through linear regulator: 5V / 60 or 20mA Description

More information

BD235 BD237. Low voltage NPN power transistors. Features. Applications. Description. Low saturation voltage NPN transistors

BD235 BD237. Low voltage NPN power transistors. Features. Applications. Description. Low saturation voltage NPN transistors BD235 BD237 Low voltage NPN power transistors Features Low saturation voltage NPN transistors Applications Audio, power linear and switching applications Description The devices are manufactured in Planar

More information

AN PR533 USB stick - Evaluation board. Application note COMPANY PUBLIC. Rev May Document information

AN PR533 USB stick - Evaluation board. Application note COMPANY PUBLIC. Rev May Document information PR533 USB stick - Evaluation board Document information Info Content Keywords PR533, CCID, USB Stick, Contactless Reader Abstract This application notes describes the PR533 evaluation board delivered in

More information

DATASHEET 4D SYSTEMS. Arduino Display Module Pack TURNING TECHNOLOGY INTO ART. Featuring a 2.4 Display Module ulcd-24-ptu-ar

DATASHEET 4D SYSTEMS. Arduino Display Module Pack TURNING TECHNOLOGY INTO ART. Featuring a 2.4 Display Module ulcd-24-ptu-ar TURNING TECHNOLOGY INTO ART DATASHEET Arduino Display Module Pack Featuring a 2.4 Display Module Document Date: 24 th January 2014 Document Revision: 1.4 Uncontrolled Copy when printed or downloaded. Please

More information

SPD1101/SPD1102/SPD : Sampling Phase Detectors

SPD1101/SPD1102/SPD : Sampling Phase Detectors DATA SHEET SPD1101/SPD1102/SPD1103-111: Sampling Phase Detectors NOTE: These products have been discontinued. The Last Time Buy opportunity expires on 12 April 2010. Applications Phase-Locked Loops Phase-locked

More information

D44H8 - D44H11 D45H8 - D45H11

D44H8 - D44H11 D45H8 - D45H11 D44H8 - D44H11 D45H8 - D45H11 Complementary power transistors Features. Low collector-emitter saturation voltage Fast switching speed TAB Applications Power amplifier Switching circuits 1 2 3 Description

More information

Rahul Prakash, Eugenio Mejia TI Designs Precision: Verified Design Digitally Tunable MDAC-Based State Variable Filter Reference Design

Rahul Prakash, Eugenio Mejia TI Designs Precision: Verified Design Digitally Tunable MDAC-Based State Variable Filter Reference Design Rahul Prakash, Eugenio Mejia TI Designs Precision: Verified Design Digitally Tunable MDAC-Based State Variable Filter Reference Design TI Designs Precision TI Designs Precision are analog solutions created

More information

ST26025A. PNP power Darlington transistor. Features. Applications. Description

ST26025A. PNP power Darlington transistor. Features. Applications. Description ST26025A PNP power Darlington transistor Features High current monolithic Darlington configuration Integrated antiparallel collector-emitter diode Applications Automotive fan control Linear and switching

More information

R_ Driving LPC1500 with EPSON Crystals. Rev October Document information. Keywords Abstract

R_ Driving LPC1500 with EPSON Crystals. Rev October Document information. Keywords Abstract Rev. 1.0 06 October 2015 Report Document information Info Keywords Abstract Content LPC15xx, RTC, Crystal, Oscillator Characterization results of EPSON crystals with LPC15xx MHz and (RTC) 32.768 khz Oscillator.

More information

TDA W hi-fi audio amplifier. Features. Description

TDA W hi-fi audio amplifier. Features. Description TDA2030 14 W hi-fi audio amplifier Features Wide-range supply voltage, up to 36 V Single or split power supply Short-circuit protection to ground Thermal shutdown Description The TDA2030 is a monolithic

More information

APPLICATION NOTE. Atmel AVR2067: Crystal Characterization for AVR RF. Atmel MCU Wireless. Features. Description

APPLICATION NOTE. Atmel AVR2067: Crystal Characterization for AVR RF. Atmel MCU Wireless. Features. Description APPLICATION NOTE Features Atmel AVR2067: Crystal Characterization for AVR RF Atmel MCU Wireless Selection of appropriate crystals for Atmel MCU Wireless applications Recommended list of 16MHz and 32kHz

More information

SMV LF: Surface Mount, 0402 Silicon Hyperabrupt Tuning Varactor Diode

SMV LF: Surface Mount, 0402 Silicon Hyperabrupt Tuning Varactor Diode DATA SHEET SMV1232-040LF: Surface Mount, 0402 Silicon Hyperabrupt Tuning Varactor Diode Applications Wide bandwidth VCOs Wide range voltage-tuned phase shifters and filters Features Low series resistance:

More information

256K (32K x 8) Unregulated Battery. Programmable, Read-only Memory

256K (32K x 8) Unregulated Battery. Programmable, Read-only Memory Features Fast read access time 70ns Dual voltage range operation Unregulated battery power supply range, 2.7V to 3.6V, or Standard power supply range, 5V 10% Pin compatible with JEDEC standard Atmel AT27C256R

More information

SMP1302 Series: Switch and Attenuator Plastic Packaged PIN Diodes

SMP1302 Series: Switch and Attenuator Plastic Packaged PIN Diodes DATA SHEET SMP1302 Series: Switch and Attenuator Plastic Packaged PIN Diodes Applications TV distribution and cellular base stations High volume switch and attenuators Features Designed for base station

More information

-binary sensors and actuators (such as an on/off controller) are generally more reliable and less expensive

-binary sensors and actuators (such as an on/off controller) are generally more reliable and less expensive Process controls are necessary for designing safe and productive plants. A variety of process controls are used to manipulate processes, however the most simple and often most effective is the PID controller.

More information

AN4014 Application Note Adjustable LED blinking frequency using a potentiometer and STM8SVLDISCOVERY Application overview

AN4014 Application Note Adjustable LED blinking frequency using a potentiometer and STM8SVLDISCOVERY Application overview Application Note Adjustable LED blinking frequency using a potentiometer and STM8SVLDISCOVERY Application overview Note: This document introduces a very simple application example which is ideal for beginners

More information

Order codes Marking Polarity Package Packaging. MJD44H11T4 MJD44H11 NPN DPAK Tape and reel MJD45H11T4 MJD45H11 PNP DPAK Tape and reel

Order codes Marking Polarity Package Packaging. MJD44H11T4 MJD44H11 NPN DPAK Tape and reel MJD45H11T4 MJD45H11 PNP DPAK Tape and reel MJD44H11 MJD45H11 Complementary power transistors Features. Low collector-emitter saturation voltage Fast switching speed Surface-mounting TO-252 (DPAK) power package in tape and reel (suffix "T4") Applications

More information

AN2167 Application note

AN2167 Application note Application note Using the STPM01 with a shunt current sensor Introduction Note: This document describes how a shunt current sensor can be used with the STPM01 metering device in single-phase metering

More information

AN Maximum RF Input Power BGU6101. Document information. Keywords Abstract

AN Maximum RF Input Power BGU6101. Document information. Keywords Abstract Maximum RF Input Power BGU6101 Rev. 1 10 September 2015 Application note Document information Info Keywords Abstract Content BGU6101, MMIC LNA, Maximum RF Input Power This document provides RF and DC test

More information

Zero-voltage Switch with Adjustable Ramp T2117

Zero-voltage Switch with Adjustable Ramp T2117 Features Direct Supply from the Mains Current Consumption 0.5 ma Very Few External Components Full-wave Drive No DC Current Component in the Load Circuit Negative Output Current Pulse Typically 100 ma

More information

AN4233 Application note

AN4233 Application note Application note Sound Terminal : a method for measuring the total thermal resistance (R th ) in the final application Introduction By Marco Brugora The purpose of this document is to provide a methodology

More information

PN7120 NFC Controller SBC Kit User Manual

PN7120 NFC Controller SBC Kit User Manual Document information Info Content Keywords OM5577, PN7120, Demo kit, Raspberry Pi, BeagleBone Abstract This document is the user manual of the PN7120 NFC Controller SBC kit Revision history Rev Date Description

More information

Antenna Design Guide

Antenna Design Guide Antenna Design Guide Last updated February 11, 2016 330-0093-R1.3 Copyright 2012-2016 LSR Page 1 of 23 Table of Contents 1 Introduction... 3 1.1 Purpose & Scope... 3 1.2 Applicable Documents... 3 1.3 Revision

More information

Application Note Closed-Loop Motor Control

Application Note Closed-Loop Motor Control Application Note ClosedLoop Motor Control Contact: Brazen Tek, Inc. 011 Ventura Blvd. Suite 10 Woodland Hills, CA 916 Tel/Fax: (818) 1096 Email: info@brazentek.com January 009 Introduction Based on the

More information

ATA8401. UHF ASK/FSK Industrial Transmitter DATASHEET. Features. Applications

ATA8401. UHF ASK/FSK Industrial Transmitter DATASHEET. Features. Applications ATA801 UHF ASK/FSK Industrial Transmitter DATASHEET Features Integrated PLL loop ilter ESD protection (3kV HBM/150V MM) High output power (8.0dBm) with low supply current (9.0mA) Modulation scheme ASK/FSK

More information

T5753C. UHF ASK/FSK Transmitter DATASHEET. Features

T5753C. UHF ASK/FSK Transmitter DATASHEET. Features T553C UHF ASK/FSK Transmitter DATASHEET Features Integrated PLL loop ilter ESD protection also at / (3kV HBM/150V MM; Except pin 2: 3kV HBM/100V MM) High output power (8.0dBm) with low supply current (9.0mA)

More information

OM29110 NFC's SBC Interface Boards User Manual. Rev May

OM29110 NFC's SBC Interface Boards User Manual. Rev May Document information Info Content Keywords Abstract OM29110, NFC, Demo kit, Raspberry Pi, BeagleBone, Arduino This document is the user manual of the OM29110 NFC s SBC Interface Boards. Revision history

More information

8Mb (1M x 8) One-time Programmable, Read-only Memory

8Mb (1M x 8) One-time Programmable, Read-only Memory Features Fast read access time 90ns Low-power CMOS operation 100µA max standby 40mA max active at 5MHz JEDEC standard packages 32-lead PLCC 32-lead PDIP 5V 10% supply High-reliability CMOS technology 2,000V

More information

UM0890 User manual. 2-stage RF power amplifier with LPF based on the PD85006L-E and STAP85050 RF power transistors. Introduction

UM0890 User manual. 2-stage RF power amplifier with LPF based on the PD85006L-E and STAP85050 RF power transistors. Introduction User manual 2-stage RF power amplifier with LPF based on the PD85006L-E and STAP85050 RF power transistors Introduction This user manual briefly describes the fution and use of the STEVAL-TDR0V demonstration

More information

UM User manual for di2c demo board. Document information

UM User manual for di2c demo board. Document information Rev. 1.1 10 July 2017 User manual Document information Info Keywords Abstract Content di2c-bus, differential I 2 C-bus buffer, PCA9614, PCA9615, PCA9616 User manual for the di2c demo board OM13523. This

More information

TOSHIBA Original CMOS 16-Bit Microcontroller. TLCS-900/H Series TMP95C061BFG TMP95C061BDFG. Semiconductor Company

TOSHIBA Original CMOS 16-Bit Microcontroller. TLCS-900/H Series TMP95C061BFG TMP95C061BDFG. Semiconductor Company TOSHIBA Original CMOS 16-Bit Microcontroller TLCS-900/H Series TMP95C061BFG TMP95C061BDFG Semiconductor Company TMP95C061B Document Change Notification The purpose of this notification is to inform customers

More information

TED-Kit 2, Release Notes

TED-Kit 2, Release Notes TED-Kit 2 3.6.0 December 5th, 2014 Document Information Info Content Keywords TED-Kit 2, Abstract This document contains the release notes for the TED-Kit 2 software. Contact information For additional

More information

AVR443: Sensor-based control of three phase Brushless DC motor. 8-bit Microcontrollers. Application Note. Features. 1 Introduction

AVR443: Sensor-based control of three phase Brushless DC motor. 8-bit Microcontrollers. Application Note. Features. 1 Introduction AVR443: Sensor-based control of three phase Brushless DC motor Features Less than 5us response time on Hall sensor output change Theoretical maximum of 1600k RPM Over-current sensing and stall detection

More information

ANTENNA DESIGN GUIDE. Last updated March 8 th, The information in this document is subject to change without notice.

ANTENNA DESIGN GUIDE. Last updated March 8 th, The information in this document is subject to change without notice. Last updated March 8 th, 2012 330-0092-R2.0 Copyright 2012 LS Research, LLC Page 1 of 22 Table of Contents 1 Introduction... 3 1.1 Purpose & Scope... 3 1.2 Applicable Documents... 3 1.3 Revision History...

More information

TN LPC1800, LPC4300, MxMEMMAP, memory map. Document information

TN LPC1800, LPC4300, MxMEMMAP, memory map. Document information Rev. 1 30 November 2012 Technical note Document information Info Keywords Abstract Content LPC1800, LPC4300, MxMEMMAP, memory map This technical note describes available boot addresses for the LPC1800

More information

STEVAL-CCA011V1. Filter-free stereo 2x2.5 W Class-D audio power amplifier demonstration board based on the TS2012FC. Features.

STEVAL-CCA011V1. Filter-free stereo 2x2.5 W Class-D audio power amplifier demonstration board based on the TS2012FC. Features. Filter-free stereo x.5 W Class-D audio power amplifier demonstration board based on the TS0FC Data brief Features Operating range from V CC =.5 V to 5.5 V Dedicated standby mode active low for each channel

More information

UM GreenChip TEA1995DB1295 synchronous rectifier controller demo board. Document information

UM GreenChip TEA1995DB1295 synchronous rectifier controller demo board. Document information GreenChip TEA1995DB1295 synchronous rectifier controller demo board Rev. 1 8 July 2015 User manual Document information Info Keywords Abstract Content TEA1995T, LLC converter, dual Synchronous Rectifier

More information

TIDA Test Report 1/4/2016. TIDA Test Report 1/4/2016

TIDA Test Report 1/4/2016. TIDA Test Report 1/4/2016 1/4/2016 TIDA-00808 Test Report 1/4/2016 Table of Contents I. Overview... 3 II. Power Specification... 3 III. Reference Board... 4 IV. Max Output Current... 5 V. Efficiency... 5 VI. Thermal... 6 VII. Power

More information

UM OM29263ADK Quick start guide antenna kit COMPANY PUBLIC. Document information

UM OM29263ADK Quick start guide antenna kit COMPANY PUBLIC. Document information Rev. 1.0 8 February 2018 User manual 465010 COMPANY PUBLIC Document information Information Keywords Abstract Content NFC antenna, antenna kit, CLEV663B, CLRC663 plus, NFC Antenna Development Kit, OM29263ADK

More information