Advanced Sports Timer

Size: px
Start display at page:

Download "Advanced Sports Timer"

Transcription

1 Advanced Sports Timer ECE 445 Final Paper Patrick Tchassem Noukimi Cristian Velazquez Santiago Gutierrez Group 63 TA: Yuchen He May 3, 2017

2 Abstract This document discusses the design and implementation of a multipurpose sports timer and the problem associated with monitoring the time of multiple track athletes. It demonstrates how we took different technical approaches in the aim of solving the problem while being cost effective. In an attempt of solving the problem, we designed a system that would record athlete s time and pulse, then transmit wirelessly to the coach phone. This paper also includes the requirements and verification necessary to successfully detect any discrepancy in our results. In the road of successfully accomplishing our objectives, we learned about the difficulties in implementation due to differences in theoretical calculations and error in parts from tolerances as well as difficulties in tying the different modules together. Lastly, this paper discusses the ethical and safety concerns that were taken into account during the entire process of completing this project and future work. 2

3 Contents 1 Introduction Objectives Problem Features Design Overall Block Description Power Module Charging Unit Battery Voltage Regulator Control Module Interface Module LCD Display Heartbeat Sensor Buttons Wireless Module Design Verification Power Module Control Interface Wireless Software Cost 17 5 Conclusion Accomplishment Future Work and Uncertainties

4 1 Introduction 1.1 Objectives The objective of this project is to allow a track coach to monitor the performances of different athletes in a team at the same time. The problem came from the current process of monitoring athletes performances, which requires sprinters and runners break form to pause and look at their times, and have to orally or manually write down their times for the coach to evaluate and consider. We proposed a solution that could annihilate the different problems encountered in the current process by using a design similar to a stopwatch that can be easily and discreetly worn on the multiple fingers, without impeding their form when running. The device will be able to accurately record athletes time and heartbeat as they run around a track, logging and saving their data on the device s memory each time the lap button is pressed. The device will be able to, wirelessly transmit the results to a phone, using near-field communication (NFC). 1.2 Problem The idea for the project came from a track coach from Rhode Island who was not satisfied with the current stopwatch timers on the market. The coach proposed the idea of being able to view multiple athletes times as they run around the track. He thought about a device that will be comfortable in the athlete s hand, as well as allowing them to conveniently track their times without a change in gait, and more importantly, to be able to record data without interrupting practice. Those data will be saved onto the device s memory and then sent through Near-Field communication to the coach s phone. There are many stopwatches currently on the market, most of them do not have the number of modes that we are looking to implement (such as lap interval timer, countdown timer, interval exercise timer, just to name the few.), and none of them allow the transmission of the data wirelessly to a phone where the data are viewed neatly in graphical form or table form which simplifies the training analysis. 4

5 1.3 Features Record athlete time on the a button pressed. Display athlete pulse on the LCD screen Store collected data on the micro-controller internal memory. Send data wirelessly from device to phone using NFC transmission. 2 Design Our whole system includes four mains modules: The power module, the interface module, the control module and the wireless module. They were interconnected as shown in Figure 1, which is representative of the overall system design. Figure 1: Design Block Diagram 5

6 2.1 Overall Block Description In our design, the power module is the block that processes power accordingly to every other module in the circuit. Equipped with a charging circuit, that has for purpose to charge the lithium-ion battery whenever needed, It also supplies three different voltages needed by the other modules of the system. The wireless module is the block responsible for transmitting the data stored in the microprocessor internal memory to the phone via NFC transmission. The control module, made up of just the microprocessor (STM32F030K6T6), is the block responsible for running the different instructions and computations using the internal real time clock (RTC). The interface module is the block made up of buttons, heartbeat sensor and a LCD screen. The buttons are used for different purposes and modes, while the screen is the main peripheral that displays all information needed to be read. The heartbeat sensor on the other hand, is the device responsible of recording the athlete pulse. 2.2 Power Module The power module is made up of three main sub-modules: the charging circuit, Li-ion battery, and the voltage regulator. The charger circuit is used to charge the li-ion battery once the device is connected to a USB port. The voltage regulator sub-module is made up of two DC-DC Buck converters and a DC-DC Boost converter, responsible, respectively to output from the steady 3.7 V battery voltage,1.8 ± 5%V, 3.3 ± 5%V, and 5 ± 5%V with respective maximum current of 100mA, 100mA, and 200mA. Figure 2 shows the circuit schematic of the power module, while Figure 3 shows the actual hardware product of the power module. 6

7 Figure 2: Power Module Schematic Figure 3: Power Module Board 7

8 2.2.1 Charging Unit The li-ion charger circuit utilizes the micro-usb port in order to charge the li-ion battery when it no longer contains charge. The charging circuit incorporates the integrated circuit MAX1555EZK- T from Maxim Integrated that can also allow, when charging the battery to power the device [1]. In our design, we added an LED that light up as soon as the device is connected to a USB port and go off as soon as the battery is fully charged. The mains purpose of the LED are the logic to give the battery level charge and the protection against excess charge of the battery Battery For our design, we used a 3.7V, 2000mAh li-ion battery. The battery provides power only when the on-switch is turned on. Once discharged, the battery is be charged using a micro-usb cable for another cycle of usage. The battery used in our device is rated to last more than 400 cycles of charge [2]. We ensured the protection of the battery against short circuit damages by providing a good and safe soldering on the PCB. The maximum over charge voltage of the battery is 4.2V [2] Voltage Regulator As mentioned earlier, the voltage regulator module is made of one Boost converter NCP1402, from ON Semiconductor, with internal switching frequency. It purpose is to step up the nominal 3.7V from the battery to 5V, which is the voltage required by the LCD screen display. The module is also constituted of two Buck converters MAX and MAX , also with internal switching frequencies, both from Maxim integrated, that respectively regulate the input voltage from the battery to 3.3V, needed by the micro-controller and the wireless module, and to 1.8V needed by the heartbeat sensor in the interface module. The different data-sheet helped us determinate the values of different components needed in the typical schematic application. For instance, the NCP1402 data-sheet provided us formula to calculates the components value depending of the minimum input voltage and the output voltage needed. Equation (1) allowed us to have the value of the maximum inductance needed, knowing that the maximum output current is 200mA and M equivalent to [3]. Equation (2) helped us find the value of the output capacitor when the input capacitor is set at 10µF and K1 is equivalent to [3]. 8

9 V 2 in-min L = M( ) L = ( ) = 48µH (1) V out I out-max C out = K 1 ( C in V 2 out ) C out = ( ) = 68µF (2) V in-min 3.2 We followed the same process in finding the externals parameters values for the two bucks converters used. As mentioned earlier we followed the data-sheet, used the given formula as well as their typical operating circuit, depending of the input- output power we wanted. 2.3 Control Module The control module is solely governed by the micro-controller STM32F030K6T6 from ST Electronics. It takes care of all the communication going on between the interface module and the wireless module. The control module is also the responsible for all the calculations and data storage in our design. The micro-controller is incorporated with 4kB of Random Access Memory (RAM), and 32kB of flash memory that were supposed to be used to store the data to be transmitted. Figure 4 below shows the schematic connection between the remaining modules of our design. The micro-controller used in the control module runs at 48MHz as seen in its data-sheet [4]. It sends the logged data to the NFC chip RF430CL330HCPWR from Texas Instruments, for wireless transmission using NFC to a phone. The protocol used to communicate between the control module and the wireless module is the serial peripheral interface bus commonly called SP I. The micro-controller also takes inputs from the buttons and performs the appropriate operations, such as stopping the timer when the stop button is pressed, or recording a lap time just to name the few. The LCD screen display communicates with the microprocessor in order to display the time, heartbeat, and the mode of the device. The LCD screen uses its own simple 4-bit protocol to communicate back and forth with the micro-controller [5]. The later also communicates with the heartbeat sensor in the interface module using I 2 C protocol. The heartbeat sensor is convenient in offering feedback to the athlete. 9

10 Figure 4: Control Module, Wireless Module and Interface Module Schematic 2.4 Interface Module The interface module serves as the communication canal between the user and the device. It contains the buttons, which are the mains user input, the LCD display, which serves as tool or a mean to obtain feedback from the device. It also contains the heartbeat sensor, which is mainly needed to obtain the athlete pulse. The different sub-modules of the interface module can be seen on the Figure 4 above. However, we did not include the buttons in the dotted area of the interface module because they were all over the place in our schematic LCD Display The LCD display is a simple 16x2 character display with SP I communication protocol as previously mentioned earlier. The display is responsible for exhibiting the time, mode, and the heartbeat of the user wearing the device. The LCD had to only be able to display text easily and fast. In order to make sure that it was working correctly we printed out several different tests, all passed easily. 10

11 2.4.2 Heartbeat Sensor The heartbeat sensor we used is MAX30100EFD from Maxim Integrated. The sensor has a resolution between 50 sample per second and 1000 sample per second, so this was more than sufficient to measure our users heart rate in real time. It operates at a voltages between 2.2V and 3.3V and draws at typical operation 20mA of current. Its total power dissipation is 44 mw h [8]. The interfacing with the processor will involve reading and writing to a FIFO on the sensor. The FIFO in the sensor contains raw analog data that was sampled, in order to extract the beats per minute, one would need to pass the data first through a low-pass filter, then through another filter that accentuates the peaks. Once the filtering is done, there must be an algorithm made to count the peaks within a certain time slice, and extrapolate the beats per minute from there Buttons The six buttons on our board were responsible for interacting with the athlete or user. The buttons controlled the stop start of the timer, reset for the whole board, mode selection, and other buttons for different mode interaction. For example, mode two was a countdown timer. We incorporated two extra buttons in order to increment or decrement the timer by 30 second intervals. The buttons were debounced in order to mitigate any glitches caused by the mechanical buttons. This is vital since we don t want to press a button to start the clock and then immediately stop due to a mechanical bounce. Once we added the debouncer circuit, shown in Figure 5, the interrupts to the microprocessor worked perfectly and efficiently without any errors. The simple debouncer circuit uses a 68.3kΩ resistor in series with a 100nF capacitor. 11

12 Figure 5: Debouncer Circuit 2.5 Wireless Module The wireless module consisted of the RF430CL330H Texas Instruments chip. The chip uses NFC transmission in order to send data to a phone wirelessly. The wireless module was responsible for communicating with the MPU. The MPU collects data from its running algorithms calculating the correct timing and sends the data to be stored in the RF chip s EEPROM. Data collects in the RF chip s internal memory until it is ready to be sent. Once the data is saved to the RF chip the data can finally be transferred to a phone via NFC wireless transmission. Once the data is sent to the phone, the EEPROM in the RF chip s internal memory is cleared and data is ready to be saved for another transfer. Since the chip needed an external antenna, we had to reference the data sheet to figure out how to implement its design. The first thing that was needed for the implementation of the antenna was to first figure out the intrinsic capacitance of the RF chip, C tune, shown in Figure 6. 12

13 Figure 6: RF Chip Typical Circuit Schematic After measuring three RF chips the range of the intrinsic capacitance ranged from [200, 400]nF. After measuring the internal capacitance of the RF chip, we knew that a capacitor in series would be needed. C tune would need to be 34pF in order to have an inductance between [3.57µH, 4.28µH] which is stated by the data sheet [7]. This tuned capacitor would bring down the capacitance between pins 2 and 3 in figure 6 to roughly 35pF, what we need for a resonance frequency of 13.7MHz. Using the equation from the data sheet represented by equation (3) below, we calculated the inductance value for the antenna to be around 4µH [7]. 13.7MHz = 1 LC 2π L = 1 ( π) 2 L 4µH (3) These values for the tunable capacitor and inductance aimed to make the antenna resonate at 13.7M Hz, the operating frequency for NFC transmission. 3 Design Verification We had many requirements and verification for our project. In this section we detail the ones that we had working since we were not able to verify some of our modules. we also explain the process and result of the verification testing. 13

14 3.1 Power Module The first requirement that we needed was for the charging unit to continuously provide [50mA, 100mA] of current to the battery in order to avoid any damage done to the battery. We used a digital multimeter (DMM in order to measure the current flowing between the output of the charging unit and the input to the battery. The Charging unit supplies 55.8mA of current to the battery continuously without any damage to the battery which met our requirement. The second requirement that we needed was for the battery to have a safe discharge rating of 400mA (0.2C). After measuring the current with a DMM we found that the battery has a discharge rate of roughly 300mA and never exceeded the maximum current of 400mA, thus our requirement was verified. The third requirement was that we needed to be able to provide voltage and current of5 ± 0.5V, with a maximum current of 300mA. We used a power supply increasing the input voltage from 3.2V to 4.2V in order to test the stability of the output of the voltage DC converter. The output of the NCP1402 was stable and constant shown below in Figure 7. Similarly, we applied the same test to the other two buck converters and obtained the plots shown in Figure 9 for 3.3V and Figure 9 for 1.8V which satisfy our requirements. Figure 7: 5V Sub-module Verification Plot 14

15 Figure 8: 3.3V Sub-module Verification Plot Figure 9: 1.8V Sub-module Verification Plot 3.2 Control The only requirement that we had from the control unit was that it had to communicate with the LCD screen and be able to write characters to display. We read and analyzed the data sheet for the LCD screen and figured out how to read and write to the screen. Figure 10 shows that we were able to not only write to the display but as well display the correct or wanted characters, such as mode and time data. 15

16 Figure 10: LCD Screen Verification 3.3 Interface The LCD screen must be able to display the time correctly and the unit of a second must be accurate. Clearly seen from Figure 10 above, the time was able to correctly display on the LCD screen. We accomplished this, again, by reading the data sheet for the LCD screen and coding the MPU correctly. The built-in internal timing functions from the STM32 was utilized in order to accurately keep track of the measurement of time which we verified with a phone stopwatch. The next requirement for the interface module was that it must be able to record data accurately within ± 5bpm. Since we were low in time we decided as a group to focus on the RF chip in order to get the wireless functionality for our project. Though we were unsuccessful in getting the heartbeat to work we did mess around with the sensor and learned about its functionality which is discussed above in this report. The third requirement was that the buttons needed to be active low and debounced in order to not cause any data loss or corruption. After building the debouncer circuit we tested the buttons and none of them caused any issues or errors when feeding into the MPU. The debouncer circuit worked and performed well without any glitches when viewing the signals on the oscilloscope. 16

17 3.4 Wireless The capacitance seen at pins 2 and 3 of the RF430CL330H needs to be within [31, 38]pF. The intrinsic capacitance of three of the RF430CL330H chips, using a DMM, measured to be within 200nF and 400nF. This means that the Ctune capacitance needed to be in series and about 34pF in order to have a resonance frequency of 13.7MHz. The RF430CL330H needs to transmit at a frequency of 13.7MHz. After the antenna calculation the resonant frequency should be 13.7MHz. Since we were unable to get the wireless module to work properly we were unable to verify if the transmitting frequency was 13.7MHz. Though we were not able to directly measure the frequency, the equations should still hold and we are confident that the RF430CL330H could have operated at this frequency. 3.5 Software The software was largely tested when the device was able to keep time and communicate with both the LCD and Heartbeat sensor accurately. The requirement that was needed of the software was that it must be able to correctly prioritize different interrupts. This was verified when we implemented the buttons and were able to asynchronously interact with the device while simultaneously communicating with the screen and other sensors. 4 Cost Table 1 in Appendix A shows the costs associated with all of the parts that we purchased. Though not all of the parts ordered were used in the singular device these shows well how much the raw components of the device would cost. The cost of the full device will most likely be about $ This didn t take into account the potential savings from bulk ordering of parts, or the potential cost of ordering a custom screen to make it a smaller profile. Overall we believe the device s hardware costs could be brought down to about $40. The labor costs can be estimated as follows: (3P eople ($40/h) (20h/week) 10weeks) = $36000 (4) 17

18 5 Conclusion 5.1 Accomplishment The design of the final device brought together the multiple modules that were individually tested. It made a decent, and compact stopwatch replacement that had the capability of wirelessly communicating times from an indefinite number of athletes at once. We were able to successfully keep accurate time, with splits, as well as implement a secondary countdown mode that could be used for various forms of interval training. Though the heartbeat sensor did not fully work we were able to get raw analog data from its FIFO so the calculation of the actual pulse would not be hard to implement after that. Though the wireless communication was not able to be fully finished this could be do to the SPI lines perhaps being wired incorrectly, an alternative to this would be to use the RF430 in its I 2 C configuration. This would also have the added benefit of freeing up pins if we would want more peripherals as we can use the same I 2 C lines used for the MAX The device being sponsored by a private donor means that we are ethically bound not to steal any of the ideas used here from the original inventor [6]. As well as to make sure that the battery would be safe for everyday use. We need to make sure that the case is waterproof and sweat proof so the device battery does not get damaged, since it s extremely reactive with water, and so the board do not short circuit. 5.2 Future Work and Uncertainties If we were to continue the project we would want to finish implementing the wireless module so that it would be able to communicate wirelessly to a phone. If we were to run into more problems using this chip we would probably change to a low energy consumption Bluetooth chip. Bluetooth is reliable over short distances and would probably be easier to implement into our existing design. Another thing we would improve on would be the PCB. We would want it to be smaller and more space efficient since our device is meant to be wore while an athlete trains around a track. Lastly, what we would do differently would be the addition of a better housing that would keep our PCBS, and screen dry from any form of water. This can help reduce any damage done to the circuit. Overall we were pretty happy with our design and functionality. 18

19 References [1] Spark Fun Electronics[Online] MAX pdf. [Accessed: April 2017] [2] Li-Polymer Battery Technology Specification, [Online]. Available: [Accessed: April 2017]. [3] ON Semiconductor, [Online]. Available: D.PDF [Accessed: April 2017]. [4] ST Electronics STM32F030x4/x6/x8/xC DataSheet, [Online]. Available: [Accessed: April 2017]. [5] Hitachi HD DataSheet, [Online]. Available: [Accessed: April 2017] [6] IEEE Code of Ethics, 2017.[Online]. Available: [Accessed: May 2017]. [7] Texas Instruments RF30CL330H DataSheet, [Online]. Available: [Accessed: April 2017]. [8] Maxim Integrated Pulse Oximeter and Heart-Rate Sensor IC for Wearable Health, [Online]. Available: [Accessed: April 2017]. 19

20 Appendix A 20

21 Table 1: Part List and Cost Description Price Qty Total Boost Converter With Adjustable Voltage Buck Converter With Adjustable Voltage Buck Converter With fixed Voltage USB Adapter 1-Cell Battery Charger CONN USB MICRO B RECPT SMT R/A Lithium Ion Battery - 3.7V 2000mAh uF Ceramic Capacitor X7R uF Ceramic Capacitor X7R uF 10 V ceramic Capacitor X7R uf Capacitor uf Capacitor uF 10V capacitor 10000pF 16 V Capacitor pF Capacitor uF 6.3V Capacitor uF 16V Tantalum Capacitor uF 25V 530 mohm ESR Tantalum Capacitor A 20V rectifying Diode LED Ohm Resistor k Ohms Resistor K Ohm Resistor k Ohm Resistor k Ohm Resistor k Ohm Resistor uH 1.1 A Inductor uH 1.1 A Inductor uH 900mA A Inductor IC MCU 32BIT 32KB FLASH 32LQFP Dot matrix liquid crystal display IC SENSOR OXIMETER/HEARTRATE push buttons switch Logic Gates Hex 2-Input NAND Driver IC NFC DYNAMIC TAG TARG 14-TSSOP FIXED IND 3.9UH 260MA 3.6 OHM Total $

Home Security System with Remote Home Automation Control

Home Security System with Remote Home Automation Control Home Security System with Remote Home Automation Control Justin Klumpp Senior Project Hardware Description Western Washington University April 24 2005 Professor Todd Morton Introduction: This document

More information

Keywords Digital IC tester, Microcontroller AT89S52

Keywords Digital IC tester, Microcontroller AT89S52 Volume 6, Issue 1, January 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Digital Integrated

More information

Embedded Systems and Software

Embedded Systems and Software Embedded Systems and Software Lecture 12 Some Hardware Considerations Hardware Considerations Slide 1 Logic States Digital signals may be in one of three states State 1: High, or 1. Using positive logic

More information

Adaptive Fast Charger and Power Pack

Adaptive Fast Charger and Power Pack Adaptive Fast Charger and Power Pack Final Paper Group #25 Team Members: Brian Uznanski Dalton Hite Nikhil Kamath Teaching Assistant: Jackson Lenz University of Illinois at Urbana-Champaign ECE 445 Spring

More information

I/O System for the PSYONIC Advanced Bionic Hand. Team 28 Byron Hopps and Steven Sun ECE 445 Senior Design Fall 2017

I/O System for the PSYONIC Advanced Bionic Hand. Team 28 Byron Hopps and Steven Sun ECE 445 Senior Design Fall 2017 I/O System for the PSYONIC Advanced Bionic Hand Team 28 Byron Hopps and Steven Sun ECE 445 Senior Design Fall 2017 Background PSYONIC is a startup at the University of Illinois working on bringing low-cost

More information

Wireless Smart Charging System for Mobile Devices

Wireless Smart Charging System for Mobile Devices Western Washington University Wireless Smart Charging System for Mobile Devices EE 492 Jacie Unpingco 3-17-2016 TABLE OF CONTENTS 1. Design Change Form...1 2. Schematic Sheets a. MCU, Battery, and LEDs

More information

Homework 5: Circuit Design and Theory of Operation Due: Friday, February 24, at NOON

Homework 5: Circuit Design and Theory of Operation Due: Friday, February 24, at NOON Homework 5: Circuit Design and Theory of Operation Due: Friday, February 24, at NOON Team Code Name: Motion Tracking Laser Platform Group No.: 9 Team Member Completing This Homework: David Kristof NOTE:

More information

LED Lighting for Photography

LED Lighting for Photography LED Lighting for Photography By Abizer Daud Michael Miwa Thomas Winter Final Report for ECE 445, Senior Design, Spring 2017 TA: Kexin Hui 3 May 2017 Project No. 41 ii Abstract The purpose of this project

More information

PBLN52832 DataSheet V Copyright c 2017 Prochild.

PBLN52832 DataSheet V Copyright c 2017 Prochild. PBLN52832 DataSheet V1.2.3 Copyright c 2017 Prochild. No part of this publication and modification may be reproduced without the prior written permission of the author. Revision History No Version Date

More information

ECE Fall 2016

ECE Fall 2016 ECE 4901 - Fall 2016 Team 1714: Smartwatch-like Device and Apps for Continuous Glucose Monitoring Evan Brown - Electrical Engineering Magda Kaczynska - Electrical Engineering Brian Marquis - Electrical

More information

Wireless Smart Charging System for Mobile Devices

Wireless Smart Charging System for Mobile Devices Western Washington University Wireless Smart Charging System for Mobile Devices EE 492 Jacie Unpingco 5 June 2016 TABLE OF CONTENTS 1. Design Change Form...1 2. Schematic Sheets a. MCU, Battery, and LEDs

More information

DS1306. Serial Alarm Real Time Clock (RTC)

DS1306. Serial Alarm Real Time Clock (RTC) www.dalsemi.com FEATURES Real time clock counts seconds, minutes, hours, date of the month, month, day of the week, and year with leap year compensation valid up to 2100 96-byte nonvolatile RAM for data

More information

BIWEEKLY REPORT 29 TH MARCH 2004

BIWEEKLY REPORT 29 TH MARCH 2004 BIWEEKLY REPORT 29 TH MARCH 2004 Wearable wireless physiological sensors Daniel Bishop Josh Handley Phillip Hay Christina Hernandez Rosy Logioia Gouri Shintri Clayn Smith Adam Stevenson Sensors Team...3

More information

Display Real Time Clock (RTC) On LCD. Version 1.2. Aug Cytron Technologies Sdn. Bhd.

Display Real Time Clock (RTC) On LCD. Version 1.2. Aug Cytron Technologies Sdn. Bhd. Display Real Time Clock (RTC) On LCD PR12 Version 1.2 Aug 2008 Cytron Technologies Sdn. Bhd. Information contained in this publication regarding device applications and the like is intended through suggestion

More information

ARDUINO PRIMO. Code: A000135

ARDUINO PRIMO. Code: A000135 ARDUINO PRIMO Code: A000135 Primo combines the processing power from the Nordic nrf52 processor, an Espressif ESP8266 for WiFi, as well as several onboard sensors and a battery charger. The nrf52 includes

More information

Dept. of Computer Science and Engineering

Dept. of Computer Science and Engineering Dept. of Computer Science and Engineering EECS 2210 Electronic Circuits and Devices Project Report Power Supply for a Mobile Charger Submitted by : Linda Chigbo Ariel Laboriante Ege Arslan Date 4/17/2015

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

Portable Refreshable Braille Display

Portable Refreshable Braille Display Portable Refreshable Braille Display Wang, Rajarshi Roy Introduction Title: Portable Refreshable Braille Display Current commercially available electronic Braille readers (aka refreshable Braille displays

More information

CSE 466 Exam 1 Winter, 2010

CSE 466 Exam 1 Winter, 2010 This take-home exam has 100 points and is due at the beginning of class on Friday, Feb. 13. (!!!) Please submit printed output if possible. Otherwise, write legibly. Both the Word document and the PDF

More information

Embedded Systems Lab Lab 1 Introduction to Microcontrollers Eng. Dalia A. Awad

Embedded Systems Lab Lab 1 Introduction to Microcontrollers Eng. Dalia A. Awad Embedded Systems Lab Lab 1 Introduction to Microcontrollers Eng. Dalia A. Awad Objectives To be familiar with microcontrollers, PIC18F4550 microcontroller. Tools PIC18F4550 Microcontroller, MPLAB software,

More information

PANDORA HACKER GUIDE

PANDORA HACKER GUIDE PANDORA HACKER GUIDE WARNING: Modifying your PCB is not covered by your warranty and any damage caused as a result will be the sole responsibility of the owner to fix or to have fixed at a fee set by the

More information

1, 2, 4 and 8-Channel Very Low Capacitance ESD Protectors

1, 2, 4 and 8-Channel Very Low Capacitance ESD Protectors 1, 2, 4 and 8-Channel Very Low Capacitance ESD Protectors CM1210 Features 1,2,4 and 8 channels of ESD protection Very low loading capacitance (1.0pF typical) ±6 kv ESD protection per channel (IEC 61000-4-2

More information

Mechatronics and Measurement. Lecturer:Dung-An Wang Lecture 6

Mechatronics and Measurement. Lecturer:Dung-An Wang Lecture 6 Mechatronics and Measurement Lecturer:Dung-An Wang Lecture 6 Lecture outline Reading:Ch7 of text Today s lecture: Microcontroller 2 7.1 MICROPROCESSORS Hardware solution: consists of a selection of specific

More information

Test Methods for DC/DC Power Modules

Test Methods for DC/DC Power Modules Test Methods for DC/DC Power Modules Design Note 027 Flex Power Modules Precautions Abstract A user may have the desire to verify or characterize the performance of DC/DC power modules outside the system

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

Lost Item Pager. Project Description. Russ Kinley

Lost Item Pager. Project Description. Russ Kinley Lost Item Pager Project Description Russ Kinley Introduction The lost item pager will have a base unit that is stationary, consisting of a few page buttons and a digital display. Each of the buttons will

More information

Wireless Power Panel Meter (WPPM)

Wireless Power Panel Meter (WPPM) Wireless Power Panel Meter (WPPM) Kyle Coan & Phil Perrigo Senior Project Description Western Washington University November 3, 2009 Prof. Todd Morton Page 1 of 13 Introduction With recent development

More information

A Case for Custom Power Management ASIC

A Case for Custom Power Management ASIC A Case for Custom Power Management ASIC By Cirel Systems Introduction The mobile device explosion seems to continue without a pause. The convergence of functionalities on a palm top device is fuelling

More information

Accelerometer Mouse: Hardware Description

Accelerometer Mouse: Hardware Description Accelerometer Mouse: Hardware Description Chris Wittmier ET474 Professor Todd Morton Western Washington University 04/19/2005 Introduction The accelerometer mouse is a wireless USB mouse that operates

More information

DIO5151B 700mA/1A Buck/Boost Charge Pump LED Driver

DIO5151B 700mA/1A Buck/Boost Charge Pump LED Driver Rev 0.1 Features Output Current : DIO5151BED8: 700mA DIO5151BCD10: 1A Up to 90% Efficiency in Torch Mode Adjustable FLASH Mode Current 1 and 2 Automatic Modes for High Efficiency Input Voltage Range: 3V

More information

Transcendent Frequency Counter

Transcendent Frequency Counter Transcendent Frequency Counter with blue 2 x 16 LCD display This manual will guide you how to assemble, test and operate this frequency counter KIT. Features: The transcendent counter has two input channels

More information

Rear Distance Detection with Ultrasonic Sensors Project Report

Rear Distance Detection with Ultrasonic Sensors Project Report Rear Distance Detection with Ultrasonic Sensors Project Report 11.29.2017 Group #6 Farnaz Behnia Kimia Zamiri Azar Osaze Shears ECE 511: Microprocessors Fall 2017 1 Table of Contents 1. Abstract 3 2. Motivation

More information

ACT2823 Evaluation Kit Application Report REV 0, 01-Dec V/3.4A Dual Cell Battery Power Manager

ACT2823 Evaluation Kit Application Report REV 0, 01-Dec V/3.4A Dual Cell Battery Power Manager ACT2823 Evaluation Kit Application Report REV 0, 01-Dec-2016 5V/3.4A Dual Cell Battery Power Manager FEATURES Dedicated single-chip integrated dual cell battery management 4.5V-5.5V input voltage and 3.8A

More information

Clicker 2 for Kinetis

Clicker 2 for Kinetis Page 1 of 6 Clicker 2 for Kinetis From MikroElektonika Documentation clicker 2 for Kinetis is a compact dev. kit with two mikrobus sockets for click board connectivity. You can use it to quickly build

More information

GE-INTERNATIONAL JOURNAL OF ENGINEERING RESEARCH VOLUME -3, ISSUE -5 (May 2015) IF ISSN: ( )

GE-INTERNATIONAL JOURNAL OF ENGINEERING RESEARCH VOLUME -3, ISSUE -5 (May 2015) IF ISSN: ( ) DESIGN AND IMPLEMENTATION OF MICROCONTROLLER BASED SPEED DATA LOGGER Kriti Jain *, Prem Chand #, Saad Shamsi #, Dimple Taneja #, Rahul Yadav #, Sanjeev Yadav # *Assistant Professor, ECE Department, Amity

More information

XNUCLEO-F030R8, Improved STM32 NUCLEO Board

XNUCLEO-F030R8, Improved STM32 NUCLEO Board XNUCLEO-F030R8, Improved STM32 NUCLEO Board STM32 Development Board, Supports Arduino, Compatible with NUCLEO-F030R8 XNUCLEO-F030R8 Features Compatible with NUCLEO-F030R8, onboard Cortex-M0 microcontroller

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

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT 1142A-A/B USB POWER MANAGER WITH Li-ION CHARGER AND THREE STEP-DOWN REGULATORS

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT 1142A-A/B USB POWER MANAGER WITH Li-ION CHARGER AND THREE STEP-DOWN REGULATORS DESCRIPTION The DC1142A-A/B contains the LTC3557/LTC3557-1 Power Management Integrated Circuit (PMIC) plus the LT3480EDD high voltage buck controller. The LTC3557/LTC3557-1 is a highly integrated power

More information

Virtual Grand Piano. 1. Introduction Objective Background

Virtual Grand Piano. 1. Introduction Objective Background Virtual Grand Piano Team 64 - Zhi Lu, Jeongsub Lee and Hammad Khan ECE 445 Project Proposal - Spring 2018 TA: Mickey Zhang 1. Introduction 1.1. Objective Digital pianos currently available in the market

More information

Vladimir Tsarkov Electrical Engineering

Vladimir Tsarkov Electrical Engineering . Travis Ram William Brumby Electrical Engineering Gaston Mulisanga Computer Engineering Computer Engineering Vladimir Tsarkov Electrical Engineering Motivation Traditional meters offer little assistance

More information

Homework 5: Theory of Operation and Hardware Design Narrative Due: Friday, October 3, at NOON

Homework 5: Theory of Operation and Hardware Design Narrative Due: Friday, October 3, at NOON Homework 5: Theory of Operation and Hardware Design Narrative Due: Friday, October 3, at NOON Team Code Name: ECE Grande Group No. 3 Team Member Completing This Homework: Ashley Callaway e-mail Address

More information

Exclusive 2.5 GHz Frequency Counter

Exclusive 2.5 GHz Frequency Counter Exclusive 2.5 GHz Frequency Counter with blue 2 x 16 LCD display This manual will guide you how to assemble, test and tune this frequency counter KIT. Features: Frequency range from 5 MHz to 2.5GHz Factory

More information

Manual Main PCB Small-MIDI 4

Manual Main PCB Small-MIDI 4 Index PARTLIST MAIN PCB... 2 INTRODUCTION... 3 GENERAL... 3 THE CIRCUIT... 3 ASSEMBLY KIT... 4 ASSEMBLY OF THE PCB... 4 An important tip...... 4 ASSEMBLY... 4 THE CONNECTORS... 4 Power supply J1... 4 IDC

More information

2. Control Pin Functions and Applications

2. Control Pin Functions and Applications IMARY CONTROL ( PIN) Module Enable / Disable. The module can be disabled by pulling the below 2.3 V with respect to the Input. This should be done with an open-collector transistor, relay, or optocoupler.

More information

EVAL-ADT7516. SPI -/I 2 C -Compatible, Temperature Sensor, 4-Channel ADC and Quad Voltage Output DAC FEATURES APPLICATIONS

EVAL-ADT7516. SPI -/I 2 C -Compatible, Temperature Sensor, 4-Channel ADC and Quad Voltage Output DAC FEATURES APPLICATIONS SPI -/I 2 C -Compatible, Temperature Sensor, 4-Channel ADC and Quad Voltage Output DAC EVAL-ADT7516 FEATURES Easy evaluation of the ADT7516 Can be used to emulate ADT7517 and ADT7519 Evaluation software

More information

MICROCONTROLLER BASED SMART FAN SYSTEM

MICROCONTROLLER BASED SMART FAN SYSTEM MUHAMMAD KHAIRI BACHELOR OF ELECTRICAL ENGINEERING (HONS.) (ELECTRONICS) 2007 UMP MICROCONTROLLER BASED SMART FAN SYSTEM MUHAMMAD KHAIRI BIN ABD. GHANI UNIVERSITI MALAYSIA PAHANG v ABSTRACT This project

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

Lecture (02) PIC16F84 (I)

Lecture (02) PIC16F84 (I) Lecture (02) PIC16F84 (I) By: Dr. Ahmed ElShafee ١ Review of Memory Technologies The PIC 16 Series PIC 16F84A The PIC 16F84A Memory The Oscillator Instruction Cycle Power up and Reset Parallel ports Technical

More information

QRPGuys Digital Dial/Frequency Counter

QRPGuys Digital Dial/Frequency Counter QRPGuys Digital Dial/Frequency Counter First, familiarize yourself with the parts and check for all the components. If a part is missing, please contact us and we will send one. You must use qrpguys.parts@gmail.com

More information

Power Source ON/OFF Characteristics for Linear Regulator

Power Source ON/OFF Characteristics for Linear Regulator Linear Regulator Series Power Source ON/OFF Characteristics for Linear Regulator When a linear regulator IC is turned ON, the electric charge is stored in the output capacitor and the output voltage increases

More information

PIC Microcontroller Introduction

PIC Microcontroller Introduction PIC Microcontroller Introduction The real name of this microcontroller is PICmicro (Peripheral Interface Controller), but it is better known as PIC. Its first ancestor was designed in 1975 by General Instruments.

More information

Optimum Placement of Decoupling Capacitors on Packages and Printed Circuit Boards Under the Guidance of Electromagnetic Field Simulation

Optimum Placement of Decoupling Capacitors on Packages and Printed Circuit Boards Under the Guidance of Electromagnetic Field Simulation Optimum Placement of Decoupling Capacitors on Packages and Printed Circuit Boards Under the Guidance of Electromagnetic Field Simulation Yuzhe Chen, Zhaoqing Chen and Jiayuan Fang Department of Electrical

More information

BV511 Hardware Guide ByVac ByVac Revision 1.0

BV511 Hardware Guide ByVac ByVac Revision 1.0 BV511 Hardware Guide ByVac ByVac 2007 www.byvac.co.uk Revision 1.0 ByVac 1 Copyright in this work is vested in ByVac and the document is issued in confidence for the purpose only for which it is supplied.

More information

Group 10 Programmable Sensor Output Simulator Progress Report #2

Group 10 Programmable Sensor Output Simulator Progress Report #2 Department of Electrical Engineering University of Victoria ELEC 499 Design Project Group 10 Programmable Sensor Output Simulator Progress Report #2 March 5, 2005 Submitted by: Group No.: 10 Team: Exfour

More information

Bolt 18F2550 System Hardware Manual

Bolt 18F2550 System Hardware Manual 1 Bolt 18F2550 System Hardware Manual Index : 1. Overview 2. Technical specifications 3. Definition of pins in 18F2550 4. Block diagram 5. FLASH memory Bootloader programmer 6. Digital ports 6.1 Leds and

More information

CHAPTER 5. Voltage Regulator

CHAPTER 5. Voltage Regulator CHAPTER 5 Voltage Regulator In your robot, the energy is derived from batteries. Specifically, there are two sets of batteries wired up to act as voltage sources; a 9V battery, and two 1.5V batteries in

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

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

Shack Clock kit. U3S Rev 2 PCB 1. Introduction

Shack Clock kit. U3S Rev 2 PCB 1. Introduction Shack Clock kit U3S Rev 2 PCB 1. Introduction Thank you for purchasing the QRP Labs Shack Clock kit. This clock uses the Ultimate3S QRSS/WSPR kit hardware, but a different firmware version. It can be used

More information

ECE 480 Design Team 3 Proposal. Power-over-Ethernet for Wireless Home Automation Sponsored by Texas Instruments

ECE 480 Design Team 3 Proposal. Power-over-Ethernet for Wireless Home Automation Sponsored by Texas Instruments ECE 480 Design Team 3 Proposal Power-over-Ethernet for Wireless Home Automation Sponsored by Texas Instruments David DeLuca Kang Hu Lee Sasang Balachandran Hassan Abdullahi Raghava Karthik Hemmanur Dr.

More information

NAND/NOR Logic Gate Equivalent Training Tool Design Document. Team 34 TA: Xinrui Zhu ECE Fall Jeremy Diamond and Matthew LaGreca

NAND/NOR Logic Gate Equivalent Training Tool Design Document. Team 34 TA: Xinrui Zhu ECE Fall Jeremy Diamond and Matthew LaGreca NAND/NOR Logic Gate Equivalent Training Tool Design Document Team 34 TA: Xinrui Zhu ECE 445 - Fall 2017 Jeremy Diamond and Matthew LaGreca Table of Contents 1.0 INTRODUCTION 1.1 Objective 1.2 Background

More information

ACT2804 Demo Board Application Report 5V/3.4A Dual Cell Backup Battery Power Manager

ACT2804 Demo Board Application Report 5V/3.4A Dual Cell Backup Battery Power Manager ACT2804 Demo Board Application Report 5V/3.4A Dual Cell Backup Battery Power Manager FEATURES Dedicated single-chip integrated dual cell battery management 4.5V-5.5V input voltage and 3.4A input current

More information

AC / DC converter unit

AC / DC converter unit AC / DC converter unit The is an AC / DC converter which can be used to supply 5V, 100mA DC output from a commercial power supply (200 to 230V AC). Using this unit enables simple, easy drive of microcomputers,

More information

SK18A. 18 Pins PIC START-UP KIT. User s Manual V1.1. Dec 2007

SK18A. 18 Pins PIC START-UP KIT. User s Manual V1.1. Dec 2007 SK18A 18 Pins PIC START-UP KIT User s Manual V1.1 Dec 2007 Information contained in this publication regarding device applications and the like is intended through suggestion only and may be superseded

More information

HT-1A Dual Band CW QRP Transceiver. User Manual

HT-1A Dual Band CW QRP Transceiver. User Manual HT-1A Dual Band CW QRP Transceiver User Manual Rev A, June 17, 2018 Designed by BD4RG Exclusively distributed by CRKITS.COM and its worldwide distributors Join the group http://groups.io/g/crkits to get

More information

Homework 6: Printed Circuit Board Layout Design Narrative

Homework 6: Printed Circuit Board Layout Design Narrative Homework 6: Printed Circuit Board Layout Design Narrative Team Code Name: Home Kinection Group No. 1 Team Member Completing This Homework: Stephen Larew E-mail Address of Team Member: sglarew @ purdue.edu

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

KPIC-0818P (V050919) Devices Included in this Data sheet: KPIC-0818P

KPIC-0818P (V050919) Devices Included in this Data sheet: KPIC-0818P Devices Included in this Data sheet: KPIC-0818P Features: Carefully designed prototyping area Accepts 8 pin PIC12 series micro-controllers Accepts 14 and 18 Pin PIC16 series Accepts some 8,14 and 18 pin

More information

Accelerometer-Based Musical Instrument

Accelerometer-Based Musical Instrument Accelerometer Music Instrument University of Texas at Austin TI Innovation Challenge 2015 Project Report Team Leader: Team Members: Advising Professor: Video Texas Instruments Mentor (if applicable): Date:12/13/2014

More information

MT2 Introduction Embedded Systems. MT2.1 Mechatronic systems

MT2 Introduction Embedded Systems. MT2.1 Mechatronic systems MT2 Introduction Embedded Systems MT2.1 Mechatronic systems Mechatronics is the synergistic integration of mechanical engineering, with electronics and intelligent computer control in the design and manufacturing

More information

SECURE DIGITAL ACCESS SYSTEM USING IBUTTON

SECURE DIGITAL ACCESS SYSTEM USING IBUTTON SECURE DIGITAL ACCESS SYSTEM USING IBUTTON Access control forms a vital link in a security chain. Here we describe a secure digital access system using ibutton that allows only authorised persons to access

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

Figure 1.1: Some embedded device. In this course we shall learn microcontroller and FPGA based embedded system.

Figure 1.1: Some embedded device. In this course we shall learn microcontroller and FPGA based embedded system. Course Code: EEE 4846 International Islamic University Chittagong (IIUC) Department of Electrical and Electronic Engineering (EEE) Course Title: Embedded System Sessional Exp. 1: Familiarization with necessary

More information

Mega128-DEVelopment Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN (317) (317) FAX

Mega128-DEVelopment Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN (317) (317) FAX Mega128-DEVelopment Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN 46268 (317) 471-1577 (317) 471-1580 FAX http://www.prllc.com GENERAL The Mega128-Development board is designed for

More information

Homework 6: Printed Circuit Board Layout Design Narrative Due: Friday, February 27, at NOON

Homework 6: Printed Circuit Board Layout Design Narrative Due: Friday, February 27, at NOON Homework 6: Printed Circuit Board Layout Design Narrative Due: Friday, February 27, at NOON Team Code Name: _Magic Wand Group No. 5 Team Member Completing This Homework: Michelle Zhang E-mail Address of

More information

AN2408 Application note

AN2408 Application note Application note 900mA standalone linear Li-Ion battery charger with thermal regulation Introduction One way to minimize the size and complexity of a battery charger is to use a linear-type charger. The

More information

Let s first take a look at power consumption and its relationship to voltage and frequency. The equation for power consumption of the MCU as it

Let s first take a look at power consumption and its relationship to voltage and frequency. The equation for power consumption of the MCU as it 1 The C8051F91x/0x product family is designed to dramatically increase battery lifetime which is the number one requirement for most battery powered applications. The C8051F91x has the industry s lowest

More information

A general-purpose industrial input/output

A general-purpose industrial input/output A general-purpose industrial input/output Iono MKR is a versatile and compact IO module compatible with all the Arduino MKR boards. All the power of the Arduino platform, combined with WiFi, BLE, GSM,

More information

Study of LED Electronic Writing Screen based on Single Chip Dengjin Wu 1

Study of LED Electronic Writing Screen based on Single Chip Dengjin Wu 1 4th National Conference on Electrical, Electronics and Computer Engineering (NCEECE 2015) Study of LED Electronic Writing Screen based on Single Chip Dengjin Wu 1 1 North China Electric Power University,

More information

Maxim Integrated Products 1

Maxim Integrated Products 1 19-2881; Rev 0; 6/03 General Description The MAX1543 evaluation kit (EV kit) is a fully assembled and tested surface-mount circuit board that provides the voltages and features required for active-matrix,

More information

DIY KIT 123. ATMEL 89xxxx PROGRAMMER

DIY KIT 123. ATMEL 89xxxx PROGRAMMER INTRODUCTION This kit is a powerful programmer for the Atmel 8051 family of microcontrollers. It supports the following devices: 89C1051, 89C2051 and 89C4051 89C51, 89LV51 89C52, 89LV52 89C55, 89LV55 89S8252,

More information

Analog Devices Welcomes Hittite Microwave Corporation NO CONTENT ON THE ATTACHED DOCUMENT HAS CHANGED

Analog Devices Welcomes Hittite Microwave Corporation NO CONTENT ON THE ATTACHED DOCUMENT HAS CHANGED Analog Devices Welcomes Hittite Microwave Corporation NO CONTENT ON THE ATTACHED DOCUMENT HAS CHANGED www.analog.com www.hittite.com THIS PAGE INTENTIONALLY LEFT BLANK PLL & PLLVCO Serial Programming Interface

More information

Product Specification

Product Specification P10 Handheld POS Terminal Product Specification 1.00 Doc name: 07-PS-P10 P10 Handheld POS Terminal 1.00.docx Contents 1.0. Introduction... 3 2.0. Features... 4 3.0. Supported Card Types... 5 3.1. MCU Cards...

More information

SBC65EC. Ethernet enabled Single Board Computer

SBC65EC. Ethernet enabled Single Board Computer Ethernet enabled Single Board Computer Table of Contents 1 Introduction...2 2 Features...3 3 Daughter Board Connectors...4 3.1 As a Daughter Board...5 3.2 Expansion boards...5 4 Interfaces...5 4.1 Ethernet...5

More information

BANGLADESH UNIVERSITY OF ENGINEERING & TECHNOLOGY (BUET) DHAKA TECHNICAL SPECIFICATION FOR SUPPLY AND INSTALLATION OF LABORATORY EQUIPMENTS (PKG1).

BANGLADESH UNIVERSITY OF ENGINEERING & TECHNOLOGY (BUET) DHAKA TECHNICAL SPECIFICATION FOR SUPPLY AND INSTALLATION OF LABORATORY EQUIPMENTS (PKG1). BANGLADESH UNIVERSITY OF ENGINEERING & TECHNOLOGY (BUET) DHAKA TECHNICAL SPECIFICATION FOR SUPPLY AND INSTALLATION OF LABORATORY EQUIPMENTS (PKG1). Package number: G4 NO: HEQEP/CP-3137/Procurement/PacakageG4/26-08-2015/004

More information

PICado Alpha Development Board V1.0

PICado Alpha Development Board V1.0 V1.0 Bluetooth Transceiver Module HC-05 Four onboard FET power output stage 34 freely assignable I/O pins ICSP interface 2015 Jan Ritschard, All rights reserved. V1.0 Table of Contents 1. Introduction...

More information

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

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

More information

DS WIRE INTERFACE 11 DECOUPLING CAP GND

DS WIRE INTERFACE 11 DECOUPLING CAP GND Rev ; 4/3 Hex Nonvolatile Potentiometer with General Description The contains six 256-position nonvolatile (NV) potentiometers, 64 bytes of NV user EEPROM memory, and four programmable NV I/O pins. The

More information

Schematic 2014 Fairchild Semiconductor Corporation 2 RD-536_FL7733A Rev. 1.0

Schematic 2014 Fairchild Semiconductor Corporation 2 RD-536_FL7733A Rev. 1.0 Fairchild Reference Design RD-536 Application www.fairchildsemi.com The following reference design supports inclusion of FL7733A in design of an LED Driver with Power Factor Correction. It should be used

More information

ES-562/564U COMBINATION CLOCK/TIMER

ES-562/564U COMBINATION CLOCK/TIMER 142 SIERRA ST., EL SEGUNDO, CA 90245 USA (310)322-2136 FAX (310)322-8127 www.ese-web.com ES-562/564U COMBINATION CLOCK/TIMER OPERATION AND MAINTENANCE MANUAL The ES-562U/564U is a combination six digit

More information

FUNCTIONAL BLOCK DIAGRAM DIGITAL POWER SUPPLY +5V +3.3V EXT. EXTERNAL ANALOG POWER SUPPLY V LOGIC V DD V SS SPI INTERFACE RDY RESET AD5292 GND

FUNCTIONAL BLOCK DIAGRAM DIGITAL POWER SUPPLY +5V +3.3V EXT. EXTERNAL ANALOG POWER SUPPLY V LOGIC V DD V SS SPI INTERFACE RDY RESET AD5292 GND Evaluation Board for the 10-Bit, Serial Input, High Voltage Digital Potentiometer EVAL-AD5292EBZ FEATURES Full-featured evaluation board for the AD5292 Wiper buffer 4-wire ohm measurement capability Various

More information

bq2056 Designed to Go Parts List General Description bq2056 Charge Algorithm Current Voltage

bq2056 Designed to Go Parts List General Description bq2056 Charge Algorithm Current Voltage Designed to GO... Practical and Cost-Effective Battery Management Design Examples by Benchmarq Series 2056, Number One Single- and Double-Cell Low-Dropout Lithium-Ion Charger Using the bq2056 Features

More information

STBC ma standalone linear Li-Ion battery charger with thermal regulation. Description. Features. Applications

STBC ma standalone linear Li-Ion battery charger with thermal regulation. Description. Features. Applications 800 ma standalone linear Li-Ion battery charger with thermal regulation Description Datasheet - production data Features Programmable charge current up to 800 ma No external MOSFET, sense resistors or

More information

um-fpu64 Floating Point Coprocessor 28-pin Breakout Board Introduction Bare um-fpu64 28-pin Breakout Board

um-fpu64 Floating Point Coprocessor 28-pin Breakout Board Introduction Bare um-fpu64 28-pin Breakout Board Floating Point Coprocessor Breakout Board Introduction The breakout board has all of the required connections, and provides access to all um- FPU64 pins. It can be used as a development board or for permanently

More information

Product Datasheet: DWM1001-DEV DWM1001 Module Development Board. Key Features and Benefits

Product Datasheet: DWM1001-DEV DWM1001 Module Development Board. Key Features and Benefits Product Datasheet: DWM1001-DEV DWM1001 Module Development Board Plug-and-Play Development Board for evaluating the performance of the Decawave DWM1001 module Easily assemble a fully wireless RTLS system,

More information

Model R5005. Instruction Manual. True RMS Industrial Multimeter. reedinstruments. www. com

Model R5005. Instruction Manual. True RMS Industrial Multimeter. reedinstruments. www. com Model R5005 True RMS Industrial Multimeter Instruction Manual reedinstruments com Table of Contents Safety... 4 Features... 5 Specifications...5-6 Instrument Description...7-8 Operating Instructions...9-13

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

BCT mA Buck/Boost Charge Pump LED Driver

BCT mA Buck/Boost Charge Pump LED Driver BCT3140 GENERAL DESCRIPTION The BCT3140 is a current-regulated charge pump ideal for powering high brightness LEDs for camera flash applications. The charge pump can be set to regulate two current levels

More information

DM9051NP Layout Guide

DM9051NP Layout Guide NP Version: 1.1 Technical Reference Manual Davicom Semiconductor, Inc Version: NP-LG-V11 1 1. Placement, Signal and Trace Routing Place the 10/100M magnetic as close as possible to the (no more than 20mm)

More information

Operating Manual for uflex (V1.01)

Operating Manual for uflex (V1.01) Operating Manual for uflex (V1.01) 1 Introduction The heart of the uflex board is a Microcontroller (uc) that contains the firmware to implement the following features: High efficiency Buck mode (step

More information