EC - 311/ based Project

Size: px
Start display at page:

Download "EC - 311/ based Project"

Transcription

1 EC - 311/ based Project BMI CALCULATOR (Body Mass Index) Made by :- Himanshu Santolia - 63/EC/13 Balram - 45/EC/13

2 Contents :- 1) Introduction 2) Block Diagram 3) Proposed Model 4) Schematic 5) Board Layout 6) Implementation 7) Flow Chart 8) Components Used 9) Testing and Debugging 10) EEPROM 11) Gallery 12) Code 13) Conclusion 14) Bibliography 15) Tools Used

3 Introduction It is a basic machine that calculates BMI of a person by inputting weight and height and also gives a comment about person's state on being - Underweight, Normal, Overweight, Obese according to the BMI range :- Underweight : less than 18.5 Normal : between 18.5 and 25 Overweight : between 25 and 30 Obese : greater than 30 It is based on 8085 microprocessor viz. an 8 bit microprocessor introduced by Intel in 1976.

4

5 How it looks like :-

6 Schematic :-

7 Board Layout :-

8 Implementation :- We used HC-SR04 ultrasonic sensor to calculate height of the person by calling ultrasonic instruction (written in code) twice, once to calculate distance between roof to floor and another one to calculate distance between head to roof. Height of a person can be calculated by subtracting above two distances. We used SID and SOD (serial communication) of 8085 µp to deal with ultrasonic sensor. Weight was manually input via 4x3 matrix keypad that was made using Omron switches interfaced with 8255 PPI. It consists of 0-9 digit keys, a height key and an enter key. 0-9 digit keys are for inputting weight viz. of the form _. _ (up to 3 digits after decimal) Enter key is used to transit from weight-input to heightinput. User presses enter when he is done inputting weight. Height key is used to initiate the ultrasonic sensor for operation when a person is standing right below it. After pressing height key it gives the distance between head to roof and stores it in memory after which it is subtracted from roof-floor distance. We made an algorithm for division and iterated it twice to calculate BMI of the person and displayed it on a 16x2 LCD. BMI = Weight / (Height)^2 (kg/m^2) ;

9 Apart from calculating BMI, it also comments whether the subject is Underweight, Normal, Overweight or Obese by comparing with standard BMIs of respective categories.

10 Flowchart :- LCD DISPLAY WELCOME TO BMI CALCULATOR LCD DISPLAY ENTER YOUR WEIGHTkg: _. _ CALL ULTRASONIC SENSOR (Distance from roof to floor is stored ) WEIGHT IS FED TO MICROPROCESSOR (Scanning of matrix keyboard is done and keys pressed are stored as weight of the subject) Is ENTER KEY is pressed? Is HEIGHT KEY is pressed? LCD DISPLAY STAND STILL!! PRESS HEIGHT KEY CALL ULTRASONIC SENSOR (Distance from roof to head is stored) Subtraction LCD Display of Height "HEIGHT = _ cm"

11 BMI Calculation (division of stored weight with height is done TWO times ) LCD Display of BMI and Comment "BMI =._ COMMENT" END

12 Components Used :- PART DEVICE PACKAGE DIL A 8255A DIL40 01 ADL 74HCT573N DIL20 01 Capacitor (.1µF) Capacitor (10 µf) C-EU X050 C X050 CPOL-EUE2-5 E2-5 2 DECODER 74HCT138N DIL16 01 EEPROM 58C256P DIL Omron Switch OMRON_SWITCH_10- XX QUANTITY 28 B3F-10XX 13 NOT Gate 74HCT04N DIL14 02 Resistors R-US_0204/7 0204/7 33 Preset PRESET_LR PRESET_LR 01 RAM 62256P DIL Connectors M10 10P 04 USB Port USB(POWER) USB(POWER) 01 LED LED5MM LED5MM 01 Q2 CRYSTALHC49US HC49US 01

13 Testing and Debugging :- After soldering components on PCB, all components were tested using Multimeter. Result was satisfactory. To test ICs, a small code regarding SID-SOD was executed..org 0000H LOOP: RIM ANI 080H ORI 040H SIM JMP LOOP HLT.END To test LCD a small code of display was executed. (Included in the final code) To test Ultrasonic Sensor a small code of 'distance measuring' was executed. (included in the final code)

14 EEPROM :- We used Electrically Erasable Programmable Read-Only Memory (EEPROM) and write data (our code) on this ROM we used 'EEPROM Programmer' built in CEDT of NSIT under Prof. Dhananjay Gadre. It consists of 2 shift register ICs (74HC595N) and an Arduino nano.

15 BMI CALCULATOR (Gallery) :-

16

17

18

19 CODE :-.ORG 0000H LXI SP,0FFFFH MVI A,88H OUT 083H MVI A,38H MVI A,38H MVI A,38H MVI A,01H MVI A,0CH MVI A,83H MVI A,57H MVI A,45H MVI A,4CH MVI A,43H MVI A,4FH MVI A,4DH MVI A,45H

20 MVI A,20H MVI A,54H MVI A,4FH MVI A,0C1H MVI A,42H MVI A,4DH MVI A,49H MVI A,20H MVI A,43H MVI A,41H MVI A,4CH MVI A,43H MVI A,55H MVI A,4CH MVI A,41H

21 MVI A,54H MVI A,4FH MVI A,52H CALL DEL_5SEC MVI A,38H MVI A,38H MVI A,38H MVI A,01H MVI A,0CH MVI A,83H MVI A,45H MVI A,4EH MVI A,54H MVI A,45H MVI A,52H MVI A,20H MVI A,20H

22 MVI A,59H MVI A,4FH MVI A,55H MVI A,52H MVI A,0C0H MVI A,57H MVI A,45H MVI A,49H MVI A,47H MVI A,48H MVI A,54H MVI A,6BH MVI A,67H MVI A,3AH MVI A,0CCH MVI A,2EH

23 ; HEIGHT FROM ROOF TO FLOOR CALL ULTRASONIC SHLD 8070H LXI H,08000H MVI C,0C8h PUSH B KYBOARD: XRA A MOV E,A OUT 81h KEYREL: IN 82h ANI 70h CPI 70h JNZ KEYREL CALL DBONCE KYCHK: IN 82h ANI 70h CPI 70h JZ KYCHK CALL DBONCE MVI A,7Fh MVI B,04h NXTROW: RLC MOV D,A OUT 81h IN 82h ANI 70h MVI C,03h RAL NXTCOLM: RAL JNC CODE INR E

24 DCR C JNZ NXTCOLM MOV A,D DCR B JNZ NXTROW JMP KYCHK CODE: MOV A,E CPI 02H JNZ N1 MVI E,01h JMP PRESS N1: CPI 01h JNZ N2 MVI E,02h JMP PRESS N2: CPI 00h JNZ N3 MVI E,03h JMP PRESS N3: CPI 05h JNZ N4 MVI E,04h JMP PRESS N4: CPI 04h JNZ N5 MVI E,05h JMP PRESS N5: CPI 03h JNZ N6 MVI E,06h JMP PRESS N6: CPI 08h JNZ N7

25 MVI E,07h JMP PRESS N7: CPI 07h JNZ N8 MVI E,08h JMP PRESS N8: CPI 06h JNZ N9 MVI E,09h JMP PRESS N9: CPI 09h JNZ N10 ;DISPLAY LCD TO STAND STILL AND PRESS HEIGHT KEY MVI A,38H MVI A,38H MVI A,38H MVI A,01H MVI A,0CH MVI A,81H MVI A,53H MVI A,54H MVI A,41H MVI A,4EH

26 MVI A,44H MVI A,20H MVI A,53H MVI A,54H MVI A,49H MVI A,4CH MVI A,4CH MVI A,21H MVI A,21H MVI A,0C0h MVI A,50H MVI A,52H MVI A,45H MVI A,53H MVI A,53H MVI A,20H MVI A,48H

27 MVI A,45H MVI A,49H MVI A,47H MVI A,48H MVI A,54H MVI A,20H MVI A,4BH MVI A,45H MVI A,59H JMP KYBOARD N10: CPI 0Ah JNZ N11 MVI E,00H JMP PRESS N11: CPI 0Bh JZ BREAKOUT PRESS: ; lcd display of pressed key MOV M,E INX H POP B INR C MOV A,C

28 CPI 0CCH JNZ FROG INR C FROG: PUSH B MOV A,C MOV A,E ADI 30H JMP KYBOARD BREAKOUT: ; HEIGHT FROM ROOF TO HEAD CALL ULTRASONIC MOV A,H CMA MOV H,A MOV A,L CMA MOV L,A LXI B,0001H DAD B XCHG LHLD 8070H DAD D SHLD 8020H XRA A STA 8040H STA 8041H STA 8042H ADD H JNZ GOLD MOV A,L CPI 64h

29 JC SILVER GOLD: LXI D,0064h MOV A,D CMA MOV D,A MOV A,E CMA MOV E,A LXI B,0001h XCHG DAD B XCHG MVI C,00h MINUS: DAD D INR C MOV A,H ADI 00h JNZ MINUS MOV A,L CPI 64h JC BIRD JMP MINUS BIRD: MOV A,C STA 8040h SILVER: MVI C,00h MOV A,L TREX: CPI 0Ah JC FREE SUI 0Ah INR C JMP TREX FREE: STA 8042h MOV A,C

30 STA 8041h MVI A,38H MVI A,38H MVI A,38H MVI A,01H MVI A,0CH MVI A,80H MVI A,48H MVI A,45H MVI A,49H MVI A,47H MVI A,48H MVI A,54H MVI A,3DH LDA 8040H ADI 30H LDA 8041H ADI 30H

31 LDA 8042H ADI 30H MVI A,63H MVI A,6DH CALL DEL_5SEC XRA A STA 8006H STA 8007H DIVISION: MVI B,02h BEGIN: LXI H,8010H MVI C,08h ZERO: MVI A,00h MOV M,A INX H DCR C JNZ ZERO LXI SP,0FFFFh LXI H,8010h LXI D,8000h MVI C,08h PUSH D PUSH H PUSH B LDA 8000h LHLD 8020h XCHG MVI H,00h MOV L,A START: MVI A,00h

32 ADD H JNZ SUBT MOV A,L CMP E JC UPDATE SUBT: MOV A,D CMA MOV D,A MOV A,E CMA MOV E,A LXI B,0001h XCHG DAD B XCHG DAD D SHLD 8050h LHLD 8020h XCHG POP B POP H INR M PUSH H PUSH B LHLD 8050h JMP START UPDATE: MOV B,H MOV C,L MVI A,09h MULTI: DAD B DCR A JNZ MULTI SHLD 8050h

33 XCHG SHLD 8052h POP B POP H POP D INX H INX D PUSH D PUSH H PUSH B LDAX D MVI D,00h MOV E,A LHLD 8050h DAD D XCHG LHLD 8052h XCHG POP B DCR C JZ ENDS PUSH B JMP START ENDS: DCR B JZ STOP LXI H,8010h LXI D,8000h MVI C,08h REPLACE: MOV A,M STAX D INX H INX D DCR C

34 JNZ REPLACE JMP BEGIN STOP: ;LCD DISPLAY OF BMI MVI A,38H MVI A,38H MVI A,38H MVI A,01H MVI A,0CH MVI A,80H MVI A,42H MVI A,4DH MVI A,49H MVI A,3DH LDA 8015H ADI 30H LDA 8016H ADI 30H MVI A,2EH LDA 8017H

35 ADI 30H ;DECIMAL EQUIVALENT OF BMI IS COMPARED LDA 8015H MOV L,A MVI H,00H MOV D,H MOV E,L MVI C,63H FISH: DAD D DCR C JNZ FISH LDA 8016H MOV B,A MVI C,09H TOAD: ADD B DCR C JNZ TOAD MOV B,A LDA 8017H ADD B MOV E,A MVI D,00H DAD D ; DECIMAL EQUIVALENT IN HL PAIR ;COMPARING BMI XRA A ADD H JNZ TWOBYTE MOV A,L CPI 0B9h JC UNDERWEIGHT JNZ HIGH

36 JMP NORMAL HIGH: CPI 0FAh JC NORMAL JNZ OVERWEIGHT JMP NORMAL TWOBYTE: MOV A,H CPI 01h JNZ OBESE MOV A,L CPI 2Ch JC OVERWEIGHT JNZ OBESE JMP OVERWEIGHT ;RESULT IS DISPLAYED UNDERWEIGHT: MVI A,0C0h MVI A,55H MVI A,4EH MVI A,44H MVI A,45H MVI A,52H MVI A,57H MVI A,45H MVI A,49H MVI A,47H

37 MVI A,48H MVI A,54H HLT NORMAL: MVI A,0C0h MVI A,4EH MVI A,4FH MVI A,52H MVI A,4DH MVI A,41H MVI A,4CH HLT OVERWEIGHT: MVI A,0C0h MVI A,4FH MVI A,56H MVI A,45H MVI A,52H MVI A,57H

38 MVI A,45H MVI A,49H MVI A,47H MVI A,48H MVI A,54H HLT OBESE: MVI A,0C0h MVI A,4FH MVI A,42H MVI A,45H MVI A,53H MVI A,45H CALL DAT HLT ; SUBROUTINES CMD: MOV B,A XRA A PUSH PSW MOV A,B RAL MOV B,A JNC M1

39 POP PSW ADI 01h PUSH PSW M1: MOV A,B RAL MOV B,A JNC M2 POP PSW ADI 02h PUSH PSW M2: MOV A,B RAL MOV B,A JNC M3 POP PSW ADI 04h PUSH PSW M3: MOV A,B RAL MOV B,A JNC M4 POP PSW ADI 08h PUSH PSW M4: MOV A,B RAL MOV B,A JNC M5 POP PSW ADI 10h PUSH PSW M5: MOV A,B RAL

40 MOV B,A JNC M6 POP PSW ADI 20h PUSH PSW M6: MOV A,B RAL MOV B,A JNC M7 POP PSW ADI 40h PUSH PSW M7: MOV A,B RAL JNC M8 POP PSW ADI 80h PUSH PSW M8: POP PSW OUT 80H MVI A,01H ;RS=0,E=1 OUT 82H CALL DELAY MVI A,00H ;RS=0,E=0 OUT 82H CALL DELAY RET DATA: MOV B,A XRA A PUSH PSW MOV A,B RAL MOV B,A

41 JNC M01 POP PSW ADI 01h PUSH PSW M01: MOV A,B RAL MOV B,A JNC M02 POP PSW ADI 02h PUSH PSW M02: MOV A,B RAL MOV B,A JNC M03 POP PSW ADI 04h PUSH PSW M03: MOV A,B RAL MOV B,A JNC M04 POP PSW ADI 08h PUSH PSW M04: MOV A,B RAL MOV B,A JNC M05 POP PSW ADI 10h PUSH PSW M05: MOV A,B

42 RAL MOV B,A JNC M06 POP PSW ADI 20h PUSH PSW M06: MOV A,B RAL MOV B,A JNC M07 POP PSW ADI 40h PUSH PSW M07: MOV A,B RAL JNC M08 POP PSW ADI 80h PUSH PSW M08: POP PSW OUT 80H MVI A,03H ;RS=1,E=1 OUT 82H CALL DELAY MVI A,02H ;RS=1,E=0 OUT 82H CALL DELAY RET DELAY: MVI C,8CH LOOP: DCR C JNZ LOOP RET DBONCE: PUSH B

43 PUSH PSW LXI B,04E0H POOL: DCX B MOV A,C ORA B JNZ POOL POP PSW POP B RET ULTRASONIC: LXI B,68DDH DEL5Loop: DCX B MOV A,B ORA C JNZ DEL5Loop MVI A,040H SIM MVI A,0C0H SIM NOP NOP NOP NOP NOP NOP MVI A,040H SIM AGAIN: RIM ANI 080H JZ AGAIN LXI H,0000H MVI B,0AH

44 DECA: DCR B JNZ DECA NEXT: INX H RIM ANI 080H JZ DRUG JMP TREE TREE: MVI B,09H DECAN: DCR B JNZ DECAN JMP NEXT DRUG: RET DEL_5SEC: MVI B,7CH DEL_5SECLoop1: MVI C,2BH DEL_5SECLoop2: MVI D,0D0H DEL_5SECLoop3: DCR D JNZ DEL_5SECLoop3 DCR C JNZ DEL_5SECLoop2 DCR B JNZ DEL_5SECLoop1 RET

45 Conclusion :- It was an amazing experience for us, from making the schematic upto the moment when it gave correct results. Through this project,we got an idea of how electronics can be applied in our day to day life to make it a lot easier. It gave an understanding of how hardware and software can combine with and complement each other to give us useful products. Initially we were entangled in a thought of - How a microprocessor which was built in 1976 can be used for practical implementation in 2016? This project is the proof that It Can. Bibliography :- Ramesh Gaonkar, Microprocessor Architecture, Programming and Applications with the 8085, Sixth edition. Data sheets of all the components used. Tools Used :- Software : Eagle simulator IDE oshonsoft Jubin 8085 simulator EEPROM Programmer (.JAR) Hardware : EEPROM Programmer Multimeter Solder station Tweezer Cutter

APPENDIX A Instruction Set. Op Code. T states Flags Main Effects. Instructions

APPENDIX A Instruction Set. Op Code. T states Flags Main Effects. Instructions APPENDIX A 8085 Instruction Set Instructions ACI byte CE 7 ALL A A + CY + byte ADC A 8F 4 ALL A A + A + CY ADC B 88 4 ALL A A + B + CY ADC C 89 4 ALL A A + C + CY ADC D 8A 4 ALL A A + D + CY ADC E 8B 4

More information

EE 6502 UNIT-II PROGRAMMING OF 8085 MICROPROCESSOR. Prepared by S.Sayeekumar, AP/RMDEEE

EE 6502 UNIT-II PROGRAMMING OF 8085 MICROPROCESSOR. Prepared by S.Sayeekumar, AP/RMDEEE EE 6502 UNIT-II PROGRAMMING OF 8085 MICROPROCESSOR Prepared by S.Sayeekumar, AP/RMDEEE 7 12 15 PSW (Program Status word) - Flag unaffected * affected 0 reset 1 set S Sign

More information

JNC, JC, and JNZ Instructions for the WIMP51

JNC, JC, and JNZ Instructions for the WIMP51 JNC, JC, and JNZ Instructions for the WIMP51 EE 213 For the beginning of the project I looked up the Hex code for the JNC, JC, JNZ, as well as JZ so that I could compare with how it was created with the

More information

PacMan BoB QA Test Plan

PacMan BoB QA Test Plan PACMAN BOB QA TEST PLAN 1 PacMan BoB QA Test Plan ECE 492 Spring 2014 Latest Revision: 18 April 2014 Prepared by: Drew Jeffrey Abstract This document covers the plan of testing to ensure the Pack Manager

More information

Basic Electricity. Mike Koch Lead Mentor Muncie Delaware Robotics Team 1720 PhyXTGears. and Electronics. for FRC

Basic Electricity. Mike Koch Lead Mentor Muncie Delaware Robotics Team 1720 PhyXTGears. and Electronics. for FRC Basic Electricity and Electronics for FRC Mike Koch Lead Mentor Muncie Delaware Robotics Team 1720 PhyXTGears The Quick Tour The Analog World Basic Electricity The Digital World Digital Logic The Rest

More information

Energy Harvesting Platform

Energy Harvesting Platform Energy Harvesting Platform Group 8 S A N JAY K H E ML A NI T R AV I S B A D A L L K I A R A R O D R I G U EZ M I C H A EL L I N EE EE EE EE Motivation Non-renewable energy sources harm the environment

More information

Arduino-based OBD-II Interface and Data Logger. CS 497 Independent Study Ryan Miller Advisor: Prof. Douglas Comer April 26, 2011

Arduino-based OBD-II Interface and Data Logger. CS 497 Independent Study Ryan Miller Advisor: Prof. Douglas Comer April 26, 2011 Arduino-based OBD-II Interface and Data Logger CS 497 Independent Study Ryan Miller Advisor: Prof. Douglas Comer April 26, 2011 Arduino Hardware Automotive OBD ISO Interface Software Arduino Italy 2005

More information

PC-I 04/104. Passive PC/CAN Interface HARDWARE MANUAL ENGLISH

PC-I 04/104. Passive PC/CAN Interface HARDWARE MANUAL ENGLISH PC-I 04/104 Passive PC/CAN Interface HARDWARE MANUAL ENGLISH HMS Technology Center Ravensburg GmbH Helmut-Vetter-Straße 2 88213 Ravensburg Germany Tel.: +49 751 56146-0 Fax: +49 751 56146-29 Internet:

More information

Nickel Cadmium and Nickel Hydride Battery Charging Applications Using the HT48R062

Nickel Cadmium and Nickel Hydride Battery Charging Applications Using the HT48R062 ickel Cadmium and ickel Hydride Battery Charging Applications Using the HT48R062 ickel Cadmium and ickel Hydride Battery Charging Applications Using the HT48R062 D/: HA0126E Introduction This application

More information

CDC Table for Calculated Body Mass Index Values for Selected Heights and Weights for Ages 2 to 20 Years

CDC Table for Calculated Body Mass Index Values for Selected Heights and Weights for Ages 2 to 20 Years CDC Table for Values for Selected Heights and s for Ages 2 to 20 Years Body Mass Index (BMI) is determined as follows: English Formula: in pounds Height in inches Height in inches x 703 = BMI Metric Formula:

More information

AN RPM to TACH Counts Conversion. 1 Preface. 2 Audience. 3 Overview. 4 References

AN RPM to TACH Counts Conversion. 1 Preface. 2 Audience. 3 Overview. 4 References AN 17.4 RPM to TACH Counts Conversion 1 Preface 2 Audience 3 Overview 4 References This application note provides look up tables for the calculation of RPM to TACH Counts for use with the EMC2103, EMC2104,

More information

Automated Seat Belt Switch Defect Detector

Automated Seat Belt Switch Defect Detector pp. 10-16 Krishi Sanskriti Publications http://www.krishisanskriti.org/publication.html Automated Seat Belt Switch Defect Detector Department of Electrical and Computer Engineering, Sri Lanka Institute

More information

Table 1d - FSA for All Returns, Females Tax Year

Table 1d - FSA for All Returns, Females Tax Year PR 10 Newfoundland and Labrador A0A 20,250 597,345 1,920 1,720 2,580 3,150 1,960 1,610 1,360 1,030 1,020 740 550 460 630 470 410 290 290 70 20 A0B 8,850 249,804 780 740 1,200 1,520 1,010 790 540 430 370

More information

Letter STUDENT NUMBER SYSTEMS ENGINEERING. Written examination. Monday 16 November 2015

Letter STUDENT NUMBER SYSTEMS ENGINEERING. Written examination. Monday 16 November 2015 Victorian Certificate of Education 2015 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER SYSTEMS ENGINEERING Written examination Monday 16 November 2015 Reading time: 9.00 am to 9.15 am

More information

Sensing the position of throttle valve using Throttle Position Sensor

Sensing the position of throttle valve using Throttle Position Sensor Sensing the position of throttle valve using Throttle Position Sensor Nikita Dhenge 1, Krupa Deth 2, S T Valujkar 3 1&2 (National Institute of Electronics and Information Technology, Aurangabad, India)

More information

Programming Languages (CS 550)

Programming Languages (CS 550) Programming Languages (CS 550) Mini Language Compiler Jeremy R. Johnson 1 Introduction Objective: To illustrate how to map Mini Language instructions to RAL instructions. To do this in a systematic way

More information

Design of Intelligent Anti-Theft System for Electric Bicycles Wang Yanan1,a, Kang Caiqin2,b

Design of Intelligent Anti-Theft System for Electric Bicycles Wang Yanan1,a, Kang Caiqin2,b 2nd International Conference on Machinery, Materials Engineering, Chemical Engineering and Biotechnology (MMECEB 2015) Design of Intelligent Anti-Theft System for Electric Bicycles Wang anan1,a, Kang Caiqin2,b

More information

Heavy Duty Actuators CONTROLS. Pneumatic Actuators for Quarter-Turn Valves and Dampers Torques to 1,600,000 in. lbs. Double Acting and Spring Return

Heavy Duty Actuators CONTROLS. Pneumatic Actuators for Quarter-Turn Valves and Dampers Torques to 1,600,000 in. lbs. Double Acting and Spring Return CONTROLS Division of A-T Controls Heavy Duty Actuators Pneumatic Actuators for Quarter-Turn Valves and Dampers Torques to,600,000 in. lbs. Double Acting and Spring Return THD S E R I E S The Triac line

More information

MGV (Marshall TM Guv'nor TM Replica) Instructions

MGV (Marshall TM Guv'nor TM Replica) Instructions This is a replica of the Marshall TM Guv'nor TM Distortion referred to as MGV in these documents. Use the project documents provided, starting with the General Build Instructions. Follow the layout diagrams

More information

IV-3 VFD Shield for Arduino. Assembly Manual

IV-3 VFD Shield for Arduino. Assembly Manual June 2014 Table of Contents 1 Overview Features Applications 3 3 3 2 Assembly Hints 4 3 PCB Overview 5 4 Circuit Diagram 6 5 Assembly Diodes and IC socket Electrolytic capacitors Ceramic capacitors 10K

More information

Title: Electric Trike

Title: Electric Trike 05/20/2015 TI Innovation Challenge Title: Electric Trike Submitted by: Abel Velazquez Table of Contents Abstract.3 Introduction. 3 Technical Achievements Electronics and PCB Design 4 Mechanical Fabrication

More information

Chapter 11. Using MAX II User Flash Memory for Data Storage in Manufacturing Flow

Chapter 11. Using MAX II User Flash Memory for Data Storage in Manufacturing Flow Chapter 11. Using MAX II User Flash Memory for Data Storage in Manufacturing Flow MII51011-1.0 Introduction Small capacity, non-volatile memory is commonly used in storing manufacturing data (e.g., manufacturer

More information

Week 11. Module 5: EE100 Course Project Making your first robot

Week 11. Module 5: EE100 Course Project Making your first robot Week 11 Module 5: EE100 Course Project Making your first robot Dr. Ing. Ahmad Kamal Nasir Office Hours: Room 9-245A Tuesday (1000-1100) Wednesday (1500-1600) Course Project: Wall-Follower Robot Week 1

More information

Collision Avoidance System CAS-M light. Manual

Collision Avoidance System CAS-M light. Manual Collision Avoidance System CAS-M light Manual V 1.10, 2/14/2017 Table of Contents Table of contents 1 System Overview... 3 1.1 Function principle... 3 1.2 Hardware... 3 1.3 Wiring... 4 1.4 CAN communication...

More information

INVITATION FOR QUOTATION. TEQIP-III/2017/uiet/Shopping/35

INVITATION FOR QUOTATION. TEQIP-III/2017/uiet/Shopping/35 INVITATION FOR QUOTATION TEQIP-III/2017/uiet/Shopping/35 09-Jan-2018 To, Sub: Invitation for Quotations for supply of Goods Dear Sir, 1. You are invited to submit your most competitive quotation for the

More information

EZECU - EzFi Starter ECU Standalone 3D Programmable Fuel Injection Computer for BOSCH Compliant EFI Systems

EZECU - EzFi Starter ECU Standalone 3D Programmable Fuel Injection Computer for BOSCH Compliant EFI Systems EZECU - EzFi Starter ECU Standalone 3D Programmable Fuel Injection Computer for BOSCH Compliant EFI Systems User s Manual January, 2012 Version 2.00 Copyright Copyright IC Leader Technology Corporation,

More information

PCT200 Powercast High-Function RFID Sensor Datalogger

PCT200 Powercast High-Function RFID Sensor Datalogger DESCRIPTION The PCT200 SuperTag is a high-functioning, datalogging RFID tag capable of measuring temperature, humidity, and light level with high accuracy. It contains a wirelessly rechargeable battery

More information

Macnet Technology. https://www.indiamart.com/macnet-technology/

Macnet Technology. https://www.indiamart.com/macnet-technology/ +91-8048078598 Macnet Technology https://www.indiamart.com/macnet-technology/ We are one of the prominent trader, exporter and supplier of various types of Engineering Products for Robotic Institutes.

More information

Department of Mechanical, Aerospace and Manufacturing Engineering. Wire Routing Tool. ME 3483 Mechatronics Professor Kapila

Department of Mechanical, Aerospace and Manufacturing Engineering. Wire Routing Tool. ME 3483 Mechatronics Professor Kapila Department of Mechanical, Aerospace and Manufacturing Engineering Wire Routing Tool ME 3483 Mechatronics Professor Kapila Group 2 Roshan Abraham Farhan Khan Steve Narvesen 2/6/2006 Overview Problem Description

More information

Hybrid Off Grid Solar UPS

Hybrid Off Grid Solar UPS Sandip Pandey Hybrid Off Grid Solar UPS Using Arduino UNO and Proteus Simulator Helsinki Metropolia University of Applied Sciences Bachelor s Degree in Electronics Electronics Bachelor Thesis May 2, 2018

More information

(FPGA) based design for minimizing petrol spill from the pipe lines during sabotage

(FPGA) based design for minimizing petrol spill from the pipe lines during sabotage IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Vol. 05, Issue 01 (January. 2015), V3 PP 26-30 www.iosrjen.org (FPGA) based design for minimizing petrol spill from the pipe

More information

英文使用手冊 MS 印製

英文使用手冊 MS 印製 英文使用手冊 MS337 2009.08 印製 MS337 Hand Held Scanner User's Manual TABLE OF CONTENTS Scanner Operation... 1 Presentation and Trigger Modes... 1 In-Stand... 1 Out-of-Stand... 2 Omnidirectional and/or Linear

More information

AC : SMART ROD

AC : SMART ROD AC 2011-1376: SMART ROD Mohamad A. Mustafa, Savannah State University Mohamad Mustafa is a Professor of Civil Engineering Technology at Savannah State University (SSU). He has six years of industrial experience

More information

Chapter 1: Battery management: State of charge

Chapter 1: Battery management: State of charge Chapter 1: Battery management: State of charge Since the mobility need of the people, portable energy is one of the most important development fields nowadays. There are many types of portable energy device

More information

Fuel Monitoring and Electronics control of Dispenser for Fuel Station

Fuel Monitoring and Electronics control of Dispenser for Fuel Station RESEARCH ARTICLE OPEN ACCESS Fuel Monitoring and Electronics control of Dispenser for Fuel Station Nang Khin Su Yee 1, Theingi 2, Kyaw Thiha 3 1, 3(Department of Mechatronic Engineering, Mandalay Technological

More information

Design and Fabrication of Automated Hacksaw Machine

Design and Fabrication of Automated Hacksaw Machine Design and Fabrication of Automated Hacksaw Machine D.V.Sabariananda 1, V.Siddhartha 1, B.Sushil Krishnana 1, T.Mohanraj 2 UG Student [Mechatronics], Dept. of Mechatronics Engineering, Kongu Engineering

More information

DEFINITION OF ACRONYMS

DEFINITION OF ACRONYMS DEFINITION OF ACRONYMS No. ACRONYMS DESCRIPTION 1 MOTOBOX Technical data box for motorcycle repair 2 MT006-LINK Signal cable used to transfer data 3 INPUT Input signal of ECM 4 OUTPUT Ouput signal of ECM

More information

International Journal of Advance Engineering and Research Development

International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.14 International Journal of Advance Engineering and Research Development Volume 3, Issue 4, April -2016 GSM BASED PREPAID ENERGY METER e-issn (O): 2348-4470

More information

Solar tracker is the best solution for receiving maximum radiation.

Solar tracker is the best solution for receiving maximum radiation. 1 Definition of problem Market Solution Introduction Block diagram Circuit diagram Components Software/Hardware used Feasibility Application Future enhancement Work distribution of project Reference Queries

More information

Model based development of Cruise Control for Mercedes-Benz Trucks

Model based development of Cruise Control for Mercedes-Benz Trucks Model based development of Cruise Control for Mercedes-Benz Trucks M. Wünsche, J. Elser 15.06.2004 Truck Product Creation (4P) TPC / MMP Agenda Introduction functional and technical overview Project description

More information

An Autonomous Braking System of Cars Using Artificial Neural Network

An Autonomous Braking System of Cars Using Artificial Neural Network I J C T A, 9(9), 2016, pp. 3665-3670 International Science Press An Autonomous Braking System of Cars Using Artificial Neural Network P. Pavul Arockiyaraj and P.K. Mani ABSTRACT The main aim is to develop

More information

TAILOR MADE METAL FABRICATIONS LTD. VEHICLE ACCESS CONTROL BARRIER (VAC B)

TAILOR MADE METAL FABRICATIONS LTD. VEHICLE ACCESS CONTROL BARRIER (VAC B) TAILOR MADE METAL FABRICATIONS LTD. VEHICLE ACCESS CONTROL BARRIER (VAC B) TECHNICAL MANUAL v1.3 JANUARY 2014 Technical Manual (Updated 6 th January 2014) No Vehicle timer Vehicle delay timer Overrun timer

More information

Implementation of a Grid Connected Solar Inverter with Maximum Power Point Tracking

Implementation of a Grid Connected Solar Inverter with Maximum Power Point Tracking ECE 4600 GROUP DESIGN PROJECT PROGRESS REPORT GROUP 03 Implementation of a Grid Connected Solar Inverter with Maximum Power Point Tracking Authors Radeon Shamilov Kresta Zumel Valeria Pevtsov Reza Fazel-Darbandi

More information

G3 UNIVERSAL GRIP CONFIGURATION GUIDE

G3 UNIVERSAL GRIP CONFIGURATION GUIDE G3 UNIVERSAL GRIP CONFIGURATION GUIDE www.ottoexcellence.com Industrial Grips for Demanding Applications OTTO serves agriculture, construction, off-highway, material handling and specialized industrial

More information

C capacitance, 91 capacitors, codes for, 283 coupling, polarized and nonpolarized,

C capacitance, 91 capacitors, codes for, 283 coupling, polarized and nonpolarized, Index Numbers and Symbols 555 timer, 164 166 making sound using, setting output speed of, 166 167 using for reaction game speed, 260 261 μf (microfarad), 92 Ω (ohms), 7, 70 A A (amperes), 7 AC (alternating

More information

Orica Seismic Electronic Initiation System OSEIS TESTER. Manual

Orica Seismic Electronic Initiation System OSEIS TESTER. Manual Orica Seismic Electronic Initiation System OSEIS TESTER Manual Version 2.00a, November 2006 Overview Oseis System... 2 1. Oseis Detonator, Tester and accessories... 3 1.1 Oseis electronic detonator...

More information

VACUUM PRESSURE PUMPS INSTALLATION CAUTIONS AND INFORMATION READ AND FOLLOW CAREFULLY!

VACUUM PRESSURE PUMPS INSTALLATION CAUTIONS AND INFORMATION READ AND FOLLOW CAREFULLY! F.A.A.-P.M.A. MODEL 1U128A AND 1U128B REVISION 17 February 21, 2002 VACUUM PRESSURE PUMPS INSTALLATION CAUTIONS AND INFORMATION READ AND FOLLOW CAREFULLY! The following information applies to all installations

More information

Top quality For industrial use

Top quality For industrial use HAND PALLET TRUCK SCALES RAVAS-110 Pallet truck scale with basic scale functions BENEFITS: The RAVAS work horse All basic scale functions Competitive pricing Low power consumption For checking incoming

More information

Superstatic 749. Fluidic Oscillation Compact Heat Meter

Superstatic 749. Fluidic Oscillation Compact Heat Meter Superstatic 749 Fluidic Oscillation Compact Heat Meter Application The Superstatic 749 is an autonomous compact thermal energy meter consisting of a flow meter an integrator and a pair of temperature sensors.

More information

Technical Article. How improved magnetic sensing technology can increase torque in BLDC motors. Roland Einspieler

Technical Article. How improved magnetic sensing technology can increase torque in BLDC motors. Roland Einspieler Technical How improved magnetic sensing technology can increase torque in BLDC motors Roland Einspieler How improved magnetic sensing technology can increase torque in BLDC motors Roland Einspieler Across

More information

SITRANS P measuring instruments for pressure

SITRANS P measuring instruments for pressure Overview Siemens AG 009 Supplementary electronics for 4-wire connection Design Dimensions (W x H x D) in mm (inch) Electrical connection 80 x 10 x 60 (3.15 x 4.7 x.36) Screw terminals (Pg 13.5 cable inlet)

More information

Push Button Units and Indicator Lights

Push Button Units and Indicator Lights 3SB3, Inscriptions, 22 mm Insert labels Push Button Units and Indicator Lights Push buttons (clear) and illuminated push buttons with a flat button can be fitted with insert labels for identification purposes,

More information

ECHO Enhanced Controller Hook Count Application *** Infrared Photo Sensors *** GCA 110 ECHO Controller. Version 3.5

ECHO Enhanced Controller Hook Count Application *** Infrared Photo Sensors *** GCA 110 ECHO Controller. Version 3.5 ECHO Enhanced Controller Hook Count Application *** Infrared Photo Sensors *** GCA 110 ECHO Controller Version 3.5 1 Change History: Feb 01, 2005 Mar 16, 2005 May 22, 2005 May 9, 2006 By request from CCS,

More information

IFC-BL02 Interface Free Controller Brushless Motor Card

IFC-BL02 Interface Free Controller Brushless Motor Card IFC-BL02 Interface Free Controller Brushless Motor Card User s Manual V1.1 Apr 2008 Information contained in this publication regarding device applications and the like is intended through suggestion only

More information

CERTIFICATE OF COMPLIANCE

CERTIFICATE OF COMPLIANCE FM Approvals 1151 Boston Providence Turnpike P.O. Box 9102 Norwood, MA 02062 USA T: 781 762 4300 F: 781-762-9375 www.fmapprovals.com CERTIFICATE OF COMPLIANCE HAZARDOUS LOCATION ELECTRICAL EQUIPMENT PER

More information

Improved PV Module Performance Under Partial Shading Conditions

Improved PV Module Performance Under Partial Shading Conditions Available online at www.sciencedirect.com Energy Procedia 33 (2013 ) 248 255 PV Asia Pacific Conference 2012 Improved PV Module Performance Under Partial Shading Conditions Fei Lu a,*, Siyu Guo a, Timothy

More information

An High Voltage CMOS Voltage Regulator for automotive alternators with programmable functionalities and full reverse polarity capability

An High Voltage CMOS Voltage Regulator for automotive alternators with programmable functionalities and full reverse polarity capability L. Fanucci, G. Pasetti University of Pisa P. D Abramo, R. Serventi, F. Tinfena Austriamicrosystems P. Tisserand, P. Chassard, L. Labiste - Valeo An High Voltage CMOS Voltage Regulator for automotive alternators

More information

+Denotes lead(pb)-free and RoHS compliant. JU1 JU4 4

+Denotes lead(pb)-free and RoHS compliant. JU1 JU4 4 19-4381; Rev 0; 11/08 General Description The MAX8844Z evaluation kit (EV kit) is a fully assembled and tested PCB for evaluating the MAX8844Z/ MAX8844Y 28V linear Li+ battery chargers. The MAX8844Z EV

More information

AP Physics B Ch 18 and 19 Ohm's Law and Circuits

AP Physics B Ch 18 and 19 Ohm's Law and Circuits Name: Period: Date: AP Physics B Ch 18 and 19 Ohm's Law and Circuits MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) A device that produces electricity

More information

HYB25D256400/800AT 256-MBit Double Data Rata SDRAM

HYB25D256400/800AT 256-MBit Double Data Rata SDRAM 256-MBit Double Data Rata SDRAM Features CAS Latency and Frequency Maximum Operating Frequency (MHz) CAS Latency DDR266A -7 DDR200-8 2 133 100 2.5 143 125 Double data rate architecture: two data transfers

More information

Summary of Specifications

Summary of Specifications Series Large Can Screw Terminals High Ripple 6.3 to 400VDC Range Dimensions in Inches RoHS Compliant 105 C Maximum Temperature The series allows for extremely high ripple currents for applications such

More information

U36D SERIES Engineering Bulletin Mar 07

U36D SERIES Engineering Bulletin Mar 07 Series SERIES Large Can Screw Terminals High Ripple Up to 550VDC Dimensions in Inches RoHS Compliant 85 C Maximum Temperature The series is ideal for inverter applications requiring high ripple current

More information

or, with the time and date option enabled using the CommFlags command:

or, with the time and date option enabled using the CommFlags command: GM05 Serial Interface Protocol The GM05 serial interface can operate in two modes: Mode 1 - This transmits a copy of the information on the GM05 display, in plain ASCII. No commands are accepted by the

More information

DATE: May 19, 2000 Service Instruction No. 1443E (Supersedes Service Instruction No. 1443D) Engineering Aspects are FAA Approved

DATE: May 19, 2000 Service Instruction No. 1443E (Supersedes Service Instruction No. 1443D) Engineering Aspects are FAA Approved DATE: May 19, 2000 (Supersedes Service Instruction No. 1443D) Engineering Aspects are FAA Approved SUBJECT: MODELS AFFECTED: TIME OF COMPLIANCE: Approved Slick Magnetos on Textron Lycoming Engines See

More information

THE SOLAR POWERED ANTI-THEFT BAG

THE SOLAR POWERED ANTI-THEFT BAG THE SOLAR POWERED ANTI-THEFT BAG Ruchi Mangesh Jadhav 1, Sarika Hari Gaonkar 2, Darshan Kamlesh Khatri 3 Soumya Satish Bangera 4 a ruchimjadhav@gmail.com, b sarikagaonkar01@gmail.com, c darshankk.dk@gmail.com,

More information

ECE 550D Fundamentals of Computer Systems and Engineering. Fall 2017

ECE 550D Fundamentals of Computer Systems and Engineering. Fall 2017 ECE 550D Fundamentals of Computer Systems and Engineering Fall 2017 Digital Arithmetic Prof. John Board Duke University Slides are derived from work by Profs. Tyler Bletch and Andrew Hilton (Duke) Last

More information

OPERATIONS MANUAL M-520. Please take the time to read these instructions before starting to use the scales. Page 1

OPERATIONS MANUAL M-520. Please take the time to read these instructions before starting to use the scales. Page 1 OPERATIONS MANUAL M-520 Please take the time to read these instructions before starting to use the scales Page 1 Contents Power supply 3 Specifications 3 Maintenance and general care 3 Key functions 4

More information

mith College Computer Science CSC231 Assembly Fall 2017 Week #4 Dominique Thiébaut

mith College Computer Science CSC231 Assembly Fall 2017 Week #4 Dominique Thiébaut mith College Computer Science CSC231 Assembly Fall 2017 Week #4 Dominique Thiébaut dthiebaut@smith.edu How are Integers Stored in Memory? 120 11F 11E 11D 11C 11B 11A 119 118 117 116 115 114 113 112 111

More information

Embedded system design for a multi variable input operations

Embedded system design for a multi variable input operations IOSR Journal of Engineering (IOSRJEN) ISSN: 2250-3021 Volume 2, Issue 8 (August 2012), PP 29-33 Embedded system design for a multi variable input operations Niranjan N. Parandkar, Abstract: - There are

More information

RAISEBORING DRILL PIPES

RAISEBORING DRILL PIPES Secoroc Rock Drilling Tools RAISEBORING DRILL PIPES Catalogue Introducing Raiseboring drill string components Atlas Copco Secoroc has a long history in Raiseboring that finds its roots in the Robbins Raiseboring

More information

Product Manual L293D BREAKOUT Updated on 24 June 2017

Product Manual L293D BREAKOUT Updated on 24 June 2017 Product Manual L293D BREAKOUT Updated on 24 June 2017 Index Index 1 Introduction 2 Specification 2 Variants 2 Supported cables: 3 Details 3 How to interface? 4 Example Codes 8 Arduino 8 Contributors 10

More information

Convergence module (Driver) - Green convergence sub module

Convergence module (Driver) - Green convergence sub module I 2 C error is displayed on the screen together with the respective, as illustrated on screen picture: The table below indicates which IC corresponds to the displayed. Replacement of the indicated IC solves

More information

GEMALTO M2M. Accessories Overview. Product Marketing. Sep 2015

GEMALTO M2M. Accessories Overview. Product Marketing. Sep 2015 GEMALTO M2M Accessories Overview Product Marketing Sep 2015 Developing with Cinterion Wireless Modules is easier than ever! DSB-mini The cost-effective DSB75 alternative DSB75 Fully-fledged development

More information

1. Historical background of I2C I2C from a hardware perspective Bus Architecture The Basic I2C Protocol...

1. Historical background of I2C I2C from a hardware perspective Bus Architecture The Basic I2C Protocol... Table of contents CONTENTS 1. Historical background of I2C... 16 2. I2C from a hardware perspective... 18 3. Bus Architecture... 22 3.1. Basic Terminology... 23 4. The Basic I2C Protocol... 24 4.1. Flowchart...

More information

Fluidic Oscillation Compact Heat Meter of High-Tech Composite

Fluidic Oscillation Compact Heat Meter of High-Tech Composite Superstatic 789 Fluidic Oscillation Compact Heat Meter of High-Tech Composite Application The Superstatic 789 is an autonomous compact thermal energy meter consisting of a high-tech composite flow meter

More information

TESTING OF CONTROL UNITS FOR THE APPLICATION OF WIRELESS COMMUNICATION PROTOCOLS IN ON-BOARD VEHICLE DIAGNOSTIC SYSTEMS

TESTING OF CONTROL UNITS FOR THE APPLICATION OF WIRELESS COMMUNICATION PROTOCOLS IN ON-BOARD VEHICLE DIAGNOSTIC SYSTEMS TESTING OF CONTROL UNITS FOR THE APPLICATION OF WIRELESS COMMUNICATION PROTOCOLS IN ON-BOARD VEHICLE DIAGNOSTIC SYSTEMS MAREK VIT, CUPERA JIRI Department of Technology and Automobile Transport Mendel University

More information

R260S - In-Circuit Programmer

R260S - In-Circuit Programmer R260S - In-Circuit Programmer The ultimate solution for Freescale s microcontrollers! Items now available for in-circuit programming: BMW 1,3,5,6 Series CAS2 White (MC9S12) BMW 1,3,5,6,X5 Series CAS3 Black

More information

Testing Electrified Drivetrains for Vehicles without the Battery or Engine. Application Reprint of Readout No. 38

Testing Electrified Drivetrains for Vehicles without the Battery or Engine. Application Reprint of Readout No. 38 Feature Article Feature Article Testing Electrified Drivetrains for Vehicles without the Battery or. Reprint of Readout No. 38 Testing Electrified Drivetrains for Vehicles without the Battery or. Norm

More information

Automatic Braking and Control for New Generation Vehicles

Automatic Braking and Control for New Generation Vehicles Automatic Braking and Control for New Generation Vehicles Absal Nabi Assistant Professor,EEE Department Ilahia College of Engineering & Technology absalnabi@gmail.com +919447703238 Abstract- To develop

More information

Process connection. Further designs. Order code. to EN

Process connection. Further designs. Order code. to EN Replacement measuring cell for pressure for SITRANS P, DS III, DS III PA and DS III FF series 7 M F 4 9 9 0-7 7 7 7 0-0 D C 0 0.01... 1 bar g (0.15... 14.5 psi g) B 0.04... 4 bar g (0.6... 58 psi g) C

More information

DAT105: Computer Architecture Study Period 2, 2009 Exercise 2 Chapter 2: Instruction-Level Parallelism and Its Exploitation

DAT105: Computer Architecture Study Period 2, 2009 Exercise 2 Chapter 2: Instruction-Level Parallelism and Its Exploitation Study Period 2, 29 Exercise 2 Chapter 2: Instruction-Level Parallelism and Its Exploitation Mafijul Islam Department of Computer Science and Engineering November 12, 29 Study Period 2, 29 Goals: To understand

More information

AMM-TE ammeter Manual

AMM-TE ammeter Manual AMM-TE ammeter Manual I. Kit Details Kit Name: Ammeter Kit Kit Model: AMM-TE PCB Size: 70.6 * 39mm Screen size: 51 * 24mm Electrical parameters Operating voltage: DC5 Operating Current: 35mA Accuracy:

More information

International Journal of Science Engineering and Advance Technology, IJSEAT, Vol 3, Issue 9 ISSN September-2015

International Journal of Science Engineering and Advance Technology, IJSEAT, Vol 3, Issue 9 ISSN September-2015 Design and implementation of Traffic Flow based Street Light Control System with effective utilization of solar energy M.Abhishek, Syed ajram shah, K.Chetan, K.Arun kumar B.Tech Students EEE Department

More information

UniverSOL Charge Station

UniverSOL Charge Station UniverSOL Charge Station Group 17 Jonathan German Amy Parkinson John Curristan Brock Stoops Sponsored by Motivations Environmental Renewable Energy Carbon Emissions Power Demand Power Dependency Availability

More information

Design and Implementation of an Automatic Power Supply from Four Different Source Using Microcontroller

Design and Implementation of an Automatic Power Supply from Four Different Source Using Microcontroller International Journal of Electrical and Electronic Science 2017; 4(5): 40-46 http://www.aascit.org/journal/ijees ISSN: 2375-2998 Design and Implementation of an Automatic Power Supply from Four Different

More information

INSTRUMENT PANEL CLUSTERS

INSTRUMENT PANEL CLUSTERS INSTRUMENT PANEL CLUSTERS NOT BUYING AT THIS TIME REVISED ##### PART # MAKE APPLICATION 6/18/2018 PRICE 56045618 CHRY IPC 40.00 56045679 CHRY IPC 40.00 56051103 CHRY IPC 40.00 56049833 AC,AD CHRY IPC 40.00

More information

Final Report 4/25/12. Project: Intelli-Shade. Team: Test Curtains Please Ignore

Final Report 4/25/12. Project: Intelli-Shade. Team: Test Curtains Please Ignore EEL 4924 Electrical Engineering Design (Senior Design) Final Report 4/25/12 Project: Team: Test Curtains Please Ignore Team Members: Michael Feliciano Mark Heh Abstract: Our project is the design of an

More information

EV-EMCU Electric Vehicle - Economy Mode Control Unit

EV-EMCU Electric Vehicle - Economy Mode Control Unit EV-EMCU Electric Vehicle - Economy Mode Control Unit Vanessa Baltacioglu Shauntice Diaz Chris Chadman Group 4 General Project Description A Overall control module Project to implement Description economy

More information

CMPEN 411 VLSI Digital Circuits Spring Lecture 22: Memery, ROM

CMPEN 411 VLSI Digital Circuits Spring Lecture 22: Memery, ROM CMPEN 411 VLSI Digital Circuits Spring 2012 Lecture 22: Memery, ROM [Adapted from Rabaey s Digital Integrated Circuits, Second Edition, 2003 J. Rabaey, A. Chandrakasan, B. Nikolic] Sp12 CMPEN 411 L22 S.1

More information

HOW TO PERFORM VEHICLE IDENTIFICATION NUMBER (VIN) WRITING

HOW TO PERFORM VEHICLE IDENTIFICATION NUMBER (VIN) WRITING HOW TO PERFORM VEHICLE IDENTIFICATION NUMBER (VIN) WRITING CAUTION: The F.A.S.T-Key (Free-hand Advanced Security Transmitter) is described as the Keyless Operation System (KOS). Follow the procedure below

More information

Tip: LED Lighting for the 4367 SBB Euro City Set, 4366 and 4368 Cars Date: , Corrections Modified , Photos

Tip: LED Lighting for the 4367 SBB Euro City Set, 4366 and 4368 Cars Date: , Corrections Modified , Photos Hi All, I have had the 4367 SBB Euro City set with extra cars 4366 and 4368 since 1998, apart from a test run on the layout they have stayed in storage ever since. I decided to change some rolling stock

More information

6.823 Computer System Architecture Prerequisite Self-Assessment Test Assigned Feb. 6, 2019 Due Feb 11, 2019

6.823 Computer System Architecture Prerequisite Self-Assessment Test Assigned Feb. 6, 2019 Due Feb 11, 2019 6.823 Computer System Architecture Prerequisite Self-Assessment Test Assigned Feb. 6, 2019 Due Feb 11, 2019 http://csg.csail.mit.edu/6.823/ This self-assessment test is intended to help you determine your

More information

54ACxxxx, 54ACTxxxx. Rad-hard advanced high-speed 5 V CMOS logic series. Features. Description

54ACxxxx, 54ACTxxxx. Rad-hard advanced high-speed 5 V CMOS logic series. Features. Description Rad-hard advanced high-speed 5 V CMOS logic series Features Data brief Flat-14 Flat-16 Flat-20 DIL-14 DIL-16 DIL-20 AC: 2 to 6 V operating voltage ACT: 4.5 to 5.5 V operating voltage High speed T PD =

More information

Sunseeker Sunseek Electrica Electric l a Systems 22 September 2009

Sunseeker Sunseek Electrica Electric l a Systems 22 September 2009 Sunseeker Electrical Systems 22 September 2009 Primary Systems There are four primary electrical systems Solar Array and Array DC to DC Converters Battery and Battery Protection System Drive Motors (Csiro)

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS INSTALLATION INSTRUCTIONS WARNING: WARNING: www.altronicinc.com DEVIATION DEVIATION FROM THESE FROM INSTRUCTIONS THESE INSTRUCTIONS MAY LEAD MAY TO LEAD IMPROPER TO IMPROPER OP- ERATION OF ENGINE THE MACHINE

More information

Robotized semiautomatic motorcycle transmission development. Electronic and software design

Robotized semiautomatic motorcycle transmission development. Electronic and software design Robotized semiautomatic motorcycle transmission development. Electronic and software design Mihai Neghină 1, Radu Emanuil Petruse 2*, Sebastian Olteanu 3, Ioan Bondrea 2, Lucian Lobonț 2, and Gabriel Stanciu

More information

Issue 2.0 December EPAS Midi User Manual EPAS35

Issue 2.0 December EPAS Midi User Manual EPAS35 Issue 2.0 December 2017 EPAS Midi EPAS35 CONTENTS 1 Introduction 4 1.1 What is EPAS Desktop Pro? 4 1.2 About This Manual 4 1.3 Typographical Conventions 5 1.4 Getting Technical Support 5 2 Getting Started

More information

medical/health scales

medical/health scales Table of Contents medical/health scales RL-440HH Home Health Scale... MH-2 RL-330HHL/RL-330HHD Home Health Scale... MH-2 Mechanical Physician Scale...MH-3 Digital Physician Scale...MH-4 Digital Baby Scale...MH-6

More information

Robofish Charging Station (RCS) Test Plan

Robofish Charging Station (RCS) Test Plan Team P17250 10/26/2016 Rev A Robofish Charging Station (RCS) Test Plan 1 Table of Contents 1. Objectives 2. Test Criteria 3. Test Resources 4. Test Procedures 5. Results 6. Conclusions 1. Objectives 1.1.

More information

A14-18 Active Balancing of Batteries - final demo. Lauri Sorsa & Joonas Sainio Final demo presentation

A14-18 Active Balancing of Batteries - final demo. Lauri Sorsa & Joonas Sainio Final demo presentation A14-18 Active Balancing of Batteries - final demo Lauri Sorsa & Joonas Sainio Final demo presentation 06.12.2014 Active balancing project before in Aalto Respectable research was done before us. Unfortunately

More information