PROJECT DESCRIPTION WWU Engineering Technology 2015 Senior Design Project By: Isaiah Ryan

Size: px
Start display at page:

Download "PROJECT DESCRIPTION WWU Engineering Technology 2015 Senior Design Project By: Isaiah Ryan"

Transcription

1 PROJECT DESCRIPTION WWU Engineering Technology 2015 Senior Design Project By: Isaiah Ryan

2 TABLE OF CONTENTS 1. INTRODUCTION PRODUCT ELECTRICAL SPECIFICATIONS Project Specifications Power Requirements Environmental Requirements SYSTEM DESCRIPTION AND SPECIFICATIONS Hardware Block Diagram Hardware Description and Specifications MCU DC-DC Converter Bluetooth Transceiver DC Buck Regulator Voltage Divider Temperature Sensor Software Description and Specifications Programming Languages Major Code Modules Kernel Mobile App Tasks USER INTERFACE REQUIREMENTS User Interface Layout User Interface Description DEVELOPMENT PLAN Prioritized List of Features Description and Schedule of Development Tasks Required Hardware and Software Development Tools Safety Plan Demonstration Prototype and Materials Description PRELIMINARY PARTS LIST

3 1. INTRODUCTION The Wireless Controller for DC/DC Converter will allow a user on a boat to wirelessly control and monitor a DC-DC converter that uses a 12V engine battery to charge a 12V auxiliary battery. Engine batteries are not designed for low current over a long time and thus can be quickly drained by equipment such as fish finders, GPS, lights, etc. Auxiliary batteries are used for this reason, but with standard chargers that use shore power, auxiliary batteries cannot be recharged at sea. The product solves the need to return to shore by charging an auxiliary battery through the engine battery with the DC-DC converter. Wireless capability provides remote access to the DC- DC converter, which must be embedded for water protection. With an app designed for a smartphone or tablet, the user will be able to enable and disable the converter, adjust the converter output settings for different battery types, and also continuously monitor voltage and current from the converter. 2. PRODUCT ELECTRICAL SPECIFICATIONS 2.1 Project Specifications Table 1 below lists key specifications required by the product: SPECIFICATIONS Max Output Current 20A Output Voltage Range 0V-15V Nominal Output Voltage 12V Output Voltage Accuracy 0.05V Input Voltage Range 9V-15V Nominal Input Voltage 12V Table 1 Standards that apply to the product are listed below: IEEE Covers methods for communicating devices in a personal area network that apply to the Bluetooth wireless protocol. IEEE 45 Covers recommended practices for electrical installations on shipboard Underwriters Laboratories (UL) 458 Contains standards for power converters/inverters and power converter/inverter systems for land vehicles and marine crafts. 2

4 2.2 Power Requirements The MCU in the product will be powered by the donor battery that supplies power to the DC- DC converter. A buck voltage regulator will lower the 12V level of the battery to the 3.3V required by the MCU and Bluetooth transceiver. Worst-case power dissipation in the product is summarized in the following Table 2. The total was increased slightly to provide a buffer for unaccounted losses: POWER DISSIPATION Source DC-DC Converter MCU Bluetooth Transceiver DC Buck Regulator Voltage Divider Resistors TOTAL Table 2 Power 15W 20mW 165mW 181mW 138mW 16W 2.3 Environmental Requirements Because the product will operate on a boat, the environmental requirements defined in IEEE standard 45: Recommended Practices for Electrical Installations on Shipboard. Applicable requirements are listed below: Max ambient temperature operation: 70 C for main/auxiliary machine space Min ambient temperature operation: -20 C Corrosion resistance: resistant to moisture and salt-laden atmosphere Unaffected by roll/pitch of a vessel underway: 22.5 roll angle and 7.5 pitch angle Resistance to vibration: vibrancy frequency range of 5-50Hz with a velocity amplitude of 20mm/s The product will meet environmental requirements by using parts that satisfy the above specifications. The electronic components can be placed in a corrosion-resistant casing for further protection. Securely fastening the product will prevent damage caused by movements of a vessel underway. 3

5 3. SYSTEM DESCRIPTION AND SPECIFICATIONS 3.1 Hardware Block Diagram A block diagram of the product hardware is shown in Figure 1 below. A description of the hardware components is included in the following pages. Bluetooth Transceiver Mobile Device 3.3V MCU MKL05Z32VFM4 Vsupply 3.3V Serial 3.3V Out Serial Comm CPU FLASH RAM Vout DC Buck Regulator Vin GPIO DAC ADC External Temp Sensor (Near Battery 2) Battery 2 Vout Voltage Divider Ven Vadj Imon Voltage Divider Voltage Divider Battery 2 Vout Battery 1 12V Vin Vout DC-DC Converter Battery 2 Figure 1 Hardware Block Diagram 3.2 Hardware Description and Specifications MCU In selecting the MCU for the product, several candidates were considered from different manufacturers including Freescale, TI, STMicroelectronics, and Silicon Labs. In terms of memory size, available peripherals, and GPIO pins, all the candidates prove to be capable. In terms of power efficiency however, Silicon Labs EFM32G200 excels above the rest and was thus chosen as the ideal MCU. But because of the high cost of Silicon Labs development boards, Freescale s MKL05Z32VFM4 MCU was chosen as a suitable replacement. Freescale has cheaper development boards and is more familiar to the student. The following Figure 2 shows the functional features of the MKL05. 4

6 Figure 2 MCU Functional Features The product does not require very high processing speeds, so the MCU system/core and bus clock frequencies should suffice. These are specified as follows: System/core clock frequency: Bus clock frequency: 48 MHz 24 MHz The program code will be stored in flash memory and shouldn t require more than 8KB. Program data will be stored in SRAM memory and shouldn t require more than 2KB. For future added product features, a Freescale MCU with more memory could be substituted if needed. The MCU memory types and sizes will work for the basic product features and are given as follows: Flash: SRAM: 32KB 4KB 5

7 The required MCU peripheral specifications for the product are listed in Table 3 below: REQUIRED MCU PERIPHERAL SPECIFICATIONS Peripheral Parameter Specification Serial Communication Number of modules 1 module GPIO Number of outputs 1 output ADC DAC Number of channels Sampling frequency Resolution Max Input Voltage Number of channels Resolution Conversion rate Table 3 MCU Functional Features The actual MCU peripheral capabilities are reported below: Serial Communication: The MCU includes one 8-bit SPI module, one low-power UART module, and one I 2 C module. Whichever of these modules is compatible with the chosen Bluetooth transceiver may be used in the product since there are no other features requiring serial communication. GPIO: The chosen MCU includes a maximum of 28 I/O pins, which is plenty for the product since the only required I/O pin is a digital output to enable or disable the DC-DC converter. The extra pins may be used to accommodate any future added product features. ADC: The ADC peripheral will be used to measure the DC-DC converter output voltage and current, the input voltage, the voltage of the auxiliary battery, and the ambient temperature via the external temperature sensor. This is why at least 5 ADC input channels are required. The MCU ADC supports up to 24 inputs so there is plenty of room for more inputs to be added in the future. The ADC can perform up to 818 ksamp/sec so the converter output voltage and current can be sufficiently monitored. This sampling frequency is also way above what is required for the temperature measurements. As for resolution, the MCU ADC provides up to 12-bit conversions, which surpasses the required product resolution of 9 bits. The ADC is not able to measure voltages above 3.3V so the converter input and output voltages and the auxiliary battery voltage must be scaled down to below 3.3V with voltage dividers. 6 5 channels 1samp/sec 9 bits 15V 1 channel 10 bits 1 conv/sec

8 DAC: The DAC peripheral will be used to adjust the DC-DC converter output voltage. It will generate an analog voltage that will be applied to a voltage-adjust pin on the converter. The minimum required resolution is possible with the MCU DAC, which has a 12-bit resolution. Charging a battery is a relatively slow process, which is why efficient charging can be achieved by updating the DC-DC converter output voltage at least once per second. This is no problem for the MCU DAC, which can perform up to 1 million conversions per second. The DAC has just one channel so it is not possible to use the DAC for added features DC-DC Converter The DC-DC converter is the electrical interface for the product because it is wired to the two external 12V batteries. Thus, its required electrical specifications match the product electrical specifications defined in Table 1. An additional requirement for the DC-DC converter is a voltage-controlled voltage adjust pin. A heat sink will most likely be installed with the DC-DC converter to dissipate heat Bluetooth Transceiver The Bluetooth transceiver will wirelessly receive messages from the mobile device and convert the messages to a serial voltage signal for the MCU. The only required specifications for the Bluetooth module are as follows: Vsupply: 3.3V Wireless range: 7 10m The required supply voltage is 3.3V because that is the supply voltage that the MCU will use also. A wireless range of 10m is sufficient for small vessels that the product is meant for DC Buck Regulator A DC buck regulator will be used to lower the 12V level of battery 1 to 3.3V for powering the MCU and Bluetooth transceiver. The following specifications are required for the buck regulator: Input voltage range: 9V 15V Nominal input voltage: 12V Output voltage: 3.3V Output voltage accuracy: 0.3V Voltage Divider A voltage divider will be used to divide down the DC-DC converter input and output voltage and the auxiliary battery voltage to valid levels for the ADC. This method works as long as the total resistance of the voltage divider is less than the specified ADC max input resistance of 5kΩ. The total resistance is calculated as the parallel resistance of the two resistors. To achieve accurate measurements, resistors must be used with a tolerance of at least.5%. Using resistor values of 4.75kΩ and 21.5kΩ yields a parallel resistance under the max resistance of 5kΩ and provides an appropriate ratio for dividing the voltage. The maximum DC-DC

9 converter output voltage will not exceed 15V, and with this resistance ratio, 15V becomes: 15V * (4.75k/21.5k) 3.13V So the divided voltage should never exceed the ADC max input voltage of 3.3V, and even if it did happen, the MCU contains protective circuitry on the ADC inputs Temperature Sensor An external temperature sensor with voltage output will be used to measure the ambient temperature. The required specifications for the temperature sensor are as follows: Output range: 0 3.3V Accuracy: 0.5 C Temperature range: -20 C 70 C 3.3 Software Description and Specifications Programming Languages All the software modules will be written in C. The MCU uses ARM M0+ as its assembly language. The mobile app will most likely be written in Java for the Android OS Major Code Modules The major required software modules to be included in the product are listed below: Main.c This module will contain the function main() where the program initializes and enters run mode. Serial.c This module will contain functions for accessing the serial communications module. Initialization code and read/write tasks will be written in this module. ADC.c This module will contain initialization and sampling tasks for the ADC module. DAC.c This module will contain initialization and conversion tasks for the DAC module Kernel Because of the relative simplicity of the software, a real-time kernel will not be used. Instead, a time-slice design will be used where the MCU will be placed in a low-power state and be periodically awoken to perform tasks such as sampling. 8

10 Mobile App Tasks The following tasks will be included in the mobile app: Setup Upon starting the mobile app, a task must initiate the interface and communication with the MCU User interface A task must handle the user interface on the mobile device. This includes displaying voltage/current data for the user, detecting button presses, and appropriately switching between interface states. Bluetooth communication Another task must handle communication with the Bluetooth transceiver connected to the MCU. 4. USER INTERFACE REQUIREMENTS 4.1 User Interface Description Figure 3 below previews how the mobile device user interface layout will appear: Enable/Disable Battery Type Select Battery Type 1 Battery Type 2 Voltage xxxxx V Battery Type N Current xxxxx A Figure 3 Mobile Device User Interface Layout The above mobile device user interface layout just shows what objects will be included in the display. It does not depict exactly how the interface will appear. At the top of the display is a button that will either enable or disable the DC-DC converter. Below the button is a menu object for selecting what battery type will be charged with the converter. The remaining objects at the bottom of the interface are display boxes for the voltage and current outputs of the DC-DC converter. 9

11 4.2 User Interface State Diagram Below in Figure 4 is a state diagram of the user interface: Start Interface Initialization Battery Type Select Enable Standby Run Disable Figure 4 State Diagram The user interface will start in an initialization state in which the display is set up and Bluetooth communication with the MCU is established. After initialization is complete, the program enters a standby state in which the user may select a battery type to charge or enable the DC-DC converter. A default battery type is selected for charging when the standby state is first entered. If a new battery type is selected for charging, the state stays in standby. If the user presses the Enable button while in the standby state, the program enters the run state in which the DC-DC converter begins operating. The user may turn off the DC-DC converter at any time by pressing the Disable button, returning the state to standby. 5. DEVELOPMENT PLAN 5.1 Prioritized List of Features The prioritized list of product features is included below from highest to lowest priority: 1. Functioning DC-DC conversion 2. Working wireless communication link between app device and MCU 3. Option to enable/disable DC-DC conversion 4. Obtaining and displaying current/voltage data from DC-DC converter 5. Option to select different battery types to charge 6. Addition of temperature sensor to adjust DC-DC conversion for temperature 7. Automatic disabling of DC-DC converter if excessive current is detected A benefit of this design is that there is a lot of room for added features. The initial product mobile app will be developed for Android OS, but later it may be ported to ios for Apple mobile devices. One added feature could be to allow user-defined charging settings for batteries to more closely match battery manufacturer recommendations. Another feature would be to allow the user to specify the voltage loss in the source wiring of the auxiliary battery to make battery voltage measurements more accurate. If faster charging were desired, a 40A DC-DC converter unit could be used with a larger heat sink or a cooling fan. 10

12 5.2 Description and Sequence of Development Tasks Table 4 below outlines the tentative weekly schedule for product development during winter and spring quarters: TENTATIVE WEEKLY DEVELOPMENT SCHEDULE Date Tasks By Jan. 4 Acquire hardware components Jan. 4 Jan. 10 Create project file in IDE, start writing startup code Jan. 11 Jan. 17 Continue writing startup code Jan. 18 Jan. 24 Write GPIO code Jan. 25 Jan.31 Start writing ADC code Feb. 1 Feb. 7 Continue writing ADC code Feb. 8 Feb. 14 Start writing DAC code Feb. 15 Feb. 21 Continue writing DAC code Feb. 22 Feb. 28 Program MCU to enable/disable DC-DC converter Mar. 1 Mar. 7 Program MCU to change DC-DC converter voltage Mar. 8 Mar. 14 Work on measuring voltage/current with MCU Mar. 15 Mar. 21 Continue working on measuring voltage/current Mar. 22 Mar. 28 Start building mobile app Mar. 29 Apr. 4 Continue working on mobile app Apr. 5 Apr. 11 Continue working on mobile app Apr. 12 Apr. 18 Add DC regulator to power MCU and Bluetooth Apr. 19 Apr. 25 Work on Bluetooth communication *Hardware Reviews* Apr. 26 May 2 Continue to work on Bluetooth *Hardware Reviews* May 3 May 9 Continue to work on Bluetooth May 10 May 16 Add temperature sensing feature May 17 May 23 Apply finishing touches *Code Reviews* May 24 May 30 Prepare for demos *Code Reviews* May 31 Jun. 6 Demos Table 4 Tentative Weekly Schedule 11

13 After acquiring the hardware components, the first task in the development schedule is to create a project file in the IDE and start writing the MCU startup code. Before any further project development, it is necessary to be able to compile a project, build the project, and load it into the MCU flash. This will be the focus of the first few weeks of January. Once the project can be loaded into the MCU, the ADC and DAC code will be written so that the MCU can interface with the DC-DC converter. Once the ADC and DAC are functioning, the code will be written for enabling/disabling the converter, changing the converter output voltage, and then measuring the DC-DC converter output voltage/current. At this point, it will be time to start working on communication with a mobile device. This will first require building the mobile app. Once the app is built, the Bluetooth communication will be established between the mobile device and the MCU. Finally, the temperature sensing feature will be added and finishing touches will be applied so that preparation can be made for the demo. 5.3 Required Hardware and Software Development Tools Hardware development tools will include the following: Power supply for powering the MCU and simulating a 12V battery Oscilloscope or multimeter for measuring voltages A smartphone for running the mobile app Kinetis Freedom development board for prototyping Software development tools will include the following: Kinetis Development System (KDS) IDE for MCU software development Android Studio for mobile app development 5.4 Safety Plan High voltage does not pose a danger in this product since voltages higher than 15V will not be present. Still, proper precaution will be taken when wiring components by making sure the power supply is disconnected. When using real 12V batteries, proper precaution will be taken to avoid battery-related accidents such as acid exposure or battery explosion. 5.5 Demonstration Prototype and Materials Description The product prototype will be demonstrated using one of Freescale s Freedom development boards, the FRDM-KL05Z. To construct the product, parts will be either soldered or wirewrapped. If possible, the product electrical components will be enclosed inside a case since the actual product would have to be protected from the environment. For demonstration, a 12V engine starting battery and 12V auxiliary, deep-cycle battery will be needed. A load will be applied to discharge the deep-cycle battery so that charging can take place. In addition, either a smartphone or tablet device will be used to run the mobile app. Posters will be constructed that introduce the product and explain its significance. 12

14 6. PRELIMINARY PARTS LIST Table 5 below shows the preliminary parts list for the product (resistors not included): PRODUCT PRELIMINARY PARTS LIST Part Part # Cost Lead Time Power Dissipation MCU MKL05Z32VFM4 $ days 20mW DC-DC Converter NQ20x20ETx20 $ days 15W DC Buck Regulator LM2596 $ days 181mW Temperature Sensor LMT84-Q1 $ days 0.018mW Bluetooth Module RN-42 $ days 165mW Table 5 Preliminary Parts List 13

Wireless Smart Charging System for Mobile Devices

Wireless Smart Charging System for Mobile Devices Wireless Smart Charging System for Mobile Devices Project Description Jacie Unpingco Western Washington University EE Class of 2015-2016 1 Introduction The proposed project is a wireless smart charging

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

COL862 - Low Power Computing

COL862 - Low Power Computing COL862 - Low Power Computing Power Measurements using performance counters and studying the low power computing techniques in IoT development board (PSoC 4 BLE Pioneer Kit) and Arduino Mega 2560 Submitted

More information

Freescale Semiconductor Inc. Microcontroller Solutions Group. FRDM-KL46Z User s Manual FRDM-KL46Z-UM Rev. 1.0

Freescale Semiconductor Inc. Microcontroller Solutions Group. FRDM-KL46Z User s Manual FRDM-KL46Z-UM Rev. 1.0 Freescale Semiconductor Inc. Microcontroller Solutions Group FRDM-KL46Z User s Manual FRDM-KL46Z-UM Rev. 1.0 Table of Contents 1 FRDM-KL46Z Overview... 3 2 References documents... 3 3 Getting started...

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

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

Kinetis EA Ultra-Reliable Microcontrollers. Automotive and Industrial Applications

Kinetis EA Ultra-Reliable Microcontrollers. Automotive and Industrial Applications Kinetis EA Ultra-Reliable Microcontrollers Automotive and Industrial Applications Agenda Introducing Kinetis EA Proposition Value Features Overview Application Examples Enablement Useful Links 1 Kinetis

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

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM FRDM-KL02Z User Manual Rev. 0 Freescale Semiconductor Inc. FRDMKL02ZUM 1. Overview The Freescale Freedom development platform is an evaluation and development tool ideal for rapid prototyping of microcontroller-based

More information

Table of Contents DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING UNIVERSITY OF CENTRAL FLORIDA. Team 5

Table of Contents DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING UNIVERSITY OF CENTRAL FLORIDA. Team 5 Table of Contents DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING UNIVERSITY OF CENTRAL FLORIDA EEL4914 Senior Design I Team 5 alife - advanced Living Integration For Education A) Project narrative description

More information

1. Project title: Home Monitoring System. Student: Alexandru Irasoc. Mail address: Student: Constantin Grijincu

1. Project title: Home Monitoring System. Student: Alexandru Irasoc. Mail address: Student: Constantin Grijincu 1. Project title: Home Monitoring System Student: Alexandru Irasoc Mail address: alexirasoc@gmail.com Student: Constantin Grijincu Mail address: grijincu.constantin@gmail.com 2. Abstract Sometimes it can

More information

PAC5523EVK1. Power Application Controllers. PAC5523EVK1 User s Guide. Copyright 2017 Active-Semi, Inc.

PAC5523EVK1. Power Application Controllers. PAC5523EVK1 User s Guide.   Copyright 2017 Active-Semi, Inc. PAC5523EVK1 Power Application Controllers PAC5523EVK1 User s Guide www.active-semi.com Copyright 2017 Active-Semi, Inc. CONTENTS Contents...2 Overview...3 PAC5523EVK1 Resources...5 Pinout and Signal Connectivity...5

More information

TEMPERATURE AND HUMIDITY MONITOR AND CONTROL SYSTEM

TEMPERATURE AND HUMIDITY MONITOR AND CONTROL SYSTEM Review of the Air Force Academy No.1 (33)/2017 TEMPERATURE AND HUMIDITY MONITOR AND CONTROL SYSTEM Adelina-Ioana ŢAPU, Mădălina-Ioana GUŢUI, Otilia CROITORU Transylvania University, Brasov, Romania (adelina_ioana1992@yahoo.com,gutui.madalina@yahoo.com,otilia.croitoru@unitbv.ro)

More information

L05065 LED Driver 150W, 24-60Vdc, mA L1M1MLT400S-150E

L05065 LED Driver 150W, 24-60Vdc, mA L1M1MLT400S-150E L05065 LED Driver 150W, 24-60Vdc, 700-4000mA L1M1MLT400S-150E Engineered for Best Fixture performance Fulham LumoSeries drivers are all built on core engineering design principles for exceptional standards

More information

Husarion CORE2. Husarion CORE2 is a development board for Internet-connected automation & robotic devices.

Husarion CORE2. Husarion CORE2 is a development board for Internet-connected automation & robotic devices. Husarion CORE2 Husarion CORE2 is a development board for Internet-connected automation & robotic devices. CORE2 Development board for Internet connected automation & robotic devices. compatible with Husarion

More information

TEVATRON TECHNOLOGIES PVT. LTD Embedded! Robotics! IoT! VLSI Design! Projects! Technical Consultancy! Education! STEM! Software!

TEVATRON TECHNOLOGIES PVT. LTD Embedded! Robotics! IoT! VLSI Design! Projects! Technical Consultancy! Education! STEM! Software! Summer Training 2016 Advance Embedded Systems Fast track of AVR and detailed working on STM32 ARM Processor with RTOS- Real Time Operating Systems Covering 1. Hands on Topics and Sessions Covered in Summer

More information

Version MICROSTRAIN, INC. Microminiature Sensors. OEM Inertia-Link /3DM-GX2 Modules. Guidelines for Use of OEM Inertia-Link /3DM-GX2 Modules

Version MICROSTRAIN, INC. Microminiature Sensors. OEM Inertia-Link /3DM-GX2 Modules. Guidelines for Use of OEM Inertia-Link /3DM-GX2 Modules Version 1.0.3 MICROSTRAIN, INC. Microminiature Sensors OEM Inertia-Link /3DM-G2 Modules Guidelines for Use of OEM Inertia-Link /3DM-G2 Modules 2007 by MicroStrain, Inc. 310 Hurricane Lane, Suite 4 Williston,

More information

Ultra Low Power Microcontroller - Design Criteria - June 2017

Ultra Low Power Microcontroller - Design Criteria - June 2017 Ultra Low Power Microcontroller - Design Criteria - June 2017 Agenda 1. Low power technology features 2. Intelligent Clock Generator 3. Short wake-up times 4. Intelligent memory access 5. Use case scenario

More information

ARROW ARIS EDGE Board User s Guide 27/09/2017

ARROW ARIS EDGE Board User s Guide 27/09/2017 ARROW ARIS EDGE Board User s Guide All information contained in these materials, including products and product specifications, represents information on the product at the time of publication and is subject

More information

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

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

More information

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

FRDM-KL03Z User s Guide

FRDM-KL03Z User s Guide Freescale Semiconductor User s Guide Document Number: FRDMKL03ZUG Rev. 0, 7/2014 FRDM-KL03Z User s Guide 1 Overview The Freescale Freedom development platform is an evaluation and development tool ideal

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

Product specification

Product specification MJIOT-AMB-03 Product specification 1 MJIOT-AMB-03module appearance 2 目录 1. Product overview...4 1.1 Characteristic... 5 1.2 main parameters...6 1.2 Interface definition... 7 2. appearance and size... 8

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

DOCUMENT REVISION HISTORY 1:

DOCUMENT REVISION HISTORY 1: PAGE 2 OF 12 DOCUMENT REVISION HISTORY 1: DOCUMENT REVISION FROM TO DATE DESCRIPTION CHANGED BY A 2008.11.19 First Release. (Based on LCD counter drawing: COG-DEMO1003 (Rev.0)) PHILIP CHENG CHECKED BY

More information

Nano RK And Zigduino. wnfa ta course hikaru4

Nano RK And Zigduino. wnfa ta course hikaru4 Nano RK And Zigduino wnfa ta course hikaru4 Today's outline Zigduino v.s. Firefly Atmel processor and the program chip I/O Interface on the board Atmega128rfa1, FTDI chip... GPIO, ADC, UART, SPI, I2C...

More information

FRDM-KL26Z User s Guide

FRDM-KL26Z User s Guide Freescale Semiconductor User s Guide Doc Number: FRDMKL26ZUG Rev. 0, 10/2013 FRDM-KL26Z User s Guide by Freescale Semiconductor, Inc. 1 Overview The Freescale Freedom development platform is a set of software

More information

78xxSR Series 3.3V/5V/12V Outputs High-Effi ciency Switching Regulators with LM78xx Pinouts

78xxSR Series 3.3V/5V/12V Outputs High-Effi ciency Switching Regulators with LM78xx Pinouts www.murata-ps.com FEATURES 3.3V/0.5A, 5V/0.5A or 12V/0.4A outputs; Pin and size-compatible with LM7805 & LM7812 regulators Up to 95% effi ciency no heat sinks or thermal derating required Two SIP-packages

More information

Datasheet DFBM-NQ62X-DT0R. A Bluetooth Low Energy System On Chip Module. Proprietary Information and Specifications are Subject to Change

Datasheet DFBM-NQ62X-DT0R. A Bluetooth Low Energy System On Chip Module. Proprietary Information and Specifications are Subject to Change 1 Datasheet DFBM-NQ62X-DT0R A Bluetooth Low Energy System On Chip Module. Preliminary Data Sheet Sheet 1 of 18 Aug. 16, 2016 Contents 1. Features... 3 1-1. General... 3 1-2. Bluetooth... 3 2. Model No.

More information

WAVETEK BLE-WT51822AA/AB. Revision History. Bluetooth low energy Module WT51822AA (256k) /AB (128k) (Bluetooth Low Energy BT4.0) PRODUCT SPECIFICATION

WAVETEK BLE-WT51822AA/AB. Revision History. Bluetooth low energy Module WT51822AA (256k) /AB (128k) (Bluetooth Low Energy BT4.0) PRODUCT SPECIFICATION Bluetooth low energy Module WT51822AA (256k) /AB (128k) (Bluetooth Low Energy BT4.0) PRODUCT SPECIFICATION Part number: BLE WT51822AA/AB Wavetek has developed a module which supports Bluetooth Low Energy

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

ASV 2008 Son of a Boatname. Group 1 Michael Podel Gor Beglaryan Kiran Bernard Christina Sylvia

ASV 2008 Son of a Boatname. Group 1 Michael Podel Gor Beglaryan Kiran Bernard Christina Sylvia ASV 2008 Son of a Boatname Group 1 Michael Podel Gor Beglaryan Kiran Bernard Christina Sylvia ASV 2009 SS Boatname ASV 2010 Boatname the Brave Autonomous Surface Vehicle Robotics Club at UCF AUVSI and

More information

Adafruit Feather nrf52840 Express

Adafruit Feather nrf52840 Express Adafruit Feather nrf52840 Express PRODUCT ID: 4062 The Adafruit Feather nrf52840 Express is the new Feather family member with Bluetooth Low Energy and native USB support featuring the nrf52840! It's our

More information

EZ864 UMTS Terminal Telit Cellular GSM Engine

EZ864 UMTS Terminal Telit Cellular GSM Engine EZ864 UMTS Terminal Telit Cellular GSM Engine Version: 01.01 EZ864 UMTS Terminal_HD_V01.01 06.Mar.2008-1 - Hardware Interface Description 1. Hardware Features of the EZ864 UMTS Terminal Feature Implementation

More information

YM12S05 DC-DC Converter Data Sheet VDC Input; VDC 5A

YM12S05 DC-DC Converter Data Sheet VDC Input; VDC 5A The Products: Y-Series Applications Intermediate Bus Architectures Distributed Power Architectures Data communications Telecommunications Servers, workstations Benefits High efficiency no heat sink required

More information

EMBEDDED SYSTEMS COURSE CURRICULUM

EMBEDDED SYSTEMS COURSE CURRICULUM On a Mission to Transform Talent EMBEDDED SYSTEMS COURSE CURRICULUM Table of Contents Module 1: Basic Electronics and PCB Software Overview (Duration: 1 Week)...2 Module 2: Embedded C Programming (Duration:

More information

PAC5232EVK1. Power Application Controllers. PAC5232EVK1 User s Guide. Copyright 2017 Active-Semi, Inc.

PAC5232EVK1. Power Application Controllers. PAC5232EVK1 User s Guide.   Copyright 2017 Active-Semi, Inc. PAC5232EVK1 Power Application Controllers PAC5232EVK1 User s Guide www.active-semi.com Copyright 2017 Active-Semi, Inc. CONTENTS Contents...2 Overview...3 PAC5232EVK1 Resources...5 Pinout and Signal Connectivity...5

More information

Eddie Control Board with Power Connector (#28993) Eddie Control Board PCB (# )

Eddie Control Board with Power Connector (#28993) Eddie Control Board PCB (# ) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

BTH-1208LS Wireless Multifunction DAQ Device

BTH-1208LS Wireless Multifunction DAQ Device Wireless Multifunction DAQ Device Features Eight 11-bit single-ended (SE) or four 12-bit differential (DIFF) analog input channels Acquires data over Bluetooth or USB connection Maximum sampling rate of

More information

Wireless Fire Fighting Robot

Wireless Fire Fighting Robot Wireless Fire Fighting Robot Sai Swapneel Gayala 1, Bhanu Murthy Soppari 2 1 Student Mechanical Engineering,VNR VJIET-Hyderabad 2 Assistant Professor,VNR VJIET, HYDERABAD Abstract: At present world of

More information

XC2000 Family AP Application Note. Microcontrollers. XC2236N Drive Card Description V1.0,

XC2000 Family AP Application Note. Microcontrollers. XC2236N Drive Card Description V1.0, XC2000 Family AP16179 Application Note V1.0, 2010-07 Microcontrollers Edition 2010-07 Published by Infineon Technologies AG 81726 Munich, Germany 2010 Infineon Technologies AG All Rights Reserved. LEGAL

More information

UG297: EFM8BB3 USB Type-C 60 W Charger Reference Design

UG297: EFM8BB3 USB Type-C 60 W Charger Reference Design UG297: EFM8BB3 USB Type-C 60 W Charger Reference Design SLRDK1001A is a reference design for a small and cost effective USB Type-C 60 W charger. A Silicon Labs EFM8BB3 Busy Bee microcontroller is used

More information

WHY APPLICATIONS ARE STILL DRAINING OUR BATTERIES and how we can help. Aaron Schulman & Sachin Katti

WHY APPLICATIONS ARE STILL DRAINING OUR BATTERIES and how we can help. Aaron Schulman & Sachin Katti WHY APPLICATIONS ARE STILL DRAINING OUR BATTERIES and how we can help. Aaron Schulman & Sachin Katti We cannot rely on improvements in battery technology In past 30 years: only 4x improvement in energy

More information

FEATURES. APPLICATIONS Machine Vision Embedded Instrumentation Motion Control Traffic Monitoring Security

FEATURES. APPLICATIONS Machine Vision Embedded Instrumentation Motion Control Traffic Monitoring Security FEATURES High-performance CMOSIS sensors - Sensitivity: 5.56 V/lux.s - Dynamic range: 60 db - Dark Noise: 8.6 e - - High speed: 95* fps - 8M Pixel: 3360(H) x 2496(V) - Monochrome / Color - Global Shutter

More information

Homework 3: Design Constraint Analysis and Component Selection Rationale

Homework 3: Design Constraint Analysis and Component Selection Rationale Homework 3: Design Constraint Analysis and Component Selection Rationale Team Code Name: 2D-MPR Group No. 12 Team Member Completing This Homework: James Phillips E-mail Address of Team Member: jephilli@

More information

HYDRA-X23/X23S. Power Application Controllers. PAC HYDRA-X User s Guide. Copyright 2014 Active-Semi, Inc.

HYDRA-X23/X23S. Power Application Controllers. PAC HYDRA-X User s Guide.   Copyright 2014 Active-Semi, Inc. HYDRA-X23/X23S Power Application Controllers PAC5223 - HYDRA-X User s Guide www.active-semi.com Copyright 2014 Active-Semi, Inc. CONTENTS Contents...2 Overview...3 HYDRA-X23/X23S Body Resources...5 Header

More information

Incorporating a Capacitive Touch Interface into Your Design

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

More information

Prototyping Module Datasheet

Prototyping Module Datasheet Prototyping Module Datasheet Part Numbers: MPROTO100 rev 002 Zenseio LLC Updated: September 2016 Table of Contents Table of Contents Functional description PROTOTYPING MODULE OVERVIEW FEATURES BLOCK DIAGRAM

More information

ILI2511. ILI2511 Single Chip Capacitive Touch Sensor Controller. Specification ILI TECHNOLOGY CORP. Version: V1.4. Date: 2018/7/5

ILI2511. ILI2511 Single Chip Capacitive Touch Sensor Controller. Specification ILI TECHNOLOGY CORP. Version: V1.4. Date: 2018/7/5 Single Chip Capacitive Touch Sensor Controller Specification Version: V1.4 Date: 2018/7/5 ILI TECHNOLOGY CORP. 8F., No.1, Taiyuan 2 nd St., Zhubei City, Hsinchu County 302, Taiwan (R.O.C.) Tel.886-3-5600099;

More information

MYD-IMX28X Development Board

MYD-IMX28X Development Board MYD-IMX28X Development Board MYC-IMX28X CPU Module as Controller Board Two 1.27mm pitch 80-pin SMT Male Connectors for Board-to-Board Connections 454MHz Freescale i.mx28 Series ARM926EJ-S Processors 128MB

More information

Homework 11: Reliability and Safety Analysis

Homework 11: Reliability and Safety Analysis ECE 477 Digital Systems Senior Design Project Rev 8/09 Homework 11: Reliability and Safety Analysis Team Code Name: ATV Group No. _3 Team Member Completing This Homework: Sebastian Hening E-mail Address

More information

ECE 480 Team 5 Introduction to MAVRK module

ECE 480 Team 5 Introduction to MAVRK module ECE 480 Team 5 Introduction to MAVRK module Team Members Jordan Bennett Kyle Schultz Min Jae Lee Kevin Yeh Definition of MAVRK Component of MAVRK starter Kit Component of umavrk Module design procedure

More information

MYD-IMX28X Development Board

MYD-IMX28X Development Board MYD-IMX28X Development Board MYC-IMX28X CPU Module as Controller Board Two 1.27mm pitch 80-pin SMT Connectors for Board-to-Board Connections 454MHz Freescale i.mx28 Series ARM926EJ-S Processors 128MB DDR2

More information

POWERBOX Industrial Line PMR20W Series 20W 4:1 Single and Dual Output High Performance DC/DC Converter

POWERBOX Industrial Line PMR20W Series 20W 4:1 Single and Dual Output High Performance DC/DC Converter Features 2250VDC input to output isolation Standard 2.00 x 1.00 x 0.40 inch Six-sided continuous shield UL60950-1, EN60950-1, & IEC60950-1 safety approvals Compliance to EN50155 and en45545-2 railway standard

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

Product Specification

Product Specification Product Specification 15mm x 27mm Description One of the most capable Bluetooth modules available, the BT-21 Bluetooth OEM Module is designed for maximum flexibility. The BT-21 module includes 14 general

More information

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM FRDM-KL02Z User Manual Rev. 0 Freescale Semiconductor Inc. FRDMKL02ZUM 1. Overview The Freescale Freedom development platform is an evaluation and development tool ideal for rapid prototyping of microcontroller-based

More information

.org. IoT Development Platform

.org. IoT Development Platform 1.org IoT Development Platform 2 Q&A How many ARM cores shipped in 2012? 8,700,000,000 Per Day: 23,835,616 Per Hour: 993,151 Per Minute: 16,553 Per Second: 276 2002 1+ billion 2011 billion 2020 25+ 150+

More information

Techniques for Optimizing Performance and Energy Consumption: Results of a Case Study on an ARM9 Platform

Techniques for Optimizing Performance and Energy Consumption: Results of a Case Study on an ARM9 Platform Techniques for Optimizing Performance and Energy Consumption: Results of a Case Study on an ARM9 Platform BL Standard IC s, PL Microcontrollers October 2007 Outline LPC3180 Description What makes this

More information

Accelerometer with Analog and Digital I/O for StackableUSB USB1600

Accelerometer with Analog and Digital I/O for StackableUSB USB1600 The USB1600 accelerometer module provides the ideal mix of sensing ranges, resolutions, and sampling rates for rugged, compact embedded systems. The module stacks directly onto any StackableUSB Host computer

More information

HYDRA-X10. Power Application Controllers TM. PAC HYDRA-X User s Guide. Copyright 2014 Active-Semi, Inc.

HYDRA-X10. Power Application Controllers TM. PAC HYDRA-X User s Guide.   Copyright 2014 Active-Semi, Inc. HYDRA-X10 Power Application Controllers TM PAC5210 - HYDRA-X User s Guide www.active-semi.com Copyright 2014 Active-Semi, Inc. CONTENTS Contents...2 Overview...3 HYDRA-X10 Body Resources...5 Header Descriptions...5

More information

ACU6. Technical Reference Manual. Specifications Interfacing Dimensions. Document topics. ANSARI Controller Unit Type 6 technical reference manual

ACU6. Technical Reference Manual. Specifications Interfacing Dimensions. Document topics. ANSARI Controller Unit Type 6 technical reference manual ACU6 Technical Reference Manual ANSARI Controller Unit Type 6 technical reference manual Document topics Specifications Interfacing Dimensions Document Version: 1.03 13. January 2013 By ANSARI GmbH Friedrich-Ebert-Damm

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

Remote Area Monitoring Robot

Remote Area Monitoring Robot IJSTE - International Journal of Science Technology & Engineering Volume 3 Issue 09 March 2017 ISSN (online): 2349-784X Muthukkumar R Manikandan P Sudalai Muthu Vignesh B Sivakumar S Assistant Professor

More information

ARROW ARIS EDGE S3 Board User s Guide 21/02/2018

ARROW ARIS EDGE S3 Board User s Guide 21/02/2018 ARROW ARIS EDGE S3 Board User s Guide All information contained in these materials, including products and product specifications, represents information on the product at the time of publication and is

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

AT-501 Cortex-A5 System On Module Product Brief

AT-501 Cortex-A5 System On Module Product Brief AT-501 Cortex-A5 System On Module Product Brief 1. Scope The following document provides a brief description of the AT-501 System on Module (SOM) its features and ordering options. For more details please

More information

Reduce Your System Power Consumption with Altera FPGAs Altera Corporation Public

Reduce Your System Power Consumption with Altera FPGAs Altera Corporation Public Reduce Your System Power Consumption with Altera FPGAs Agenda Benefits of lower power in systems Stratix III power technology Cyclone III power Quartus II power optimization and estimation tools Summary

More information

FDC20-48 S 05 W - HC PART NUMBER STRUCTURE Page 1. P-DUKE Technology Co., Ltd.

FDC20-48 S 05 W - HC PART NUMBER STRUCTURE Page 1. P-DUKE Technology Co., Ltd. Automation Datacom IPC Industry Measurement Telecom Automobile Boat Charger Medical PV Railway PART NUMBER STRUCTURE FDC20-48 S 05 W - HC Series Name Input Output Output Input Assembly Option Voltage Quantity

More information

Objective: Additional project details: Code: PSEMBP 100 Category:STEM Level: High School/Community C.

Objective: Additional project details: Code: PSEMBP 100 Category:STEM Level: High School/Community C. Objective: At the end of this session, you will have a fair understanding of - Z8 Encore! language tools including C compiler, assembler, linker/locator, and librarian - Instruction set simulator and disassembler

More information

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT 658 MULTI-OUTPUT DC/DC CONVERTER POWERED BY 2-CELL, USB OR WALL ADAPTER

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT 658 MULTI-OUTPUT DC/DC CONVERTER POWERED BY 2-CELL, USB OR WALL ADAPTER LTC3456 DESCRIPTION Demonstration Circuit 658 is a complete power management system using the LTC3456 for portable applications powered by a wall adapter, a USB port or a 2-cell alkaline battery, in that

More information

EMUS BMS mini User Manual v0.8

EMUS BMS mini User Manual v0.8 EMUS BMS mini User Manual v0.8 1 Contents 1 System structure overview 5 2 Setting up the BMS 6 2.1 Battery cells installation................................ 6 2.2 Connecting temperature sensors............................

More information

TI SimpleLink dual-band CC1350 wireless MCU

TI SimpleLink dual-band CC1350 wireless MCU TI SimpleLink dual-band CC1350 wireless MCU Sub-1 GHz and Bluetooth low energy in a single-chip Presenter Low-Power Connectivity Solutions 1 SimpleLink ultra-low power platform CC2640: Bluetooth low energy

More information

ECE 353 Lab 4. General MIDI Explorer. Professor Daniel Holcomb Fall 2015

ECE 353 Lab 4. General MIDI Explorer. Professor Daniel Holcomb Fall 2015 ECE 353 Lab 4 General MIDI Explorer Professor Daniel Holcomb Fall 2015 Where are we in Course Lab 0 Cache Simulator in C C programming, data structures Cache architecture and analysis Lab 1 Heat Flow Modeling

More information

Product Specification

Product Specification Product Specification Features Amp ed RF, Inc. Description 15mm x 27mm The added class 1 power, +18dBm, of the BT-11, gives this module one of the best ranges in the industry. It s completely pin compatible

More information

ARK. SDP18 Team 21 MDR 12/07/2017

ARK. SDP18 Team 21 MDR 12/07/2017 ARK SDP18 Team 21 MDR 12/07/2017 Advisor: Professor Holcomb 1 1 Team Matteo Bolognese, EE Device Design, Assembly PCB Design, & Power Chad Klinefelter, CSE User Interface & Backend App Development Jackie

More information

New STM32WB Series MCU with Built-in BLE 5 and IEEE

New STM32WB Series MCU with Built-in BLE 5 and IEEE New STM32WB Series MCU with Built-in BLE 5 and IEEE 802.15.4 Make the Choice of STM32WB Series The 7 keys points to make the difference 2 Open 2.4 GHz radio Multi-protocol Dual-core / Full control Ultra-low-power

More information

PROGRAMMABLE CONTROLLER. FP0 A/D Converter Unit. Technical Manual ARCT1F321E

PROGRAMMABLE CONTROLLER. FP0 A/D Converter Unit. Technical Manual ARCT1F321E PROGRAMMABLE CONTROLLER Technical Manual ARCT1F321E-2 2008.11 Safety Precautions Observe the following notices to ensure personal safety or to prevent accidents. To ensure that you use this product correctly,

More information

MicroBolt. Microcomputer/Controller Featuring the Philips LPC2106 FEATURES

MicroBolt. Microcomputer/Controller Featuring the Philips LPC2106 FEATURES Microcomputer/Controller Featuring the Philips LPC2106 FEATURES Powerful 60 MHz, 32-bit ARM processing core. Pin compatible with 24 pin Stamp-like controllers. Small size complete computer/controller with

More information

IoTECH* *Internet of Things Extensible Car Hub. MDR Presentation

IoTECH* *Internet of Things Extensible Car Hub. MDR Presentation IoTECH* *Internet of Things Extensible Car Hub MDR Presentation The IoTECH Team Chris Ingerson CSE Nick Korniyenko EE Nigel Paine CSE Raghid Bahnam EE Prof. Jay Taneja Advisor IoTECH - Problem Statement

More information

Instruction book IQAN-LST. Publ no HY /UK Edition 0301

Instruction book IQAN-LST. Publ no HY /UK Edition 0301 Instruction book IQAN-LST Publ no HY17-8364/UK Edition 0301 Contents 1 Introduction......................................................2 2 Precautions.......................................................3

More information

MPBS1 12V DC-DC Power Supply Rev B

MPBS1 12V DC-DC Power Supply Rev B MPBS1 12V DC-DC Power Supply Rev B Features Small and Compact Form Factor High Efficiency Low Input Voltage:< 8 Volts Compatible with Low Power ATX Motherboards Soft Power On (PS_ON) Power Good (PS_OK)

More information

SYSTEM DESIGN SPECIFICATIONS ZIGBEE BASIC SYSTEM

SYSTEM DESIGN SPECIFICATIONS ZIGBEE BASIC SYSTEM SYSTEM DESCRIPTION This specification describes and defines the basic requirements of the CE3200 ZigBee temperature sensor mote. The ZigBee temperature sensor mote awakens from powerdown idle every two

More information

Before powering on your driver, read this manual thoroughly. If you have any doubt or suggestion, please do not hesitate to contact us!

Before powering on your driver, read this manual thoroughly. If you have any doubt or suggestion, please do not hesitate to contact us! Laser diode driver Datasheet & UserManual Before powering on your driver, read this manual thoroughly. If you have any doubt or suggestion, please do not hesitate to contact us!, 37 Sedova St, Off 209,

More information

DC2U-1VR DC-DC Converter Module

DC2U-1VR DC-DC Converter Module DC2U-1VR DC-DC Converter Module Quick Start Guide Rev 1.3 08/2010 Contents Chapter 1 Overview 1.1 General Description 1.2 Image of DC2U-1VR 1.3 Getting Started 1.4 Recommended Cables Chapter 2 Details

More information

ESPino - Specifications

ESPino - Specifications ESPino - Specifications Summary Microcontroller ESP8266 (32-bit RISC) WiFi 802.11 (station, access point, P2P) Operating Voltage 3.3V Input Voltage 4.4-15V Digital I/O Pins 9 Analog Input Pins 1 (10-bit

More information

University Program Advance Material

University Program Advance Material University Program Advance Material Advance Material Modules Introduction ti to C8051F360 Analog Performance Measurement (ADC and DAC) Detailed overview of system variances, parameters (offset, gain, linearity)

More information

SILICON DESIGNS, INC Model 1210 ANALOG ACCELEROMETER

SILICON DESIGNS, INC Model 1210 ANALOG ACCELEROMETER SILICON DESIGNS, INC Model 1210 ANALOG ACCELEROMETER SENSOR TYPE: Capacitive Micromachined Nitrogen Damped Hermetically Sealed ±4V Differential Output or 0.5V to 4.5V Single Ended Output Fully Calibrated

More information

Introduction. This unit has a wide input range (6-34V) and it can provide a tightly regulated output ranging from 6 to 24V (default set to 12V).

Introduction. This unit has a wide input range (6-34V) and it can provide a tightly regulated output ranging from 6 to 24V (default set to 12V). Introduction The DCDC-USB is a small yet powerful DC-DC power supply designed to power a wide variety of devices. This DC-DC has a range of intelligent functions not found in any tradition USB converters.

More information

Approximately half the power consumption of earlier Renesas Technology products and multiple functions in a 14-pin package

Approximately half the power consumption of earlier Renesas Technology products and multiple functions in a 14-pin package Renesas Technology to Release R8C/Mx Series of Flash MCUs with Power Consumption Among the Lowest in the Industry and Powerful On-Chip Peripheral Functions Approximately half the power consumption of earlier

More information

User Manual. cmt-svr Startup Guide

User Manual. cmt-svr Startup Guide User Manual cmt-svr Startup Guide Table of Contents Chapter 1 Overview... 1 1.1 Specification... 1 1.2 Dimensions... 2 1.3 Connector pin designations... 3 1.4 USB host port and SD card slot... 3 1.5 Ethernet

More information

SmartBond DA Smallest, lowest power and most integrated Bluetooth 5 SoC. Applications DA14585

SmartBond DA Smallest, lowest power and most integrated Bluetooth 5 SoC. Applications DA14585 SmartBond DA14585 Smallest, lowest power and most integrated Bluetooth 5 SoC Connected devices are constantly evolving. New generations appear that are smarter, more full featured and have longer battery

More information

Hardware design of a submerged buoy system based on electromagnetic inductive coupling

Hardware design of a submerged buoy system based on electromagnetic inductive coupling Hardware design of a submerged buoy system based on electromagnetic inductive coupling 1 Dalei Song, Shan Gao 1, Ming Xu 2, Xiangdong Wang 1 and Yutao Wang 2 1 Department of Automation, Engineering College,

More information

SCA620-EF1V1B SINGLE AXIS ACCELEROMETER WITH ANALOG INTERFACE

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

More information

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

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

Wireless Home Control System

Wireless Home Control System WHCS UCF 1 Wireless Home Control System Project members Jimmy Campbell Computer Engineer Grant Hernandez Computer Engineer Joseph Love Electrical Engineer For Senior Design I at the University of Central

More information

EE 354 Fall 2015 Lecture 1 Architecture and Introduction

EE 354 Fall 2015 Lecture 1 Architecture and Introduction EE 354 Fall 2015 Lecture 1 Architecture and Introduction Note: Much of these notes are taken from the book: The definitive Guide to ARM Cortex M3 and Cortex M4 Processors by Joseph Yiu, third edition,

More information

INSTRUCTION MANUAL MODELS: 1760A, 1761, Triple Output DC POWER SUPPLY With Dual 4-Digit LED Displays

INSTRUCTION MANUAL MODELS: 1760A, 1761, Triple Output DC POWER SUPPLY With Dual 4-Digit LED Displays INSTRUCTION MANUAL MODELS: 1760A, 1761, 1762 Triple Output DC POWER SUPPLY With Dual 4-Digit LED Displays TEST INSTRUMENT SAFETY WARNING Normal use of test equipment exposes you to a certain amount of

More information