SlideShare a Scribd company logo
How to Get To second Base Binary to DecimalTeam 6Karl Laguerre, Chris Pyman, Sha Maula, John Sullivan
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 = 50101 = 5
Front Panel
Block Diagram
Sub VI
Time to get to second base!!

More Related Content

PDF
Logic Design
PPTX
dld 01-introduction
PPT
Digital logic design part1
PPTX
DLD Presentation By Team Reboot,Rafin Rayan,EUB
PPTX
Parallel adders
PPSX
Number system logic gates
PPT
Digital Logic Design
PPTX
Time series predictions using LSTMs
Logic Design
dld 01-introduction
Digital logic design part1
DLD Presentation By Team Reboot,Rafin Rayan,EUB
Parallel adders
Number system logic gates
Digital Logic Design
Time series predictions using LSTMs

What's hot (20)

PPTX
Lec 1 number systems converted
PDF
Mcs 012 computer organisation and assemly language programming- ignou assignm...
PDF
An ElGamal Encryption Scheme of Adjacency Matrix and Finite Machines
PDF
Chapter 03 number system
PDF
Number system
PDF
Lecture 01 dld 2018
PPTX
PPT
Data linklayer
PDF
Aes128 bit project_report
PPT
Digital Logic & Design
PPT
Bit manipulation
DOC
Mcsl 17 ALP lab manual
PPTX
Bit manipulation
DOC
Information Theory and Coding Question Bank
PPTX
Block coding, error detection (Parity checking, Cyclic redundancy checking (C...
PDF
logic gates By ZAK
PDF
A new cryptosystem with four levels of encryption and parallel programming
PPT
Ch3 datalink
PPT
Hamming codes
PDF
Paper on Optimized AES Algorithm Core Using FeedBack Architecture
Lec 1 number systems converted
Mcs 012 computer organisation and assemly language programming- ignou assignm...
An ElGamal Encryption Scheme of Adjacency Matrix and Finite Machines
Chapter 03 number system
Number system
Lecture 01 dld 2018
Data linklayer
Aes128 bit project_report
Digital Logic & Design
Bit manipulation
Mcsl 17 ALP lab manual
Bit manipulation
Information Theory and Coding Question Bank
Block coding, error detection (Parity checking, Cyclic redundancy checking (C...
logic gates By ZAK
A new cryptosystem with four levels of encryption and parallel programming
Ch3 datalink
Hamming codes
Paper on Optimized AES Algorithm Core Using FeedBack Architecture
Ad

Viewers also liked (16)

PPTX
AssureBridge - B2B Partner Demands SSO - Marketing Presentation
PPTX
초기분석등
PDF
Time clocks and the ordering of events
PPTX
AssureBridge - Connect customers to supply chain applications - Marketing Pre...
PDF
My Sql.Php.Database.Applications
PPTX
Project 1 Part 1
PPT
And now for something completely different...
PPTX
홍길동제안서
PPTX
Using Big Data to Shape the Learner Experience
PPTX
Tommy processes
PPTX
핼리네시아러프컨셉기획
PPTX
xAPI in Action
PPTX
AssureBridge - SSO to Many B2B Service Providers - Marketing presentation
PPTX
JFK to LHR in LabVIEW
PPTX
Solar panels
PPTX
Electrical Engineering
AssureBridge - B2B Partner Demands SSO - Marketing Presentation
초기분석등
Time clocks and the ordering of events
AssureBridge - Connect customers to supply chain applications - Marketing Pre...
My Sql.Php.Database.Applications
Project 1 Part 1
And now for something completely different...
홍길동제안서
Using Big Data to Shape the Learner Experience
Tommy processes
핼리네시아러프컨셉기획
xAPI in Action
AssureBridge - SSO to Many B2B Service Providers - Marketing presentation
JFK to LHR in LabVIEW
Solar panels
Electrical Engineering
Ad

How to get to second base

  • 1. How to Get To second Base Binary to DecimalTeam 6Karl Laguerre, Chris Pyman, Sha Maula, John Sullivan
  • 2. 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.
  • 3. 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.
  • 4. What is the decimal value of 0101?(0 * 23) + (1 * 22) + (0 * 21) + (1 * 20)0 + 4 + 0 + 1 = 50101 = 5
  • 8. Time to get to second base!!