how to get to second base

Post on 02-Nov-2014

501 Views

Category:

Documents

2 Downloads

Preview:

Click to see full reader

DESCRIPTION

Converting from Binary to Decimal

TRANSCRIPT

How to Get To second Base

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

Sullivan

Binary to Decimal

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.

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.

What is the decimal value of 0101?

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

Front Panel

Block Diagram

Sub VI

Time to get to second base!!

top related