Top Banner
How to Get To second Base Team 6 Karl Laguerre, Chris Pyman, Sha Maula, John Sullivan Binary to Decimal
8

How to get to second base

Nov 02, 2014

Download

Documents

MeatloafSliders

Converting from Binary to Decimal
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: How to get to second base

How to Get To second Base

Team 6Karl Laguerre, Chris Pyman, Sha Maula, John

Sullivan

Binary to Decimal

Page 2: How to get to second base

BinaryBinary is a base 2 method of

counting, and is also the way that computers read assembly code. Consisting of the numbers 0 and

1, representing 0V (off) or 5V (on), it can be translated to the base 10, or decimal number system,

that we are used to.

Page 3: How to get to second base

Our project consisted of taking any given four digit

binary number and translating it to its decimal equivalent

while also outputting a .wav file corresponding to the

decimal digit.

Page 4: How to get to second base

What is the decimal value of 0101?

• (0 * 23) + (1 * 22) + (0 * 21) + (1 * 20)• 0 + 4 + 0 + 1 = 5• 0101 = 5

Page 5: How to get to second base

Front Panel

Page 6: How to get to second base

Block Diagram

Page 7: How to get to second base

Sub VI

Page 8: How to get to second base

Time to get to second base!!