+ All Categories
Home > Documents > How to get to second base

How to get to second base

Date post: 02-Nov-2014
Category:
Upload: meatloafsliders
View: 495 times
Download: 2 times
Share this document with a friend
Description:
Converting from Binary to Decimal
Popular Tags:
8
How to Get To second Base Team 6 Karl Laguerre, Chris Pyman, Sha Maula, John Sullivan Binary to Decimal
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!!


Recommended