AW51V2, 8051 Development Board

Size: px
Start display at page:

Download "AW51V2, 8051 Development Board"

Transcription

1 AW51V2, 8051 Development Board All Amateur World s development boards represents irreplaceable tools for programming and developing micro-controller based devices. Carefully chosen components and best possible production & testing workmanship thereof are the best guarantee of high readability of our products. Due to simple possible design, a large number of add-on modules and extensive ready to use examples, our all users, regardless of there experience, have the possibility to develop their projects in fast and efficient way. More over, all of our products are designed as per our philosophy Learn with Fun. Flat No.3, 1/6 Gandhi Colony, Regent Park, Tollygunge, Kolkata West Bengal, India Phone: Fax: Web:

2 PAGE 1 TABLE OF CONTENTS Details : Page No: 1. Introduction of AW51V2, 8051 Development Board 2 2. Key Features 3 3. Complete Schematic of the Board 4 4. Power Supply 5 5. Connecting the system to your PC 6 6. Configuring Flash Magic Programming Software 9 8. Experiments - Fun With LEDs. 10 Make Some Noise with Buzzer. 11 Display Something On LCD Working with Matrix Switches Seven Segment Display for Simple Count Up Expand Your World with I2C I/O Expander. 19 Make a simple Watch with DS1307, RTC Chip Advanced ADC (PCF7495), Control it with Only Two Wire!! Generate Analog Voltage with the Same PCF Copy Book R-R Ladder, the simplest DAC 26 Control An DC Motor 27

3 PAGE 2 INTRPDUCTION TO AW51V2, 8051 DEVELOPMENT BOARD AW51V2, 8051 Development Board is fully contained board, suitable for programming 8051 controllers from Philips as wel as for designing and testing of 8051 projects. This development board includes an on-board programmer providing an interface between the micro-controller and PC. You are simply expected to write your program in any one of 8051 compiler, generate a *.hex file and program your micro-controller using the on-board programmer. The AW51V2 contains many devices like 16X2 LCD, Seven Segment Display, LED, 4X4 Matrix Keyboard, I2C I/O Expander, RTC, ADC, DAC, Relay, Stepper Motor etc. that conveniently interface with the micro-controller and allow you to easily simulate the operation of the target device. Package Contains: AW51V2, 8051 Development Board RS232 Serial Cable for Programming and Interfacing with PC Product CD with Programming Software and Examples and Experiments Product Manuals and Schematic Diagram of the Board. System Specification: Power Supply: 8 to 18V DC or AC Power Consumption: Maximum 350mA Weight: Maximum 700gm Inclusive of All

4 PAGE 3 KEY FEATURS 1. Power Supply: DC/AC 12V 2. Easy RS232 Connector for Programming as wel as PC Connectivity. 3. Two Digit Seven Segment Display. Common Anode 4. Eight User LEDs X2 LCD 6. Stepper Motor Driver with ULN User Relay for High Load Driving. 8. Basic R to R Ladder based Digital to Analog Converter. 9. Buzzer or Speaker. 10. One Digital to Analog Output. 11. Four Channel Analog to Digital External Input. 12. PCF8594, I2C based A to D and D to A. 13. Four Presets for Onboard Experiment of A to D. 14. AT24C08, I2C based EEPROM. 15. DS10307, I2C based RTC with battery backup circuit. 16. PCF8574, I2C based I/O Expender with Four Switches and Four LEDs for Experiments X4 Matrix Keyboard. 18. RESET Switch. 19. P89V51RD2, Main 8051 Controller. 20. External Interrupt Switches, INT0 & INT1

5 PAGE 4 COMPLETE SCHEMATIC OF THE BOARD

6 PAGE 5 POWER SUPPLY

7 PAGE 7 Connecting the system to your PC

8 PAGE 6 Configuring Flash Magic, 1.Connect serial port to your PC volt DC or AC power supply connect. 3.Press power supply switch. 4.Install Flash Magic6_30. Flash Magic6_30 installing Screenshot 1.Double click on Flash Magic6_30 setup. 2.Click Next. 7. Click install. 3.ClickI accept the agreement then click Next. 6.Click create a desktop icon then click Next. 4.Click Next. 5.Click Next.

9 PAGE 8 1.Double click on Flash Magic icon. Configuring Flash Magic 2.First click to option button then click to advanced options and then click to Hardware config and disable use DTR to Control RST. 7. after finish programme upload press RESET switch again. 3. First select device. 6.Click to start button then press RESET switch ( page 3: 18 no point ) 4.Select COM PORT, Baud Rate, Interface, and Erase blocks used by Hex file. 5.Click to Browse button for Hex file selection.

10 PAGE 9 Programming Software Configuring Programming Software 1.Double click on BASCOM-8051 icon. 2.Click File open.bas File. 3.program compile (F7)

11 PAGE 10 EXPERIMENT NO: 1 EXPERIMENT NAME:LEDS_ON-OFF STEP 1:OPEN BASCOM SOFTWARE. STEP 2:OPEN LEDS_ON-OFF.BAS FILE. STEP 3:COMPILIE THIS PROGRAM. STEP 4:OPEN FLASH MAGIC SOFTWARE. STEP 5:SELECT DEVICE, BAUD RATE, INTERFACE.(SEE PAGE-7) STEP 6:BROWSE HEX FILE. STEP 7:CLICK START BUTTON. STEP 8: CLICK RESTART BUTTON. STEP 9:FINISHED PROGRAM UPLOAD. STEP 10:CLICK RESTART BUTTON.

12 PAGE 11 EXPERIMENT NO: 2 EXPERIMENT NAME:BUZZER AND ONE LED $regfile = 89c51rd.dat 'Define Compiler s Derivative for P89V51RD2 IC $crystal = 'crystal value $baud = 9600 'baud rate ************************************************************ Buzzer Alias P0.5 'pin name denote Led_driver Alias P1.4 'pin name denote Set Led_driver 'set led_driver to enable all LEDs & Buzzer P0 = 0 'Clear All Pins of Port0 ************************************************************ Main: 'Main function Wait 1 'wait 1 sec Sound P0.5, 2000, 'sound( pin no, duration, frequency) Goto Main 'jump to main ************************************************************ End 'end program

13 PAGE 12 EXPERIMENT NO: 3 EXPERIMENT NAME:LCD DISPLAY. $regfile = 89c51rd.dat 'Define Compiler s Derivative for P89V51RD2 IC $crystal = 'crystal value $baud = 9600 'baud rate P0 = 0 'port0 reset '************************************************************************** Config Lcdpin = Pin, Db4 = P0.4, Db5 = P0.5, Db6 = P0.6, Db7 = P0.7, E = P3.6, Rs = P3.7 Config Lcd = 16 * 2 'configuration LCD screen Cursor Off '************************************************************************* Cls 'clear the LCD display Lcd " " 'display this Wait 2 wait for 2 seconds Cursor On display cursor Wait 2 wait for 2 seconds Cursor blink make cursor blink Wait 2 Dim gp as byte dimension a variable named gp as byte For gp= 1 to 16 for loop Shift lcd, left display will shift one digit left Waitms 500 wait for 500 mili-seconds Next gp continue loop until gp reached last value, i.e. gp =16 For gp = 1 to 16 Shift lcd, right Waitms 500 Next gp End again for loop display will shift one digit right wait for 500 mili-seconds continue loop until gp reached last value, i.e. gp =16 end program or loop here for forever

14 PAGE 13

15 PAGE 14 EXPERIMENT NO: 4 EXPERIMENT NAME: MATRIX SWITCH AND SWITCH NO. DISPLAY ON LCD. $regfile = 89c51rd.dat 'Define Compiler s Derivative for P89V51RD2 IC $crystal = $baud = 9600 $large Buzzer Alias P0.5 Led_driver Alias P1.4 Fnd_1 Alias P1.3 Fnd_2 Alias P1.2 P0 = 0 Reset Led_driver ' Config Lcdpin = Pin, Db4 = P0.4, Db5 = P0.5, Db6 = P0.6, Db7 = P0.7, E = P3.6, Rs = P3.7 Config Lcd = 16 * 2 Cursor Off '************************************************************************* Home Lcd " " 'display Reset Fnd_1 Reset Fnd_2 '************************************************************ Dim Key As Byte, Key_flg As Bit Col0 Alias P2.4 Col1 Alias P2.5 Col2 Alias P2.6 Row0 Alias P2.0 Row1 Alias P2.1 Row2 Alias P2.2 Row3 Alias P2.3 '***************************************************************** Gosub Intialize_key 'Branch to and execute subroutine. Reset Key_flg

16 PAGE 15 Scan_key: Reset Row0 Reset Row1 Reset Row2 Reset Row3 If Col0 = 0 Then : Goto Col0_test : End If Back1: If Col1 = 0 Then : Goto Col1_test : End If Back2: If Col2 = 0 Then : Goto Col2_test : End If Back3: If Key = 255 Then : Gosub Scan_key : End If If Key_flg = 0 Then : Goto Scan_key : End If Locate 2, 1 '2nd row and 1st column Lcd "MATRIX KEY:" 'display MATRIX KEY: Locate 2, 12 '2nd row and 12th column Lcd " " Locate 2, 12 Lcd Key Key_flg = 0 'Waitms 20 'goto scan_key function Goto Scan_key Col0_test: Waitms 20 If Col0 = 0 Then Key_flg = 1 Set Row0 Set Row1 Set Row2 Set Row3 Reset Col0 If Row0 = 0 Then 'if Row0=0 and col0=0 then then key 3 show Key = 3 Elseif Row1 = 0 Then 'if Row1=0 and col0=0 then then key 6 show Key = 6 Elseif Row2 = 0 Then 'if Row2=0 and col0=0 then then key 9 show Key = 9 Elseif Row3 = 0 Then 'if Row3=0 and col0=0 then then key 12 show Key = 12 Else Key = 255 Key_flg = 0 End If End If Gosub Intialize_key 'jump to subroutine Goto Back1 Key = 9 Elseif Row3 = 0 Then 'if Row3=0 and col0=0 then then key 12 show Key = 12 Else Key = 255 Key_flg = 0 End If End If Gosub Intialize_key 'jump to subroutine Goto Back1 Col1_test:

17 PAGE 16 Else Key = 255 Key_flg = 0 End If End If Gosub Intialize_key Goto Back2 Col2_test: Waitms 20 If Col2 = 0 Then Key_flg = 1 Set Row0 Set Row1 Set Row2 Set Row3 Reset Col2 If Row0 = 0 Then Key = 1 Elseif Row1 = 0 Then Key = 4 Elseif Row2 = 0 Then Key = 7 Elseif Row3 = 0 Then Key = 10 If Col2 = 0 Then Key_flg = 1 Set Row0 Set Row1 Set Row2 Set Row3 Reset Col2 If Row0 = 0 Then Key = 1 Elseif Row1 = 0 Then Key = 4 Elseif Row2 = 0 Then Key = 7 Elseif Row3 = 0 Then Key = 10 Else Key = 255 Key_flg = 0 End If End If Gosub Intialize_key Goto Back3 Intialize_key: Set Row0 Set Row1 Set Row2 Set Row3 Set Col0 Set Col1 Set Col2 Return 'if Row0=0 and col2=0 then then key 1 show 'if Row1=0 and col2=0 then then key 4 show 'if Row2=0 and col2=0 then then key 7 show 'if Row3=0 and col2=0 then then key 10 show 'if Row0=0 and col2=0 then then key 1 show 'if Row1=0 and col2=0 then then key 4 show 'if Row2=0 and col2=0 then then key 7 show 'if Row3=0 and col2=0 then then key 10 show 'Return

18 PAGE 17 EXPERIMENT NO: 5 EXPERIMENT NAME: FND COUNTUP. $regfile = 89c51rd.dat '8052.dat $crystal = $baud = 9600 $large Buzzer Alias P0.5 Led_driver Alias P1.4 Fnd_1 Alias P1.2 Fnd_2 Alias P1.3 Set Led_driver Reset Fnd_1 Reset Fnd_2 '**************************************** Config Timer0 = Timer, Mode = 2, Gate = Internal On Timer0 Timer0_isr Load Timer0, 200 Enable Timer0 Enable Interrupts Start Timer0 '**************************************** Dim Disp1 As Byte, Disp2 As Byte Disp1 = 0 : Disp2 = 0 '**************************************** P0 = &H00 Reset Led_driver Main: Waitms 500 Incr Disp1 If Disp1 > 9 Then Disp1 = 0 Incr Disp2 If Disp2 > 9 Then Disp2 = 0 End If End If Goto Main '**************************************** Timer0_isr: Dim Sel As Bit Sel = Not Sel If Sel = 1 Then P0 = Lookup(disp1, Data1) Reset Fnd_1 Set Fnd_2 Else P0 = Lookup(disp2, Data1) Reset Fnd_2 Set Fnd_1 End If Return '**************************************** Data1: Data &B , &B , &B , &B , &B , Data &B , &B , &B , &B , &B End

19 PAGE 18 1k 1k Q1 BC557 Q1 BC557

20 PAGE 19 EXPERIMENT NO: 6 EXPERIMENT NAME: I2C I/O Expander PROGRAMMING. $regfile = 89c51rd.dat 'Define Compiler s Derivative for P89V51RD2 IC $crystal = $baud = 9600 $large Buzzer Alias P0.5 Led_driver Alias P1.4 P0 = 0 Reset Led_driver '*************************************************************** Config Lcdpin = Pin, Db4 = P0.4, Db5 = P0.5, Db6 = P0.6, Db7 = P0.7, E = P3.6, Rs = P3.7 Config Lcd = 16 * 2 Cursor Off '*************************************************************** Cls Home Lcd " " '*************************************************************** Config Sda = P1.0 Config Scl = P1.1 'RTC Config I2cdelay = 1 '*************************************************************** Dim B1 As Byte Do I2csend &H70, &B I2creceive &H70, B1 Locate 2, 1 Lcd " " Locate 2, 1 Lcd "Input " ; B1 Waitms 100 Loop

21 PAGE 20 EXPERIMENT NO: 7 EXPERIMENT NAME: REAL TIME C LOCK (RTC) PROGRAMMING $regfile = 89c51rd.dat 'Define Compiler s Derivative for P89V51RD2 IC $crystal = $baud = 9600 $large Buzzer Alias P0.5 Led_driver Alias P1.4 Fnd_1 Alias P1.3 Fnd_2 Alias P1.2 P0 = 0 Reset Led_driver Set Fnd_1 Set Fnd_2 ' Config Lcdpin = Pin, Db4 = P0.4, Db5 = P0.5, Db6 = P0.6, Db7 = P0.7, E = P3.6, Rs = P3.7 Config Lcd = 16 * 2 Cursor Off '************************************************************************* Home Lcd " " '************************************************************************* Config Sda = P1.0 Config Scl = P1.1 'RTC Config I2cdelay = 1 ' Declare Sub Settime(s As Byte, M As Byte, H As Byte, Day As Byte, Date As Byte, Month As Byte, Year As Byte) Nosave Declare Sub Gettime Dim S As Byte, M As Byte, H As Byte, Day As Byte, Date As Byte, Month As Byte Dim Wm As Byte, Yd As Byte, Year As Byte '*********************************************************

22 PAGE 21 Call Settime(12, 0, 0, 1, 1, 1, 12) Wait 2 Main: Call Gettime Cls Lcd " " ; Bcd(date) ; "/" ; Bcd(month) ; "/" ; Bcd(year) Lowerline Lcd " " ; Bcd(h) ; ":" ; Bcd(m) ; ":" ; Bcd(s) Waitms 250 Goto Main '************************************************************************ Sub Settime(s As Byte, M As Byte, H As Byte, Day As Byte, Date As Byte, Month As Byte, Year As Byte) S = Makebcd(s) : M = Makebcd(m) : H = Makebcd(h) : Day = Makebcd(day) Date = Makebcd(date) : Month = Makebcd(month) : Year = Makebcd(year) I2cstart 'generate start I2cwbyte &HD0 'write mode I2cwbyte 0 'select seconds Register I2cwbyte S 'write seconds I2cwbyte M 'write minuts I2cwbyte H 'write hours I2cwbyte Day 'write days I2cwbyte Date 'write date I2cwbyte Month 'write months I2cwbyte Year 'write year I2cstop Waitms 10 End Sub '*********************************************************************** Sub Gettime Dim Dum As Byte I2cstart 'generate start I2cwbyte &HD0 'write addres of PCF8583 I2cwbyte 0 'select second register I2cstart 'generate repeated start I2cwbyte &HD1 'write address for reading info I2crbyte S, Ack 'read seconds I2crbyte M, Ack 'read minuts I2crbyte H, Ack 'read hours I2crbyte Day, Ack 'read days I2crbyte Date, Ack 'read year and dates I2crbyte Month, Ack I2crbyte Year, Nack 'read weekday and month I2cstop 'generate stop End Sub End

23 PAGE 22 EXPERIMENT NO: 8 EXPERIMENT NAME: ADC & DAC $regfile = 89c51rd.dat $crystal = $baud = 9600 $large Buzzer Alias P0.5 Led_driver Alias P1.4 Fnd_1 Alias P1.3 Fnd_2 Alias P1.2 P0 = 0 Reset Led_driver Set Fnd_1 Set Fnd_2 'Define Compiler s Derivative for P89V51RD2 IC '************************************************************************* Config Lcdpin = Pin, Db4 = P0.4, Db5 = P0.5, Db6 = P0.6, Db7 = P0.7, E = P3.6, Rs = P3.7 Config Lcd = 16 * 2 Cursor Off '************************************************************************* Home Lcd " " '************************************************************************* Config Sda = P1.0 Config Scl = P1.1 Config I2cdelay = 1 '************************************************************************* Dim B1 As Byte, B2 As Byte, B3 As Byte, B4 As Byte, D1 As Byte Wait 2 Cls D1 = 128 I2cstart I2cwbyte &H90 I2cwbyte &B I2cwbyte D1 I2cstop

24 PAGE 23 EXPERIMENT NO: 8 EXPERIMENT NAME: ADC & DAC I2cwbyte &B I2cwbyte D1 I2cstop 'I2csend &H90, &B 'I2csend &H90, D1 Lcd "An Output: " ; D1 Wait 2 Cls Do I2csend &H90, &B I2creceive &H91, B1 Locate 1, 1 Lcd "Ch1: " Locate 1, 6 Lcd " " Locate 1, 6 Lcd B1 I2csend &H90, &B I2creceive &H91, B2 Locate 1, 9 Lcd "Ch2: " Locate 1, 14 Lcd " " Locate 1, 14 Lcd B2 I2csend &H90, &B I2creceive &H91, B3 Locate 2, 1 Lcd "Ch3: " Locate 2, 6 Lcd " " Locate 2, 6 Lcd B3 I2csend &H90, &B I2creceive &H91, B4 Locate 2, 9 Lcd "Ch4: " Locate 2, 14 Lcd " " Locate 2, 14 Lcd B4 Waitms 100 Loop I2csend &H90, &B I2creceive &H91, B4 Locate 2, 9 Lcd "Ch4: " Locate 2, 14 Lcd " " Locate 2, 14 Lcd B4 Waitms 100 Loop 'analog output 'chanel1 analog input 'chanel2 analog input 'chanel3 analog input 'chanel4 analog input 'chanel4 analog input

25 PAGE 24 EXPERIMENT NO: 8 EXPERIMENT NAME: ADC & DAC

PROGRAM BASCOM AVR. ' inisialisasi '

PROGRAM BASCOM AVR. ' inisialisasi ' PROGRAM BASCOM AVR '--------------------------------------- inisialisasi '----------------------- $prog &HFF, &HC4, &HD9, &H00 ' generated. Take care that the chip supports all fuse bytes. $regfile = "m8def.dat"

More information

Firmware Master (Betreuer)

Firmware Master (Betreuer) 1 Firmware Master (Betreuer) 'MMR Projet Master JCF 'Mess-Intervall in Sekunden (Zeit zwischen 2 Aufzeichnungen) Dim Minterval As Word Dim Ee_minterval As Eram Word $regfile = "8535def.dat" $crystal =

More information

The industrial technology is rapidly moving towards ARM based solutions. Keeping this in mind, we are providing a Embedded ARM Training Suite.

The industrial technology is rapidly moving towards ARM based solutions. Keeping this in mind, we are providing a Embedded ARM Training Suite. EMBEDDED ARM TRAINING SUITE ARM SUITE INCLUDES ARM 7 TRAINER KIT COMPILER AND DEBUGGER THROUGH JTAG INTERFACE PROJECT DEVELOPMENT SOLUTION FOR ARM 7 e-linux LAB FOR ARM 9 TRAINING PROGRAM INTRODUCTION

More information

LPC2148 DEV BOARD. User Manual.

LPC2148 DEV BOARD. User Manual. LPC2148 DEV BOARD User Manual www.coineltech.com www.coineltech.com Designed by CoiNel Technology Solutions LLP No-816, 2 nd Floor, 4 th B Cross, 9 th A Main, RPC Layout, Vijaynagar, Bangalore-560040 State:

More information

CoiNel Technology Solutions LLP. LPC2148 ARTIST Instruction Manual LPC2148 ARTIST. Instruction manual. Revision 1

CoiNel Technology Solutions LLP. LPC2148 ARTIST Instruction Manual LPC2148 ARTIST. Instruction manual.   Revision 1 LPC2148 ARTIST Instruction manual Designed by CoiNel Technology Solutions LLP No-816, 2 nd Floor, 4 th B Cross, 9 th A Main, RPC Layout, Vijaynagar, Bangalore-560040 State: Karnataka Country: India www.coineltech.com

More information

8051 Advance Trainer

8051 Advance Trainer wwwembeddedmarketcom 0 Advance Trainer On Board Features of 0 AdvanceTrainer with PVRD Microcontroller RS interface KHZ RC IR receiver Buzzer Light Sensor (LDR) Temperature Sensor Three Analog Inputs via

More information

GIE 8051 Professional Kit. User Manual

GIE 8051 Professional Kit. User Manual GIE 8051 Professional Kit User Manual www.gie.com.my Page 1 of 9 Content Overview...3 Features...3 Function Block...4 Jumper Setting...4 Hardware Connection...5 Required Software...5 Install CH340 Driver

More information

AVR Peripheral Board. Campus Component Pvt. Ltd.

AVR Peripheral Board. Campus Component Pvt. Ltd. AVR Peripheral Board Campus Component Pvt. Ltd. DISCLAIMER Information furnished is believed to be accurate and reliable at the time of publication. However, Campus Component Pvt. Ltd. assumes no responsibility

More information

P89V51RD2 Development Board May 2010

P89V51RD2 Development Board May 2010 P89V51RD2 Development Board May 2010 NEX Robotics Pvt. Ltd. 1 P89V51RD2 Development Board Introduction: P89V51RD2 Development Board P89V51RD2 Development Board is a low cost development board which have

More information

I2C BUS SERIAL EEPROM

I2C BUS SERIAL EEPROM Course on BASCOM 8051 - (30) Theoretic/Practical course on BASCOM 8051 Programming. Author: DAMINO Salvatore. I2C BUS SERIAL EEPROM In Embedded applications, among the most frequently used devices, there

More information

BASCOM51. Quick Start Guide

BASCOM51. Quick Start Guide BASCOM51 Quick Start Guide Date: 23 December, 2010 Document Revision: 1.01 BiPOM Electronics Telephone : 1-713-283-9970 E-mail : info@bipom.com Web : www.bipom.com 2010 by BiPOM Electronics. All rights

More information

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 8051 Intermidiate Development Board Product Manual Contents 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 1. Overview 2. Features The board is built on a high quality FR-4(1.6

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

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

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

Professional Development Board (#28138)

Professional Development Board (#28138) 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.stampsinclass.com

More information

LPC1788 Mio Board. The functional details of the board are as follows-

LPC1788 Mio Board. The functional details of the board are as follows- INTRODUCTION : The LPC1788 Mio is based on Cortex M3 Core, running at up to 120MHz. The Mio lets you quickly start with your development on LPC1788 based designs. The functional details of the board are

More information

BSCB-2 BASIC STAMP CARRIER BOARD

BSCB-2 BASIC STAMP CARRIER BOARD BSCB-2 BASIC STAMP CARRIER BOARD Technical Manual Document Revision: 1.04 Date: 06 August 2003 BiPOM Electronics, Inc. 16301 Blue Ridge Road, Missouri City, Texas 77489 Telephone: 1-713-283-9970 Fax: 1-281-416-2806

More information

NX-51 V2 plus experiment board Documentation 1. NX-51 V2 plus. P89V51RD2 microcontroller Eexperiment board. Documentation

NX-51 V2 plus experiment board Documentation 1. NX-51 V2 plus. P89V51RD2 microcontroller Eexperiment board. Documentation NX- V plus experiment board Documentation NX- V plus PVRD microcontroller Eexperiment board Documentation NX- V plus experiment board Documentation NX- V plus experiment board Documentation. About PVRD

More information

ICN12. I2C to UART Bridge, ADC,DAC and I/O

ICN12. I2C to UART Bridge, ADC,DAC and I/O Firmware version 1.4 Introduction ICN12 I2C to UART Bridge, ADC,DAC and I/O This is an I2C to UART bridge, designed to give an extra UART to a microcontroller when only I2C is available. It is an I2C device

More information

How2Use DT-51 AT89C51XXX BMS. By: IE Team. Picture1 The layout of DT-51 AT89C51XXX BMS

How2Use DT-51 AT89C51XXX BMS. By: IE Team. Picture1 The layout of DT-51 AT89C51XXX BMS DT-51 AT89C51XXX BMS Application Note By: IE Team This Application Note (AN) serves as a tutorial of how to use the DT-51 AT89C51XXX Bootloader Micro System along with its supplementary software. The layout

More information

'Pressure_32 () calculates the air pressure with 32bit, it results in a resolution of 0.01hPa. 'This is quite sufficient for a weather station.

'Pressure_32 () calculates the air pressure with 32bit, it results in a resolution of 0.01hPa. 'This is quite sufficient for a weather station. '****************************************** 'BME280 sample code '(C) 2015 by Michael Lehmann 'Mlehmann (a) mgkulm.ch 'Translated from German to Engish by Google Translate '******************************************

More information

BASCOM LT. Language Reference V 1.26

BASCOM LT. Language Reference V 1.26 BASCOM LT Language Reference V 1.26 Copyright MCS Electronics Page 1 MCS Electronics may update this documentation without notice. Products specification and usage may change accordingly. MCS Electronics

More information

ROBOTLINKING THE POWER SUPPLY LEARNING KIT TUTORIAL

ROBOTLINKING THE POWER SUPPLY LEARNING KIT TUTORIAL ROBOTLINKING THE POWER SUPPLY LEARNING KIT TUTORIAL 1 Preface About RobotLinking RobotLinking is a technology company focused on 3D Printer, Raspberry Pi and Arduino open source community development.

More information

8051 Basic Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help

8051 Basic Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 8051 Basic Development Board Product Manual Contents 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 1. Overview 2. Features The board is built on a high quality FR-4(1.6

More information

Microcontroller & Interfacing

Microcontroller & Interfacing Course Title Course Code Microcontroller & Interfacing EC406 Lecture : 3 Course Credit Practical : 1 Tutorial : 0 Total : 4 Course Objective At the end of the course the students will be able to Understand

More information

LPC1788 Mio Board. User Manual. Revision 1.0 1

LPC1788 Mio Board. User Manual.     Revision 1.0 1 User Manual http://coineltech.com Revision 1.0 1 Designed by CoiNel Technology Solutions LLP No-32, 2 nd Floor, HAPBCO Tower, 9 th Main, RPC Layout, Hampinagar, Bangalore-560040 State: Karnataka Country:

More information

Manual of Board ET-PIC STAMP 18F8722-K22 ET-PIC STAMP 18F8722-K22

Manual of Board ET-PIC STAMP 18F8722-K22 ET-PIC STAMP 18F8722-K22 ET-PIC STAMP 18F8722-K22 ET-PIC STAMP 18F8722-K22 is Board Microcontroller in a series of PIC18F87K22 80-Pin TQFP from Microchip. It designs I/O of MCU on board to interface with CONNECTOR in the format

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

PROGRAMMING AND CUSTOMIZING

PROGRAMMING AND CUSTOMIZING PROGRAMMING AND CUSTOMIZING THE PICAXE MICROCONTROLLER SECOND EDITION DAVID LINCOLN Mc Grauu Hill New York Chicago San Francisco Lisbon London Madrid Mexico City Milan New Delhi San Juan Seoul Singapore

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

Interfacing Z8 Encore! XP MCUs with an I 2 C-Based Character LCD

Interfacing Z8 Encore! XP MCUs with an I 2 C-Based Character LCD Application Note Interfacing Z8 Encore! XP MCUs with an I 2 C-Based Character LCD AN014902-1207 Abstract This Application Note describes APIs for interfacing one or more I 2 C-based character LCDs with

More information

Modules For Six Months Industrial Training On WIRELESS EMBEDDED SYSTEM DESIGN

Modules For Six Months Industrial Training On WIRELESS EMBEDDED SYSTEM DESIGN Modules For Six Months Industrial Training On WIRELESS EMBEDDED SYSTEM DESIGN 1 st Week Introduction to Embedded System a) Tool Hardware tool and Software tool b) Embedded designing, course study c) Board

More information

THE AVR MICROCONTROLLER AND EMBEDDED SYSTEMS. Using Assembly and С

THE AVR MICROCONTROLLER AND EMBEDDED SYSTEMS. Using Assembly and С THE AVR MICROCONTROLLER AND EMBEDDED SYSTEMS Using Assembly and С Muhammad AH Mazidi Sarmad Naimi Sepehr Naimi Prentice Hall Boston Columbus Indianapolis New York San Francisco Upper Saddle River Amsterdam

More information

Table of Contents... 1 Operation Mode... 2 Connecting System Menu... 14

Table of Contents... 1 Operation Mode... 2 Connecting System Menu... 14 v1.4 Hitachi Europe GmbH Industrial Products & Information Systems Am Seestern 18, D-40547 Düsseldorf, Germany tel. +49 211 52830, fax. +49 211 5283 649 http://www.hitachi-ds.com info-dus.pcs@hitachi-eu.com

More information

WIZTECH AUTOMATION SOLUTIONS (P) LTD., An ISO 9001:2000 and IAO certified company

WIZTECH AUTOMATION SOLUTIONS (P) LTD., An ISO 9001:2000 and IAO certified company WIZTECH AUTOMATION SOLUTIONS (P) LTD., An ISO 9001:2000 and IAO certified company #102, W Block, 2nd and 3rd floor, 2nd Avenue, Anna nagar Roundtana, Chennai-40 E-mail: wiztech4automation@gmail.com web:

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

AX-12. PIC12F675 microcontroller Activity board

AX-12. PIC12F675 microcontroller Activity board AX- PICF67 microcontroller Activity board Optional of AX- board DC adaptor 9-V Small stepper motor Microcontroller unit features : Microchip s 8-pin PIC microocntroller PICF67 on-board KWord Program memory

More information

BS2p24 Demo Board (#45183)

BS2p24 Demo Board (#45183) 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallaxinc.com Technical: stamptech@parallaxinc.com Web Site: www.parallaxinc.com Educational:

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

FLASH PROGRAMMER FP-8903 VER 2.00 USER S MANUAL

FLASH PROGRAMMER FP-8903 VER 2.00 USER S MANUAL FLASH PROGRAMMER FP-8903 VER 2.00 USER S MANUAL FP8903 V2.00 DOC R.2.0 1 TABLE OF CONTENTS SECTION CONTENTS PAGE 1 INTRODUCTION 1.1 MANUAL CONTENTS 03 1.2 PROGRAMMER AND ACCESSORIES 03 2 FEATURES 04 3

More information

BV4218. I2C-LCD & Keypad. Product specification. December 2008 V0.a. ByVac 2006 ByVac Page 1 of 9

BV4218. I2C-LCD & Keypad. Product specification. December 2008 V0.a. ByVac 2006 ByVac Page 1 of 9 Product specification December 2008 V0.a ByVac 2006 ByVac Page 1 of 9 Contents 1. Introduction...3 2. Features...3 3. Electrical Specification...3 4. I2C set...4 5. The LCD Set...5 5.1. 1...5 5.2. 2...5

More information

Brief Preface. INTRODUCTION

Brief Preface. INTRODUCTION Course on BASCOM 8051 - ( 1 ) Theoretic/Practical Course on BASCOM 8051 Programming. Author: DAMINO Salvatore. Brief Preface. The purpose of this course is the description of the essential information

More information

AVR 40 Pin Rapid Robot controller board

AVR 40 Pin Rapid Robot controller board AVR 40 Pin Rapid Robot controller board User Manual Robokits India http://www.robokits.org info@robokits.org - 1 - Thank you for purchasing the AVR 40 Pin Rapid Robot controller board. This unit has been

More information

Trends in Prototyping Systems. ni logic Pvt. Ltd., Pune, India

Trends in Prototyping Systems. ni logic Pvt. Ltd., Pune, India Trends in Prototyping Systems ni logic Pvt. Ltd., Pune, India Focus of design dept. Electronic system & Flow Design problems Educating design Prototype USDP Features Applications Conclusion Agenda Faster

More information

Microduino mcookie-rtc USER GUIDE.

Microduino mcookie-rtc USER GUIDE. Microduino mcookie-rtc USER GUIDE https://eckstein-shop.de/ Content Features... 2 Specification... 2 Development... 3 Detect Power-down Time Duration...3 Test EEPROM Read/Write...5 FAQ... 7 1 https://eckstein-shop.de/

More information

Embedded Systems. Embedded Programmer. Duration: 2 weeks Rs Language and Tools. Embedded System Introduction. Embedded C programming

Embedded Systems. Embedded Programmer. Duration: 2 weeks Rs Language and Tools. Embedded System Introduction. Embedded C programming Embedded Systems Embedded Programmer Duration: 2 weeks Rs.7000 Embedded System Introduction ü PLDs ü Microprocessors ü Signal processing and Data processing ü Micro controllers ü 8051 Microcontroller ü

More information

AXE033 SERIAL/I2C LCD & CLOCK

AXE033 SERIAL/I2C LCD & CLOCK AXE033 SERIAL/I2C LCD & CLOCK The serial LCD and clock module allows microcontroller systems (e.g. PICAXE) to visually output user instructions or readings, without the need for a computer. This is especially

More information

DT-SENSE. UltraSonic and InfraRed Ranger (USIRR)

DT-SENSE. UltraSonic and InfraRed Ranger (USIRR) DT-SENSE UltraSonic and InfraRed Ranger (USIRR) Trademarks & Copyright AT, IBM, and PC are trademarks of International Business Machines Corp. Windows is a registered trademark of Microsoft Corporation.

More information

Demo 8 - Programmable Timer. Introduction:

Demo 8 - Programmable Timer. Introduction: Introduction: This demo describes a complete project meant for industrial timing applications. This is a complete one with all the required features to manage various time-based operations in the industrial

More information

Seeeduino LoRaWAN. Description

Seeeduino LoRaWAN. Description Seeeduino LoRaWAN SKU 102010128 LoRaWAN Class A/C Ultra long range communication Ultra low power consumption Arduino programming (based on Arduino Zero bootloader) Embeded with lithim battery management

More information

CMS-8GP32. A Motorola MC68HC908GP32 Microcontroller Board. xiom anufacturing

CMS-8GP32. A Motorola MC68HC908GP32 Microcontroller Board. xiom anufacturing CMS-8GP32 A Motorola MC68HC908GP32 Microcontroller Board xiom anufacturing 2000 717 Lingco Dr., Suite 209 Richardson, TX 75081 (972) 994-9676 FAX (972) 994-9170 email: Gary@axman.com web: http://www.axman.com

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

PK2200 Series. Features. C-Programmable Controller. Specifications Board Size Enclosure Size Operating Temp.

PK2200 Series. Features. C-Programmable Controller. Specifications Board Size Enclosure Size Operating Temp. C-Programmable Controller P00 Series The P00 Series of C-programmable controllers is based on the Zilog Z80 microprocessor. The P00 includes digital, serial, and high-current switching interfaces. The

More information

Pearson New International Edition. The 8051 Microcontroller and Embedded Systems Mazidi Mazidi McKinlay Second Edition

Pearson New International Edition. The 8051 Microcontroller and Embedded Systems Mazidi Mazidi McKinlay Second Edition Pearson New International Edition The 8051 Microcontroller and Embedded Systems Mazidi Mazidi McKinlay Second Edition Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated

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

E-Module: GLCD+RTC Combo Datasheet

E-Module: GLCD+RTC Combo Datasheet E-Module: GLCD+RTC Combo Datasheet v1.1 Copyright 2008 AIS Cube. All rights reserved. The FlamingICE(FI) and FIDE are either registered trademarks or trademarks of AIS Cube in Singapore and/or other countries.

More information

Supplement for module D041 incl. ATMega8 Prozessor

Supplement for module D041 incl. ATMega8 Prozessor Supplement for module D041 incl. ATMega8 Prozessor V 1.4 16. March 2006 2006 by Peter Küsters This document is in copyright protected. It is not permitted to change any part of it. It is not permitted

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

GOVERNMENT OF ASSAM. JORHAT : , ASSAM Ph : INVITATION FOR QUOTATION TEQIP-III/2019/jejc/Shopping/18 To,

GOVERNMENT OF ASSAM. JORHAT : , ASSAM   Ph : INVITATION FOR QUOTATION TEQIP-III/2019/jejc/Shopping/18 To, GOVERNMENT OF ASSAM OFFICE OF THE PRINCIPAL ::: JORHAT ENGINEERING COLLEGE JORHAT : 785007, ASSAM www.jecassam.ac.in Ph : 0376-2330134 INVITATION FOR QUOTATION TEQIP-III/2019/jejc/Shopping/18 To,. Sub:

More information

DinBox M36 Hardware Description Guide

DinBox M36 Hardware Description Guide DinBox M36 Hardware Description Guide This manual covers the different hardware settings when using the DinBox M36 equipment. Next to this you will find all the relevant technical information needed when

More information

EvB 4.3 v4 User s Guide

EvB 4.3 v4 User s Guide EvB 4.3 v4 User s Guide Page 1 Contents Introduction...4 The EvB 4.3 v4 kit...5 Power supply...6 Programmer s connector...7 USB Port...8 RS485 Port...9 LED's...10 Pushbuttons...11 Potentiometers and Buzzer...12

More information

Development Kit Manual SIM305-EVB_UGD_V1.01

Development Kit Manual SIM305-EVB_UGD_V1.01 Development Kit Manual SIM305-EVB_UGD_V1.01 Document Title: SIM305 EVB User Guide Version: 1.01 Date: 2007-09-30 Status: Document Control ID: Release SIM305-EVB_UGD_V1.01 General Notes SIMCom offers this

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

BASIC Stamp 1 Project Board (#27112) Development / Education Platform for the BASIC Stamp 1

BASIC Stamp 1 Project Board (#27112) Development / Education Platform for the BASIC Stamp 1 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.stampsinclass.com

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

Programmable Control. Name Class Teacher. Ellon Academy Technical Faculty

Programmable Control. Name Class Teacher. Ellon Academy Technical Faculty Programmable Control Name Class Teacher Ellon Academy Technical Faculty Learning Intentions o Gain the ability to design and evaluate solutions to engineering problems in a range of contexts o I will gain

More information

Introduction to Microcontroller Apps for Amateur Radio Projects Using the HamStack Platform.

Introduction to Microcontroller Apps for Amateur Radio Projects Using the HamStack Platform. Introduction to Microcontroller Apps for Amateur Radio Projects Using the HamStack Platform www.sierraradio.net www.hamstack.com Topics Introduction Hardware options Software development HamStack project

More information

AC : INFRARED COMMUNICATIONS FOR CONTROLLING A ROBOT

AC : INFRARED COMMUNICATIONS FOR CONTROLLING A ROBOT AC 2007-1527: INFRARED COMMUNICATIONS FOR CONTROLLING A ROBOT Ahad Nasab, Middle Tennessee State University SANTOSH KAPARTHI, Middle Tennessee State University American Society for Engineering Education,

More information

Blue Point Engineering

Blue Point Engineering Blue Point Engineering Board - Pro Module (E) Instruction Pointing the Way to Solutions! Controller I Version 2.1 The Board Pro E Module provides the following features: Up to 4 minutes recording time

More information

Manual of ET-LCD SW HAT

Manual of ET-LCD SW HAT ET- LCD SW HAT ET-LCD SW HAT is Board I/O that is specifically designed for connection with Board Raspberry Pi through Connector 40-PIN; this board includes LCD 16x2, SW, Buzzer, RTC DS3231 with Connector

More information

LCD Module with I2C / Serial Interface and Keypad Control «LCD I2C/Serial» User s Guide. Copyright 2008 IMS

LCD Module with I2C / Serial Interface and Keypad Control «LCD I2C/Serial» User s Guide. Copyright 2008 IMS LCD Module with I2C / Serial Interface and Keypad Control «LCD I2C/Serial» User s Guide Copyright 2008 IMS CONTENTS 1 INTRODUCTION... 3 2 MODULE CONNECTION... 3 2.1 I2C/Serial interface connector...4 2.2

More information

INTERFACING 16 2 LCD WITH 8051

INTERFACING 16 2 LCD WITH 8051 INTERFACING 16 2 LCD WITH 8051 LCD display is an inevitable part in almost all embedded projects and this article is about interfacing 16 2 LCD with 8051 microcontroller. Many guys find it hard to interface

More information

Evaluation board for NXP LPC2103. User Guide. Preliminary Version updated 27 th Aug TechToys Company All Rights Reserved

Evaluation board for NXP LPC2103. User Guide. Preliminary Version updated 27 th Aug TechToys Company All Rights Reserved Evaluation board for NXP LPC2103 User Guide 1 SOFTWARE Download from KEIL web site at http://www.keil.com/demo/ for ARM evaluation software. Limitations to this evaluation copy have been summarized on

More information

WIRELESS EMBEDDED SYSTEM DESIGN

WIRELESS EMBEDDED SYSTEM DESIGN Modules For Six Weeks Industrial Training On WIRELESS EMBEDDED SYSTEM DESIGN 1 st Week 1 st Day Introduction to Embedded System a) Tool Hardware tool and Software tool Introduction b) Embedded designing,

More information

8051 General Purpose Board

8051 General Purpose Board 8051 General Purpose Board CAMPUS COMPONENT Pvt. Ltd. www.campuscomponent.com 1 DISCLAIMER Information furnished is believed to be accurate and reliable at the time of publication. However, Campus Component

More information

QUASAR PROJECT KIT # ATMEL AVR PROGRAMMER

QUASAR PROJECT KIT # ATMEL AVR PROGRAMMER This kit is a simple but powerful programmer for the Atmel AT90Sxxxx ( AVR ) family of microcontrollers. The Atmel AVR devices are a low-power CMOS 8-bit microcontroller using a RISC architecture. By executing

More information

MOTENC Axis PCI Motion & I/O Control Board. Reference Manual Rev 1A, April Copyright 2004 VITAL Systems Inc

MOTENC Axis PCI Motion & I/O Control Board. Reference Manual Rev 1A, April Copyright 2004 VITAL Systems Inc MOTENC-100 8-Axis PCI Motion & I/O Control Board Reference Manual Rev 1A, April-7-2004 Copyright 2004 VITAL Systems Inc www.vitalsystem.com This Page Intentionally Left Blank Table of Contents 1. OVERVIEW...

More information

Hands-on Lab. Lego Communications I2C Basics

Hands-on Lab. Lego Communications I2C Basics Hands-on Lab Lego Communications I2C Basics The Lego NXT has 4 sensor ports. Each port is capable of I2C communications. The PCF8574 is an I2C chip that provides 8-bit digital lines. These lines can be

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

melabs Serial LCD Firmware Version 1.0 2/7/07

melabs Serial LCD Firmware Version 1.0 2/7/07 melabs Serial LCD Firmware Version 1.0 2/7/07 The melabs Serial LCD (SLCD) can display serial data from either asynchronous RS232-style or synchronous I 2 C input. A range of baud rates from 2400 to 57,600

More information

U90 Ladder Software Manual. Version 3.50, 6/03

U90 Ladder Software Manual. Version 3.50, 6/03 U90 Ladder Software Manual Version 3.50, 6/03 Table Of Contents Welcome to U90 Ladder... 1 Program Editors... 1 Project Navigation Tree...1 Browse Sequences...1 Printing Documentation...2 Interface Language...

More information

Embedded World Television, Radio, CD player, Washing Machine Microwave Oven Card readers, Palm devices

Embedded World Television, Radio, CD player, Washing Machine Microwave Oven Card readers, Palm devices A presentation on INTRODUCTION We are living in the Embedded World. We are surrounded with many embedded products and our daily life largely depends on the proper functioning of these gadgets. Television,

More information

ET-PIC 24 WEB-V1. o Central Processing Unit (CPU) o System. o nanowatt Power Managed Modes. o Analog Features

ET-PIC 24 WEB-V1. o Central Processing Unit (CPU) o System. o nanowatt Power Managed Modes. o Analog Features ET-PIC 24 WEB-V1 ET-PIC 24 WEB-V1 is PIC Board Microcontroller from Microchip that uses 16 Bit No.PIC24FJ128GA008 Microcontroller for processing data and develops board. The remarkable specification of

More information

PIC Microcontroller Introduction

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

More information

DEMO9S08LG32 Up to 5V MCU with integrated LCD display driver

DEMO9S08LG32 Up to 5V MCU with integrated LCD display driver DEMO9S08LG32 Quick Start Guide Quick Start Guide DEMO9S08LG32 Up to 5V MCU with integrated LCD display driver Quick Start Guide Lab Tutorial CodeWarrior Manual Getting Started CD Get to Know the DEMO9S08LG32

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

SBC - Single Board Computer

SBC - Single Board Computer SBC - Single Board Computer DATA SHEET Single Board Computer in DIP28 format with Atmel AVR AT90S8515 microcontroller and Philips SJA1000 CAN 2.0B controller. Product specification September 17 2002 Leaflet

More information

PWRcheck Spring City Drive Waukesha, WI

PWRcheck Spring City Drive Waukesha, WI PWRcheck www.westmountainradio.com 1020 Spring City Drive Waukesha, WI 53186 262-522-6503 sales@westmountainradio.com 2018 West Mountain Radio, All rights reserved. All trademarks are the property of their

More information

SECURE DIGITAL ACCESS SYSTEM USING IBUTTON

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

More information

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

ZKit-51, 8051 Development Kit

ZKit-51, 8051 Development Kit ZKit-51, 8051 Development Kit User Manual 1.1, June 2011 This work is licensed under the Creative Commons Attribution-Share Alike 2.5 India License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/2.5/in/

More information

melabs Serial LCD Firmware Version 1.1 3/5/07

melabs Serial LCD Firmware Version 1.1 3/5/07 melabs Serial LCD Firmware Version 1.1 3/5/07 The melabs Serial LCD (SLCD) can display serial data from either asynchronous RS232-style or synchronous I 2 C input. A range of baud rates from 2400 to 57,600

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

INTRO TO I/O INTERFACE

INTRO TO I/O INTERFACE Basic I/O Interface Introduction This chapter outlines some of the basic methods of communications, both serial and parallel, between humans or machines and the microprocessor. We first introduce the basic

More information

ON4AKH Antenna Rotator controller Version 1.0

ON4AKH Antenna Rotator controller Version 1.0 ON4AKH Antenna Rotator controller Version 1.0 1. Some construction tips The project consists out of 3 boards. The 1 st board is the main board containing the PIC micro controller and the H-bridge components

More information

DVR6828 Full version Video Recording Module For Vehicle

DVR6828 Full version Video Recording Module For Vehicle DVR6828 Full version Video Recording Module For Vehicle Description This digital video recorder is specially designed for vehicle surveillance. It overcomes machine hang and files corruption issues, with

More information

Serial:UART/I2C/SPI Text LCD Display Control Module. LCDSP_TG V1.60 user manual

Serial:UART/I2C/SPI Text LCD Display Control Module. LCDSP_TG V1.60 user manual Serial:UART/I2C/SPI Text LCD Display Control Module Product picture: In order to use a Text LCD display, you need connect at least 4 data pins and 2 control pins from your circuit to display, and you also

More information

Embedded Systems. Software Development & Education Center. (Design & Development with Various µc)

Embedded Systems. Software Development & Education Center. (Design & Development with Various µc) Software Development & Education Center Embedded Systems (Design & Development with Various µc) Module 1: Embedded C Programming INTRODUCTION TO EMBEDDED SYSTEM History & need of Embedded System Basic

More information

EasyPIC5 Development System

EasyPIC5 Development System EasyPIC5 Development System Part No.: MPMICRO-PIC-Devel- EasyPIC5 Overview EasyPIC5 is a development system that supports over 120 8-, 14-, 18-, 20-, 28- and 40-pin PIC MCUs. EasyPIC5 allows PIC microcontrollers

More information