Application Note. Multifunction Data Logger

Size: px
Start display at page:

Download "Application Note. Multifunction Data Logger"

Transcription

1 Application Note AN2xxx Multifunction Data Logger Author: Tsogjavkhlan Tumurbaatar Associated Project: Yes Associated Part Family: CY8C27xxx PSoC Designer Version: 4.00 Summary This project shows how to set up a system for collecting data to through a computer s serial port. Software is also included in the project file for data logging and drawing the incoming signal shape. Introduction This project is to illustrate how to convert analog signals to digital information, convert digital information to analog signals and a data transfer between PC and PSoC write the data bytes, which come from the PC (software) via RS232, and read the data, which are stored to the RAM area on the PSOC. The output of the ADC is taken and displayed on the LCD display. Multifunction Datalogger convert analog signals to digital and digital information to analog signals finally sending the digital code to the PC. The software Datalog gets the digital code and draws the approximate incoming signal shape and controled analog outputs. Datalog software incoming data stores to the text file. These digital code bytes are stored into the RAM area of the PSoC. All stored bytes are sent to the PC at 9600 bps. User Modules This application uses the following PSoC microcontroller resources: Delta ADC User Module PGA User Module 2 DAC User Module 2 Counter User Module PWM User Module UART User module AMUX User module Flash temperature module The Basics LCD user module The schematic in Figure 1 exemplifies the simplicity of the hardware design. Since the PSoC chip has an internal oscillator allows clocking up to 24 MHz, no external crystal is necessary. The serial interface is the CY27c443s internal UART user module connected to the outside world via RS-232 using a Maxim MAX232 interface chip, which derives RS-232 drive voltages from the 5 volt supply and a MAX232 chip to convert the signals from and to RS232 levels for sending and receiving from the PC. The LCD User Module uses a single I/O port to interface to an industry standard Hitachi HD44780A LCD controller. To reduce the number of pins required, the 4-bit interface mode is used. The LCD to PSoC describe the 4-bit interface connections. Delta ADC gets the analog signal from AMUX by using a buffer (PGA, gain=1) and then converts the analog signal to digital code. It uses an Delta ADC User module to convert from analog to digital, DAC User Module convert from digital to analog signal, 8 bit Counter User Module User Modules provide a down counter with a programmable period and pulse width, the UART User module send, receive data to the PC. Multifunction Datalogger offers 4 analog input channels, 4 digital input, 2 analog output channels, 2 digital output, 1 Pulse generator, 1 Pulse width modulator, LCD display, and RS232 interface. 6/11/2004 Revision A - 1 -

2 User Modules AMUX ([Outbyte+1].[Outbyte+4] memory area) in user code inserted into Main.asm This sets the Mux to connect to a pin in Port 0 (Port 0 is the only port connected to the analog inputs.) The number passed to the function is the bit number on the port. * Initialize the AMUXmodule * mov A, [Input] ; specify pin in Port0 call AMUX4_1_InputSelect ; Switch Port0, pin x PGA A Programmable Gain Amplifier (PGA) with unity gain is also incorporated. The gain of the amplifier feeding the input of the ADC is unity, and this is variable from 1/16 to 16. I setup gain settings with a gain of 1.000, * initialize the ADC module * mov A,DELSIG8_1_HIGHPOWER ; Establish ;power setting... call DELSIG8_1_Start ; and initialize call DELSIG8_1_StartAD ;Commence sampling ; process Delta: cmp [DELSIG8_1_bfStatus],0 jz Delta ; spin lock until(data is Available) mov [DELSIG8_1_bfStatus], 0 ; reset the ;data available flag mov A, [DELSIG8_1_cResult] ;grab the data ;now that its valid mov X,[Count] mov [X+Out_byte],A ;load memory address ; ADC value is ;transferred to RAM The software Datalog gets the digital code and draws the approximate incoming signal shape. mov A,PGA_1_HIGHPOWER ;Set Power level of PGA call PGA_1_Start ;Start the PGA module Delta ADC This project has an 8-bit Delta Sigma ADC placed in the middle block of the 1st column of analog PSoC blocks. The gain of the PGA could be adjusted as desired. The output of the ADC is taken and displayed on the LCD display. The 24 MHz system clock is divided by 6 (VC1) to produce a 4 MHz clock and provided as the clock for the ADC. This results in approximately 15.4 ksps. By varying the dividers, different sample rates can be generated. The ADC value is transferred to RAM Figure 1 6/11/2004 Revision A - 2 -

3 DAC The DAC8 User Module translates 8 bit digital codes to output voltages. The DAC8 translates digital codes to output voltages at an update rate of upto 250 k samples per second. Input codes represented in offset-binary form, as a number ranging from 0 to 254. Upon program execution all hardware settings from the device configuration are loaded into the device and main.asm is executed. The DAC outputs a voltage Volts. Counter The 8-bit Counter User Modules provide a down counter with a programmable period and pulse width. I used two 8-bit counters. First counter; the 24 MHz system clock is divided by 12 (VC3) to produce a 2 MHz clock and provided as the clock for the baud rate generating counter module. The counter module further divides VC3 by 26 to provide the TX's required clock rate of 8 times the baud rate of Second counter generating the pulse for the pulse generator. You can free programmable period. The output is provided on P2.1 at 1kHz 125k Hz pulse. * initialize the DAC module * mov A, DAC8_1_HIGHPOWER ; specify ;DAC's amplify power call DAC8_1_Start ; and turn it on. mov A, DAC8_2_HIGHPOWER ; specify ;DAC's amplify power call DAC8_2_Start ; and turn it on. mov A,[Input_byte+5] ; load value from RAM call DAC8_1_WriteStall ; updates the output ; voltage mov A,[Input_byte+6] ; load value from RAM: call DAC8_2_WriteStall ; updates the output ; voltage The software Datalog send the 2 byte to PsoC and DAC updates output voltage. Outputs voltage range V *initialize the Counter module * call Counter8_1_Start ;Start the Counter8_1 call Counter8_2_Start ;Start the Counter8_2 DivideClock: mov A, [Input_byte+4] ; set the period time call Counter8_2_WritePeriod mov A, [Input_byte+3] ; generate duty cycle call Counter8_2_WriteCompareValue call Counter8_2_EnableInt ;enable the Counter ;Interrupt call Counter8_2_Start ; start to count when ;the enable The software Datalog send the 2 byte to PsoC and Counter updates output frequency pulse. Output frequency range 1-125kHz. Figure 2 Figure 3 6/11/2004 Revision A - 3 -

4 UART The UART is set up to operate at a 9.6K Baud Rate by the counter output frequency. Baud Rate is determined by the UART input clock frequency divided by 8 (76.8.6KHz/ 8 = Upon program execution all hardware settings from the device configuration are loaded into the device and main.asm is executed. The output is provided on TX P2.2, RX P2.0 at 9600 baud, no parity, 8 data bits and 1 stop bit. This project is written to be performed in the interrupt processing. dec [Count1] jnz RXdata exit1: mov [Count1],08h TxData: mov X,[Count1] mov A,[X+Out_byte] call UART_1_SendData Notready: call UART_1_bReadTxStatus and A, UART_1_TX_COMPLETE jz Notready dec [Count1] jnz TxData exit: pop X pop A The software Datalog send the 8 byte (Output string) to PsoC and receive the 8 byte (Input string) from to PsoC via serial port. *initialize the UART module * mov A,UART_1_PARITY_NONE ; No parity mov A,(UART_1_ENABLE_ RX_INT UART_1_DISABLE_TX_INT) call UART_1_IntCntl call UART_1_Start *UART RX interrupt area * push A push X mov [Count1],08h RXdata: mov [Row2],ffh mov [Count2],04h Wait: dec [Row2] jnz a1 mov [Row2],ffh dec [Count2] jnz a1 jz exit1 a1: call UART_1_bReadRxStatus and A,UART_1_RX_COMPLETE jz Wait call UART_1_bReadRxData mov X,[Count1] mov [X+Input_byte],A PWM Figure 4 The 24 MHz system clock is divided by 4 (VC1) and 16 (VC2) to produce a 250 khz clock. PWM8_1 drives its clock from the VC2 clock signal. The PWM8 User Module translates two 8 bit digital codes to pulses. The output of PWM8_1 drives GlobalOutEven_0, PSoC Pup board connected to pin P2.3. You can free programmable period and pulse width. The output is provided on P2.3 at 1kHz 100kHz pulse, 0-99% duty cycle. 6/11/2004 Revision A - 4 -

5 *initialize the PWM8_1 module * call PWM8_1_Start ; start the PWM8 - counter PWM: mov [Period1],[Input_byte+7] mov [PulseWidth1],[Input_byte+8] mov A,[Period1] ; set the period time call PWM8_1_WritePeriod mov A, [PulseWidth1] ; set Pulse Width time call PWM8_1_WritePulseWidth call PWM8_1_DisableInt ; ensure that ;interrupts are disabled call PWM8_1_Start ; start the PWM8 - counter ;will start to The software Datalog send the 2 byte to PsoC via serial port and PWM updates output pulse. Pulse freqeuncy range khz Pulse duty cycle range 1-99%. *initialize the Flash temperature module * call FlashTemp_1_Start ; start the analog block call FlashTemp_1_fIsData cmp A,0 ; test for zero jz NoTempYet ; data not ready TempReady: call FlashTemp_1_c GetData ;get the ;temperature data mov [Out_byte+6],A ; save the data to RAM The software Datalog receive the 1 byte from to PsoC via serial port and show temperature value. LCD Figure 6 Flash temperature Figure 5 Flash temperature module where the temperature is collected in the background while the main loop continues to run. The temperature value is transferred to PC. T he LCD User Module uses a single I/O port to interface to an industry standard Hitachi HD44780A LCD controller. To reduce the number of pins required, the 4-bit interface mode is used. The LCD to PSoC describe the 4-bit interface connection s. The ADC value is transferred to RAM and displayed on the LCD display. Decimal value displayed on the LCD display. call bin2bcd8 ; convert hex to ; decimal value mov A,41h call LCD_1_WriteData mov a,30h add a,[input] 6/11/2004 Revision A - 5 -

6 call LCD_1_WriteData mov A,[tBcd1] call LCD_1_PrHexByte mov A,2eh call LCD_1_WriteData mov A,[tBcd0] call LCD_1_PrHexByte mov A,20h call LCD_1_WriteData Digital input output Digital input P2.4-P2.7 Pull Up: This drive looks most like a TTL output. Pull Up can be used as an input or an output. StdCPU Pull Up would be a driver that is pulled up with an internal 5.6K resistor. To be used as an input, you would set the output to one. The pin looks like it was just pulled up with the 5.6K resistor and can be pulled low by the source outside the chip. jmp mask12 mask1: and reg[prt0dr],feh ; set low P0.0 mask12: mov A,[Input_byte+1] ; load value from RAM and A,01h ; check zero jz mask2 or reg[prt0dr],40h ; set high P0.6 jmp next mask2: and reg[prt0dr],bfh ; set low P0.6 Software The Datalog.exe program in Figure 9, which is written in LABVEIW, data send and receive to the PSoC via RS232. Remember LVDEVICE.DLL, SERDRV must be in the same directory as this application. How to Use It The port type should be selected from the Port number section at the upper-left corner of the program window, according to the where the RS232 cable has been connected. Secondly, write path and name of text file empty area at the upper-left corner of program window. Finally, Click the Run button. * Loop area * mov A,reg[PRT2DR] ; load Port2 or A,0fh ; mask MSB mov [Out_byte+5],A ; save the data to RAM ************************************************ Output Digital output P0.0, P0.6 * Loop area * mov A,[Input_byte+2] ; load value from RAM and A,01h ; check zero jz mask1 or reg[prt0dr],01h ; set high P0.0 Figure 7 If you want write data, click WRITE button. 6/11/2004 Revision A - 6 -

7 Schematic Analog in1 Analog in2 Analog in3 Analog in4 Digital in4 Digital in3 PWM out Generator U1 P0[7] AI Vdd P0[5] AIO AI P0[6] P0[3] AIO AIO P0[4] P0[1] AIO AIO P0[2] P2[7] AI P0[0] P2[5] AI REF P2[6] P2[3] AI (asc10) AI AGND P2[4] P2[1]AIasd20asc10 AIasd13asc23P2[2] SMP AI (asc23) P2[0] P1[7] I2C SCL XRES P1[5] I2C SDA P1[6] P1[3] EXTCLK P1[2] P1[1] I2C XTALin P1[2] Vss XTALout, I2C SDA P1[0] CY8C27443 VCC Digit out2 DAC out2 DAC out1 Digit out1 Digital in2 Digital in1 C5 10uF C4 10uF U3 C1+ C1- C2+ C2- T1IN T2IN R1OUT R2OUT MAX232 Vs+ Vs- VCC GND T1OUT T2OUT R1IN R2IN C uF VCC C7 10uF GND Rx2 Tx R1 10k VCC LCD HD44780 Figure 8 6/11/2004 Revision A - 7 -

8 Program panel Figure 9 6/11/2004 Revision A - 8 -

9 About the Author Name: Tsogjavkhlan Tumurbaatar Title: BU international airport, electronic engineer Background: Contact: Interested in design of analog and digital circuits. or BU airport 34, Ulaanbaatar 34, Mongolia Cypress MicroSystems, Inc nd Street SW, Building D Lynnwood, WA Phone: Fax: / / support@cypressmicro.com Copyright 2003 Cypress MicroSystems, Inc. All rights reserved. PSoC (Programmable System-on-Chip ) is a trademark of Cypress MicroSystems, Inc. All other trademarks or registered trademarks referenced herein are property of the respective corporations. The information contained herein is subject to change without notice. 6/11/2004 Revision A - 9 -

Instructions for Tele-Training

Instructions for Tele-Training Instructions for Tele-Training Prior to the start of the class: Download the latest PSoC Designer software at http://www.cypress.com/support/link.cfm?sd=4. If you have a PSoC ICE, connect it to your computer.

More information

Application Note. Energy Meter LAN Interface

Application Note. Energy Meter LAN Interface Application Note AN2xxx Energy Meter LAN Interface Author: Sunil Jha Associated Project: Yes Associated Part Family: CY8C27xxx PSoC Designer Version: 4.10 Summary Automated Meter Reading (AMR) now a day

More information

Application Note. Interfacing to a Graphics LCD from PSoC. Summary This Application Note describes how to control a graphic LCD in a PSoC application.

Application Note. Interfacing to a Graphics LCD from PSoC. Summary This Application Note describes how to control a graphic LCD in a PSoC application. Application Note AN2147 Interfacing to a Graphics LCD from PSoC Author: Pham Minh Tri Associated Projects: Yes Associated Part Family: CY8C27xxx PSoC Designer Version: 4.0 Associated Application Notes:

More information

PSoC 1 Evaluation Kit Guide

PSoC 1 Evaluation Kit Guide CY3210-PSoCEVAL1 PSoC 1 Evaluation Kit Guide Doc. #: 001-66768 Rev. *D Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intnl): 408.943.2600 http://www.cypress.com

More information

8051 Microcontroller

8051 Microcontroller 8051 Microcontroller The 8051, Motorola and PIC families are the 3 leading sellers in the microcontroller market. The 8051 microcontroller was originally developed by Intel in the late 1970 s. Today many

More information

DEV-1 HamStack Development Board

DEV-1 HamStack Development Board Sierra Radio Systems DEV-1 HamStack Development Board Reference Manual Version 1.0 Contents Introduction Hardware Compiler overview Program structure Code examples Sample projects For more information,

More information

SANKALCHAND PATEL COLLEGE OF ENGINEERING, VISNAGAR. ELECTRONICS & COMMUNICATION DEPARTMENT Question Bank- 1

SANKALCHAND PATEL COLLEGE OF ENGINEERING, VISNAGAR. ELECTRONICS & COMMUNICATION DEPARTMENT Question Bank- 1 SANKALCHAND PATEL COLLEGE OF ENGINEERING, VISNAGAR ELECTRONICS & COMMUNICATION DEPARTMENT Question Bank- 1 Subject: Microcontroller and Interfacing (151001) Class: B.E.Sem V (EC-I & II) Q-1 Explain RISC

More information

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

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

More information

LED Testing and Control Using PSoC

LED Testing and Control Using PSoC Application Note AN2372 LED Testing and Control Using Author: David Johnson Associated Project: Yes Associated Part Family: CY8C21434 and CY8C24794 Software Version: Designer 4.2 SP2 and Express 2.0 Abstract

More information

Department of Electronics and Instrumentation Engineering Question Bank

Department of Electronics and Instrumentation Engineering Question Bank www.examquestionpaper.in Department of Electronics and Instrumentation Engineering Question Bank SUBJECT CODE / NAME: ET7102 / MICROCONTROLLER BASED SYSTEM DESIGN BRANCH : M.E. (C&I) YEAR / SEM : I / I

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

User Manual For CP-JR ARM7 USB-LPC2148 / EXP

User Manual For CP-JR ARM7 USB-LPC2148 / EXP CP-JR ARM7 USB-LPC2148 / EXP 38 CR-JR ARM7 USB-LPC2148 which is a Board Microcontroller ARM7TDMI-S Core uses Microcontroller 16/32-Bit 64 Pin as Low Power type to be a permanent MCU on board and uses MCU

More information

PSoC Designer: Integrated Development Environment

PSoC Designer: Integrated Development Environment PSoC Designer: Integrated Development Environment Getting Started 25-Minute Tutorial Revision 1.0 CMS10006A Last Revised: July 3, 2001 Cypress MicroSystems, Inc. 1 Overview This tutorial of PSoC Designer:

More information

1st Order Modulator nd Order Modulator

1st Order Modulator nd Order Modulator Datasheet DELSIG11V 3.2 001-13433 Rev. *J 11-Bit Delta Sigma ADC Copyright 2002-2015 Cypress Semiconductor Corporation. All Rights Reserved. Resources PSoC Blocks API Memory (Bytes) Digital Analog CT Analog

More information

Infineon C167CR microcontroller, 256 kb external. RAM and 256 kb external (Flash) EEPROM. - Small single-board computer (SBC) with an

Infineon C167CR microcontroller, 256 kb external. RAM and 256 kb external (Flash) EEPROM. - Small single-board computer (SBC) with an Microcontroller Basics MP2-1 week lecture topics 2 Microcontroller basics - Clock generation, PLL - Address space, addressing modes - Central Processing Unit (CPU) - General Purpose Input/Output (GPIO)

More information

Mega128-Net Mega128-Net Mega128 AVR Boot Loader Mega128-Net

Mega128-Net Mega128-Net Mega128 AVR Boot Loader Mega128-Net Mega128-Net 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-Net development board is designed

More information

Introduction to ARM LPC2148 Microcontroller

Introduction to ARM LPC2148 Microcontroller Introduction to ARM LPC2148 Microcontroller Dr.R.Sundaramurthy Department of EIE Pondicherry Engineering College Features of LPC2148 in a Nut Shell CPU = ARM 7 Core Word Length = 32 Bit ROM = 512 KB RAM

More information

This Application Note demonstrates an SPI-LIN slave bridge using a PSoC device. Demonstration projects are included.

This Application Note demonstrates an SPI-LIN slave bridge using a PSoC device. Demonstration projects are included. Communication - SPI-LIN Slave Bridge Application Note Abstract AN0 Author: Valeriy Kyrynyuk Associated Project: Yes Associated Part Family: CY8C7 GET FREE SAMPLES HERE Software Version: PSoC Designer.

More information

CE PSoC 4: Time-Stamped ADC Data Transfer Using DMA

CE PSoC 4: Time-Stamped ADC Data Transfer Using DMA CE97091- PSoC 4: Time-Stamped ADC Data Transfer Using DMA Objective This code example uses a DMA channel with two descriptors to implement a time-stamped ADC data transfer. It uses the Watch Dog Timer

More information

Arduino Uno R3 INTRODUCTION

Arduino Uno R3 INTRODUCTION Arduino Uno R3 INTRODUCTION Arduino is used for building different types of electronic circuits easily using of both a physical programmable circuit board usually microcontroller and piece of code running

More information

Configurable Mixed-Signal Array with On-board Controller

Configurable Mixed-Signal Array with On-board Controller Not Recommended for New Designs: Use CY8C27xxx Configurable MixedSignal Array with Onboard Controller CY8C25122, CY8C26233, CY8C26443, CY8C26643 Device Data Sheet for Silicon Revision D Programmable SystemonChip

More information

RTC Interface 89C51 DS M. Krishna Kumar MAM/M7/LU17/V1/ Vcc VCC 5 SDA P1.0 6 SCL P KHz 3 BAT 3.

RTC Interface 89C51 DS M. Krishna Kumar MAM/M7/LU17/V1/ Vcc VCC 5 SDA P1.0 6 SCL P KHz 3 BAT 3. RTC Interface 89C51 Vcc P1.0 10k 10k 5 SDA DS 1307 8 VCC P1.1 6 SCL X1 1 + 3 BAT X2 2 32.768KHz - 3.6V 4 GND INTB\SQW 7 M. Krishna Kumar MAM/M7/LU17/V1/2004 1 RTC Interface contd. DS 1307 is a real time

More information

PSoC Designer Quick Start Guide

PSoC Designer Quick Start Guide Installation PSoC Designer Quick Start Guide PSoC Designer is available for download at http://www.cypress.com/go/designer. You can also download an ISO image to create an installation CD. Each Starter

More information

PSoC Blocks. CY8C20xx6/6A/6AS/6H/6L, CY8C20xx7/7S, CY7C643xx, CY7C604xx, CYONS2xxx, CYONSxNxxxx, CYRF89x35, CY8C20065, CY8C24x93, CY7C69xxx

PSoC Blocks. CY8C20xx6/6A/6AS/6H/6L, CY8C20xx7/7S, CY7C643xx, CY7C604xx, CYONS2xxx, CYONSxNxxxx, CYRF89x35, CY8C20065, CY8C24x93, CY7C69xxx Datasheet ADCINC V 3.00 001-45836 Rev. *H Incremental ADC Copyright 2008-2013 Cypress Semiconductor Corporation. All Rights Reserved. Resources PSoC Blocks API Memory (Bytes) CapSense I2C/SPI Timer Comparator

More information

ARDUINO LEONARDO WITH HEADERS Code: A000057

ARDUINO LEONARDO WITH HEADERS Code: A000057 ARDUINO LEONARDO WITH HEADERS Code: A000057 Similar to an Arduino UNO, can be recognized by computer as a mouse or keyboard. The Arduino Leonardo is a microcontroller board based on the ATmega32u4 (datasheet).

More information

PMC-12AI Channel, 12-Bit Analog Input PMC Board. With 1,500 KSPS Input Conversion Rate

PMC-12AI Channel, 12-Bit Analog Input PMC Board. With 1,500 KSPS Input Conversion Rate PMC-12AI64 64-Channel, 12-Bit Analog Input PMC Board With 1,500 KSPS Input Conversion Rate Features Include: 64 Single-ended or 32 Differential 12-Bit Scanned Analog Input Channels Sample Rates to 1,500

More information

Design and development of embedded systems for the Internet of Things (IoT) Fabio Angeletti Fabrizio Gattuso

Design and development of embedded systems for the Internet of Things (IoT) Fabio Angeletti Fabrizio Gattuso Design and development of embedded systems for the Internet of Things (IoT) Fabio Angeletti Fabrizio Gattuso Microcontroller It is essentially a small computer on a chip Like any computer, it has memory,

More information

USB-4303 Specifications

USB-4303 Specifications Specifications Document Revision 1.0, February, 2010 Copyright 2010, Measurement Computing Corporation Typical for 25 C unless otherwise specified. Specifications in italic text are guaranteed by design.

More information

Incremental ADC Data Sheet

Incremental ADC Data Sheet 4. Incremental ADC Incremental ADC Data Sheet Copyright 2008-2009 Cypress Semiconductor Corporation. All Rights Reserved. ADCINC PSoC Resources Blocks API Memory Pins (per CapSense I2C/SPI Timer Comparator

More information

CPCI-12AI Channel, 12-Bit Analog Input CPCI Board With 1,500 KSPS Input Conversion Rate

CPCI-12AI Channel, 12-Bit Analog Input CPCI Board With 1,500 KSPS Input Conversion Rate CPCI-12AI64 64-Channel, 12-Bit Analog Input CPCI Board With 1,500 KSPS Input Conversion Rate Features Include: 64 Single-ended or 32 Differential 12-Bit Scanned Analog Input Channels Sample Rates to 1,500

More information

16-Channel 16-Bit PMC Analog I/O Board

16-Channel 16-Bit PMC Analog I/O Board 16-Channel 16-Bit PMC Analog I/O Board With 8 Input Channels, 8 Output Channels, and Autocalibration Eight 16-Bit Analog Output Channels with 16-Bit D/A Converter per Channel Eight 16-Bit Analog Input

More information

IP-THERMISTOR. 6 CHANNELS TEMPERATURE 8-CHANNEL VOLTAGE Industry Pack module HARDWARE REFERENCE MANUAL. Revision 1.0 JANUARY, 2008

IP-THERMISTOR. 6 CHANNELS TEMPERATURE 8-CHANNEL VOLTAGE Industry Pack module HARDWARE REFERENCE MANUAL. Revision 1.0 JANUARY, 2008 IP-THERMISTOR 6 CHANNELS TEMPERATURE 8-CHANNEL VOLTAGE Industry Pack module HARDWARE REFERENCE MANUAL Revision 1.0 JANUARY, 2008 This Document shall not be duplicated, nor its contents used for any purpose,

More information

Interface DAC to a PC. Control Word of MC1480 DAC (or DAC 808) 8255 Design Example. Engineering 4862 Microprocessors

Interface DAC to a PC. Control Word of MC1480 DAC (or DAC 808) 8255 Design Example. Engineering 4862 Microprocessors Interface DAC to a PC Engineering 4862 Microprocessors Lecture 22 Cheng Li EN-4012 licheng@engr.mun.ca DAC (Digital-to-Analog Converter) Device used to convert digital pulses to analog signals Two methods

More information

BATSEL KEY3 KEY2 HOSCO GPIO0 DCDIS HOSCI KEY0 D4 KEY1 D3. Reset Default. 2 D7 BI / L Bit7 of ext. memory data bus

BATSEL KEY3 KEY2 HOSCO GPIO0 DCDIS HOSCI KEY0 D4 KEY1 D3. Reset Default. 2 D7 BI / L Bit7 of ext. memory data bus 3. Pin Description 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 NGND LXVCC KEY4 GPIO1 CE2# GPIO2 CE1# VDD KEY5 KEY6 LED0 LED1 LED2 NC NC VCC LXVDD BAT

More information

Programmable Threshold Comparator Data Sheet

Programmable Threshold Comparator Data Sheet 10. Programmable Threshold Comparator Programmable Threshold Comparator Data Sheet Copyright 2001-2009 Cypress Semiconductor Corporation. All Rights Reserved. CMPPRG Resources CY8C29/27/24/22xxx, CY8C23x33,

More information

12AI Channel, 12-Bit Analog Input PMC Board. With 1,500 KSPS Input Conversion Rate

12AI Channel, 12-Bit Analog Input PMC Board. With 1,500 KSPS Input Conversion Rate 64-Channel, 12-Bit Analog Input PMC Board With 1,500 KSPS Input Conversion Rate Available in PMC, PCI, cpci and PC104-Plus and PCI Express form factors as: PMC-12AI64: PCI-12AI64: cpci-12ai64: PC104P-12AI64:

More information

1st Order Modulator nd Order Modulator

1st Order Modulator nd Order Modulator Datasheet DELSIG8V 3.2 001-13434 Rev. *I 8-Bit Delta Sigma ADC Copyright 2002-2015 Cypress Semiconductor Corporation. All Rights Reserved. Resources PSoC Blocks API Memory (Bytes) Digital Analog CT Analog

More information

LABORATORY MANUAL Interfacing LCD 16x2, Keypad 4x4 and 7Segment Display to PIC18F4580

LABORATORY MANUAL Interfacing LCD 16x2, Keypad 4x4 and 7Segment Display to PIC18F4580 LABORATORY MANUAL Interfacing LCD 16x2, Keypad 4x4 and 7Segment Display to PIC18F458 1. OBJECTIVES: 1.1 To learn how to interface LCD 16x2, Keypad 4x4 and 7Segment Display to the microcontroller. 1.2 To

More information

2. (2 pts) If an external clock is used, which pin of the 8051 should it be connected to?

2. (2 pts) If an external clock is used, which pin of the 8051 should it be connected to? ECE3710 Exam 2. Name _ Spring 2013. 5 pages. 102 points, but scored out of 100. You may use any non-living resource to complete this exam. Any hint of cheating will result in a 0. Part 1 Short Answer 1.

More information

The Atmel ATmega328P Microcontroller

The Atmel ATmega328P Microcontroller Ming Hsieh Department of Electrical Engineering EE 459Lx - Embedded Systems Design Laboratory 1 Introduction The Atmel ATmega328P Microcontroller by Allan G. Weber This document is a short introduction

More information

Microcontroller. BV523 32bit Microcontroller. Product specification. Jun 2011 V0.a. ByVac Page 1 of 8

Microcontroller. BV523 32bit Microcontroller. Product specification. Jun 2011 V0.a. ByVac Page 1 of 8 32bit Product specification Jun 2011 V0.a ByVac Page 1 of 8 Contents 1. Introduction...3 2. Features...3 3. Physical Specification...3 3.1. PIC32...3 3.2. USB Interface...3 3.3. Power Supply...4 3.4. Power

More information

Dual Interface LCD Display Controller

Dual Interface LCD Display Controller Dual Interface LCD Display & Keypad Controller Product specification Nov 2013 V0.a ByVac Page 1 of 11 Contents 1. Introduction... 3 2. Features... 3 3. BV4618, Comparison... 3 3.1.1. BV4618... 3 3.1.2....

More information

ONYX-MM-XT PC/104 Format Counter/Timer & Digital I/O Module

ONYX-MM-XT PC/104 Format Counter/Timer & Digital I/O Module ONYX-MM-XT PC/104 Format Counter/Timer & Digital I/O Module User Manual V1.4 Copyright 2009 Diamond Systems Corporation 1255 Terra Bella Avenue Mountain View, CA 94043 USA Tel (650) 810-2500 Fax (650)

More information

EEE3410 Microcontroller Applications Department of Electrical Engineering Lecture 4 The 8051 Architecture

EEE3410 Microcontroller Applications Department of Electrical Engineering Lecture 4 The 8051 Architecture Department of Electrical Engineering Lecture 4 The 8051 Architecture 1 In this Lecture Overview General physical & operational features Block diagram Pin assignments Logic symbol Hardware description Pin

More information

Application Note. A Thermistor Based Thermometer, PSoC Style

Application Note. A Thermistor Based Thermometer, PSoC Style Application Note AN2017 A Thermistor Based Thermometer, PSoC Style By: Dave Van Ess Associated Project: Yes Associated Part Family: CY8C25xxx, CY8C26xxx Summary Expanding on Application Note AN2028 (Ohmmeter),

More information

ARDUINO MICRO WITHOUT HEADERS Code: A000093

ARDUINO MICRO WITHOUT HEADERS Code: A000093 ARDUINO MICRO WITHOUT HEADERS Code: A000093 Arduino Micro is the smallest board of the family, easy to integrate it in everyday objects to make them interactive. The Micro is based on the ATmega32U4 microcontroller

More information

Microcontrollers. Principles and Applications. Ajit Pal +5 V 2K 8. 8 bit dip switch. P2 8 Reset switch Microcontroller AT89S52 100E +5 V. 2.

Microcontrollers. Principles and Applications. Ajit Pal +5 V 2K 8. 8 bit dip switch. P2 8 Reset switch Microcontroller AT89S52 100E +5 V. 2. Ajit Pal Microcontrollers Principles and Applications +5 V 2K 8 8 bit dip switch P2 8 Reset switch Microcontroller AT89S52 100E +5 V +5 V 2.2K 10 uf RST 7 Segment common anode LEDs P1(0-6) & P3(0-6) 7

More information

CE95314 PSoC 3, PSoC 4, and PSoC 5LP EZI2C

CE95314 PSoC 3, PSoC 4, and PSoC 5LP EZI2C CE95314 PSoC 3, PSoC 4, and PSoC 5LP EZI2C Objective These code examples demonstrate the usage of the EZI2C slave and I 2 C master Components in PSoC 3, PSoC 4, and PSoC 5LP. Overview These code examples

More information

The Freescale MC908JL16 Microcontroller

The Freescale MC908JL16 Microcontroller Ming Hsieh Department of Electrical Engineering EE 459Lx - Embedded Systems Design Laboratory The Freescale MC908JL16 Microcontroller by Allan G. Weber 1 Introduction The Freescale MC908JL16 (also called

More information

PMC-16AI Channel, 16-Bit Analog Input PMC Board. With 500 KSPS Input Conversion Rate. Features Include: Applications Include:

PMC-16AI Channel, 16-Bit Analog Input PMC Board. With 500 KSPS Input Conversion Rate. Features Include: Applications Include: PMC-16AI64 64-Channel, 16-Bit Analog Input PMC Board With 500 KSPS Input Conversion Rate Features Include: 64 Single-ended or 32 Differential 16-Bit Scanned Analog Input Channels Conversion Rates to 500K

More information

Contents. The USB Logic Tool... 2 Programming... 2 Using the USB Logic Tool... 6 USB Logic Tool Features... 7 Device Hardware...

Contents. The USB Logic Tool... 2 Programming... 2 Using the USB Logic Tool... 6 USB Logic Tool Features... 7 Device Hardware... USB Logic Tool Contents The USB Logic Tool... 2 Programming... 2 Using the USB Logic Tool... 6 USB Logic Tool Features... 7 Device Hardware... 11 The USB Logic Tool The device is meant to be a prototyping

More information

Ali Karimpour Associate Professor Ferdowsi University of Mashhad

Ali Karimpour Associate Professor Ferdowsi University of Mashhad AUTOMATIC CONTROL SYSTEMS Ali Karimpour Associate Professor Ferdowsi University of Mashhad Main reference: Christopher T. Kilian, (2001), Modern Control Technology: Components and Systems Publisher: Delmar

More information

The Atmel ATmega168A Microcontroller

The Atmel ATmega168A Microcontroller Ming Hsieh Department of Electrical Engineering EE 459Lx - Embedded Systems Design Laboratory The Atmel ATmega168A Microcontroller by Allan G. Weber 1 Introduction The Atmel ATmega168A is one member of

More information

EZ-Bv4 Datasheet v0.7

EZ-Bv4 Datasheet v0.7 EZ-Bv4 Datasheet v0.7 Table of Contents Introduction... 2 Electrical Characteristics... 3 Regulated and Unregulated Power Pins... 4 Low Battery Warning... 4 Hardware Features Main CPU... 5 Fuse Protection...

More information

An Arduino Controlled 1 Hz to 60 MHz Signal Generator

An Arduino Controlled 1 Hz to 60 MHz Signal Generator An Arduino Controlled 1 Hz to 60 MHz Signal Generator Greg McIntire, AA5C AA5C@arrl.net WWW..ORG 1 Objectives Build a standalone 60 MHz signal generator based on the DDS-60 board. Originally controlled

More information

Interfacing a Hyper Terminal to the Flight 86 Kit

Interfacing a Hyper Terminal to the Flight 86 Kit Experiment 6 Interfacing a Hyper Terminal to the Flight 86 Kit Objective The aim of this lab experiment is to interface a Hyper Terminal to 8086 processor by programming the 8251 USART. Equipment Flight

More information

3. (a) Explain the steps involved in the Interfacing of an I/O device (b) Explain various methods of interfacing of I/O devices.

3. (a) Explain the steps involved in the Interfacing of an I/O device (b) Explain various methods of interfacing of I/O devices. Code No: R05320202 Set No. 1 1. (a) Discuss the minimum mode memory control signals of 8086? (b) Explain the write cycle operation of the microprocessor with a neat timing diagram in maximum mode. [8+8]

More information

ARDUINO LEONARDO ETH Code: A000022

ARDUINO LEONARDO ETH Code: A000022 ARDUINO LEONARDO ETH Code: A000022 All the fun of a Leonardo, plus an Ethernet port to extend your project to the IoT world. You can control sensors and actuators via the internet as a client or server.

More information

32-Bit Counter Datasheet Counter32 V 2.5. Features and Overview

32-Bit Counter Datasheet Counter32 V 2.5. Features and Overview Datasheet Counter32 V 2.5 001-13265 Rev. *J 32-Bit Counter Copyright 2002-2012 Cypress Semiconductor Corporation. All Rights Reserved. Resources PSoC Blocks API Memory (Bytes) Digital Analog CT Analog

More information

MCS-51 Serial Port A T 8 9 C 5 2 1

MCS-51 Serial Port A T 8 9 C 5 2 1 MCS-51 Serial Port AT89C52 1 Introduction to Serial Communications Serial vs. Parallel transfer of data Simplex, Duplex and half-duplex modes Synchronous, Asynchronous UART Universal Asynchronous Receiver/Transmitter.

More information

Bachelor of Engineering in Computer and Electronic Engineering

Bachelor of Engineering in Computer and Electronic Engineering Bachelor of Engineering in Computer and Electronic Engineering Computer Engineering 1 Year 2 Semester 3 Autumn 08 Niall O Keeffe Instructions to Candidates: - 2 hours duration Answer 4 out of 6 questions.

More information

ED1021 I/O Expander with UART interface & analog inputs

ED1021 I/O Expander with UART interface & analog inputs Preliminary Highlights 2.7V 5V power supply range. 12 GPIOs. Up to 40mA maximum current in each output except GPIO8 (up to a total device current of 175mA). Most GPIOs can be an input to a 10bit ADC. Simple

More information

PIC-I/O Multifunction I/O Controller

PIC-I/O Multifunction I/O Controller J R KERR AUTOMATION ENGINEERING PIC-I/O Multifunction I/O Controller The PIC-I/O multifunction I/O controller is compatible with the PIC-SERVO and PIC-STEP motor control modules and provides the following

More information

Easy Kit Board Manual

Easy Kit Board Manual User s Manual, V1.0, June2008 Easy Kit Board Manual Easy Kit - XC88x Microcontrollers Edition 2008-06 Published by Infineon Technologies AG, 81726 München, Germany Infineon Technologies AG 2008. All Rights

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

M68HC08 Microcontroller The MC68HC908GP32. General Description. MCU Block Diagram CPU08 1

M68HC08 Microcontroller The MC68HC908GP32. General Description. MCU Block Diagram CPU08 1 M68HC08 Microcontroller The MC68HC908GP32 Babak Kia Adjunct Professor Boston University College of Engineering Email: bkia -at- bu.edu ENG SC757 - Advanced Microprocessor Design General Description The

More information

ZigBee Compliant Platform 2.4G RF Low Power Transceiver Module for IEEE Standard. DATA SHEET Version B

ZigBee Compliant Platform 2.4G RF Low Power Transceiver Module for IEEE Standard. DATA SHEET Version B ZMD400-A01 ZigBee Compliant Platform 2.4G RF Low Power Transceiver Module for IEEE 802.15.4 Standard DATA SHEET Version B Quan International Co., Ltd., ZMD400 Features Fully compliant 802.15.4 Standard

More information

Programmable Gain Amplifier Datasheet PGA V 3.2. Features and Overview

Programmable Gain Amplifier Datasheet PGA V 3.2. Features and Overview Datasheet PGA V 3.2 001-13575 Rev. *I Programmable Gain Amplifier Copyright 2002-2014 Cypress Semiconductor Corporation. All Rights Reserved. Resources PSoC Blocks API Memory (Bytes) Digital Analog CT

More information

BV4626 General Purpose I/O. Product specification. Mar 2010 V0.a. ByVac Page 1 of 13

BV4626 General Purpose I/O. Product specification. Mar 2010 V0.a. ByVac Page 1 of 13 General Purpose I/O Product specification Mar 2010 V0.a ByVac Page 1 of 13 Contents 1. Introduction... 3 2. Features... 3 3. Physical Specification... 3 3.1. JP7... 3 3.2. Control Interface... 4 3.3. Serial

More information

AVR XMEGA Product Line Introduction AVR XMEGA TM. Product Introduction.

AVR XMEGA Product Line Introduction AVR XMEGA TM. Product Introduction. AVR XMEGA TM Product Introduction 32-bit AVR UC3 AVR Flash Microcontrollers The highest performance AVR in the world 8/16-bit AVR XMEGA Peripheral Performance 8-bit megaavr The world s most successful

More information

CPCI-16AIO Channel 16-Bit Analog I/O CPCI Board With 8 Input Channels, 8 Output Channels, and Auto calibration

CPCI-16AIO Channel 16-Bit Analog I/O CPCI Board With 8 Input Channels, 8 Output Channels, and Auto calibration CPCI-16AIO-88 16-Channel 16-Bit Analog I/O CPCI Board With 8 Input Channels, 8 Output Channels, and Auto calibration Features Include: 8 Analog Output Channels with a 16-Bit D/A Converter per Channel 16-Bit

More information

Pmod modules are powered by the host via the interface s power and ground pins.

Pmod modules are powered by the host via the interface s power and ground pins. 1300 Henley Court Pullman, WA 99163 509.334.6306 www.store. digilent.com Digilent Pmod Interface Specification 1.2.0 Revised October 5, 2017 1 Introduction The Digilent Pmod interface is used to connect

More information

DMX512 Receiver Datasheet DMX512Rx V 1.0. Features and Overview

DMX512 Receiver Datasheet DMX512Rx V 1.0. Features and Overview Datasheet DMX512Rx V 1.0 001-14404 Rev. *G DMX512 Receiver Copyright 2007-2014 Cypress Semiconductor Corporation. All Rights Reserved. Resources PSoC Blocks API Memory (Bytes) Digital Analog CT Analog

More information

PC87435 Enhanced IPMI Baseboard Management Controller

PC87435 Enhanced IPMI Baseboard Management Controller April 2003 Revision 1.01 PC87435 Enhanced IPMI Baseboard Management Controller General Description The PC87435 is a highlyintegrated Enhanced IPMI Baseboard Management Controller (BMC), or satellite management

More information

AT89S8252 Development Board V1.0. Manual

AT89S8252 Development Board V1.0. Manual AT89S8252 Development Board V1.0 Manual Page 1 Chapter 1. Introduction 1.1 Introduction This user s guide describes how to connect to and set-up the AT89S8252 Development Board, for program development

More information

Device: MOD This document Version: 1.0. Matches module version: v3 [29 June 2016] Date: 23 October 2017

Device: MOD This document Version: 1.0. Matches module version: v3 [29 June 2016] Date: 23 October 2017 Device: MOD-1025 This document Version: 1.0 Matches module version: v3 [29 June 2016] Date: 23 October 2017 Description: UART (async serial) to I2C adapter module MOD-1025 v3 datasheet Page 2 Contents

More information

Renesas 78K/78K0R/RL78 Family In-Circuit Emulation

Renesas 78K/78K0R/RL78 Family In-Circuit Emulation _ Technical Notes V9.12.225 Renesas 78K/78K0R/RL78 Family In-Circuit Emulation This document is intended to be used together with the CPU reference manual provided by the silicon vendor. This document

More information

Basics of UART Communication

Basics of UART Communication Basics of UART Communication From: Circuit Basics UART stands for Universal Asynchronous Receiver/Transmitter. It s not a communication protocol like SPI and I2C, but a physical circuit in a microcontroller,

More information

CN310 Microprocessor Systems Design

CN310 Microprocessor Systems Design CN310 Microprocessor Systems Design Microcontroller Nawin Somyat Department of Electrical and Computer Engineering Thammasat University Outline Course Contents 1 Introduction 2 Simple Computer 3 Microprocessor

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK C8051F931 DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

More information

Propeller Activity Board (#32910)

Propeller Activity Board (#32910) 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

Linux Kernel Hacking Free Course, 3rd edition. HWMPS: Hardware Monitor & Protection System

Linux Kernel Hacking Free Course, 3rd edition. HWMPS: Hardware Monitor & Protection System Andrea Sarro University of Rome Tor Vergata HWMPS: Hardware Monitor & Protection System April 5, 2006 Outline of the talk Project overview Developement phases and practical issues Hardware platform Microcontroller

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

ED1021 I/O Expander with UART interface & analog inputs

ED1021 I/O Expander with UART interface & analog inputs Preliminary Highlights 4.5V 5.5V power supply range. 12 GPIOs. Up to 40mA maximum current in each output except GPIO8 (up to a total device current of 175mA). Most GPIOs can be an input to a 10bit ADC.

More information

PSoC 1 I 2 C Bootloader

PSoC 1 I 2 C Bootloader Objective Project Name: PSoC1_I2C_Bootloader Programming Language: C Associated Part: All PSoC 1 Families Software Version: PD 5.2 SP1 Related Hardware: CY3210 PSoC Eval1 Board Author: Jie Yuan This project

More information

FIFTH SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/ TECHNOLOGY-MARCH 2014 EMBEDDED SYSTEMS (Common for CT,CM) [Time: 3 hours] (Maximum marks : 100)

FIFTH SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/ TECHNOLOGY-MARCH 2014 EMBEDDED SYSTEMS (Common for CT,CM) [Time: 3 hours] (Maximum marks : 100) (Revision-10) FIFTH SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/ TECHNOLOGY-MARCH 2014 EMBEDDED SYSTEMS (Common for CT,CM) [Time: 3 hours] (Maximum marks : 100) PART-A (Maximum marks : 10) I. Answer all

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK C8051F330 DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

More information

LCD03 - I2C/Serial LCD Technical Documentation

LCD03 - I2C/Serial LCD Technical Documentation LCD03 - I2C/Serial LCD Technical Documentation Pagina 1 di 5 Overview The I2C and serial display driver provides easy operation of a standard 20*4 LCD Text display. It requires only a 5v power supply and

More information

LCD Display. Other I/O. LCD display Flash ROM SPI EPROM Keyboard (PS/2) UART connectors DAC ADC. 2-line, 16 character LCD display

LCD Display. Other I/O. LCD display Flash ROM SPI EPROM Keyboard (PS/2) UART connectors DAC ADC. 2-line, 16 character LCD display Other I/O LCD display Flash ROM SPI EPROM Keyboard (PS/2) UART connectors DAC ADC LCD Display 2-line, 16 character LCD display 4-bit interface Relatively easy to use once you have it mapped into your processor

More information

SLCD1-IC Serial LCD Processor

SLCD1-IC Serial LCD Processor SLCD1-IC Serial LCD Processor Diagram 1: LCD Pin 13 LCD Pin 14 1 2 18 17 LCD Pin 12 LCD Pin 11 N/C 3 16 8 MHz Osc DC 4 15 8 MHz Osc Ground 5 14 DC Serial Input True/Inverted 6 7 13 12 LCD Pin 6 LCD Pin

More information

Am186ER/Am188ER AMD continues 16-bit innovation

Am186ER/Am188ER AMD continues 16-bit innovation Am186ER/Am188ER AMD continues 16-bit innovation 386-Class Performance, Enhanced System Integration, and Built-in SRAM Am186ER and Am188ER Am186 System Evolution 80C186 Based 3.37 MIP System Am186EM Based

More information

MLR INSTITUTE OF TECHNOLOGY DUNDIGAL , HYDERABAD

MLR INSTITUTE OF TECHNOLOGY DUNDIGAL , HYDERABAD Name Code : 56012 Class Branch MR INSTITUTE OF TECHNOOGY DUNDIGA - 500 043, HYDERABAD EECTRONICS AND COMMUNICATION ENGINEERING ASSIGNMENT QUESTIONS : MICROPROCESSORS AND MICROCONTROERS : III - B. Tech

More information

I also provide a purpose-built ADC/DAC board to support the lab experiment. This analogue I/O board in only needed for Part 3 and 4 of VERI.

I also provide a purpose-built ADC/DAC board to support the lab experiment. This analogue I/O board in only needed for Part 3 and 4 of VERI. 1 2 I also provide a purpose-built ADC/DAC board to support the lab experiment. This analogue I/O board in only needed for Part 3 and 4 of VERI. However I will now be examining the digital serial interface

More information

keyestudio Keyestudio MEGA 2560 R3 Board

keyestudio Keyestudio MEGA 2560 R3 Board Keyestudio MEGA 2560 R3 Board Introduction: Keyestudio Mega 2560 R3 is a microcontroller board based on the ATMEGA2560-16AU, fully compatible with ARDUINO MEGA 2560 REV3. It has 54 digital input/output

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK UNIVERSITY DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

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

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

Ali Karimpour Associate Professor Ferdowsi University of Mashhad

Ali Karimpour Associate Professor Ferdowsi University of Mashhad AUTOMATIC CONTROL SYSTEMS Ali Karimpour Associate Professor Ferdowsi University of Mashhad Main reference: Christopher T. Kilian, (2001), Modern Control Technology: Components and Systems Publisher: Delmar

More information

WM1030 Rev Introduction. Ultra low power DASH7 Modem. Applications. Description. 868 / 915 MHz. Features. WIZZILAB Technical datasheet 1/10

WM1030 Rev Introduction. Ultra low power DASH7 Modem. Applications. Description. 868 / 915 MHz. Features. WIZZILAB Technical datasheet 1/10 WM1030 Rev. 1.2 Applications Wireless sensor network Data acquisition equipment Security systems Industrial monitor and control Internet of things (IoT) Ultra low power DASH7 Modem 868 / 915 MHz 1 Introduction

More information

Slick Line Acquisition System Manual

Slick Line Acquisition System Manual SCIENTIFIC DATA SYSTEMS, INC. SLICK LINE ACQUISITION BOX Slick Line Acquisition System Manual This document contains proprietary information. Copyright 2005 Scientific Data Systems, Inc. All rights reserved.

More information