Digital Circuit Problem Need Help!

sas4579

Junior Member
Feb 6, 2014
4
0
0
A digital circuit to detect low tire pressure on a motorcycle.

The circuitry receives two 6-bit binary data from the tire pressure sensors. One for the front tire, the other for the rear. For example, at 3 psi the sensor outputs b'000011.

The maximum tire pressure specified for each motorcycle tire is 50 psi.

Design the circut so that when the pressure of one tire is at least 4 psi lower than the other, it activates one of the two warning signals WF AND WR. If the front tire pressure is lower then WF=1 OR if the rear tire pressure is lower than WR=1 then all conditions are WF=WR=0.

Design circuit using full adders and any other types of gates, capture the design using circuit diagram in conjuction with Boolean equations.

Plug in pre selected numbers to verify if your design works. Front tire at 48 psi and reare at 8 psi.

Really confused please help!!!!

Thanks
 

Markbnj

Elite Member <br>Moderator Emeritus
Moderator
Sep 16, 2005
15,682
14
81
www.markbetz.net
I know, it is confusing. Let me help: this is homework. If you want help with homework you should at least _try_ to do a little bit of it yourself first. Maybe post some of your thinking so far, as opposed to just ctrl-c/ctrl-v the text from the assignment.
 

PottedMeat

Lifer
Apr 17, 2002
12,363
475
126
A digital circuit to detect low tire pressure on a motorcycle.

The circuitry receives two 6-bit binary data from the tire pressure sensors. One for the front tire, the other for the rear. For example, at 3 psi the sensor outputs b'000011.

The maximum tire pressure specified for each motorcycle tire is 50 psi.

Design the circut so that when the pressure of one tire is at least 4 psi lower than the other, it activates one of the two warning signals WF AND WR. If the front tire pressure is lower then WF=1 OR if the rear tire pressure is lower than WR=1 then all conditions are WF=WR=0.

Design circuit using full adders and any other types of gates, capture the design using circuit diagram in conjuction with Boolean equations.

Plug in pre selected numbers to verify if your design works. Front tire at 48 psi and reare at 8 psi.

Really confused please help!!!!

Thanks

/diy on 4chan would be happy to do your homework for free
 

MrDudeMan

Lifer
Jan 15, 2001
15,069
94
91
I'd be happy to help explain this, but you need to give honest effort first. The whole point of homework is to learn and you won't be learning if someone else solves the problem.
 

sas4579

Junior Member
Feb 6, 2014
4
0
0
Well my theory is that you have two inputs with two outputs. Either the warning light is on or not are the outputs and the two tires are the inputs. I am not sure if I need to use a half adder or a full adder in this case. Also do i need to use 2's complement to find the difference between the two pressures to activate the warning light if are more than 4 psi apart?
 

skimple

Golden Member
Feb 4, 2005
1,283
3
81
Do you need to set up a truth table? No. Its not a requirement unless your homework says so.

Would setting up a truth table help you understand the relationship between the inputs and outputs? I'm thinking - yes.

Pretty easy in Excel to build a 12 bit truth table.
 

festa_freak

Member
Dec 2, 2011
136
0
0
You are asking questions that only your instructor can answer. You need a clear cut goal and process for this assignment.
 

PottedMeat

Lifer
Apr 17, 2002
12,363
475
126
needs at least? (damn it's been a long time)

1. difference
2. sign (which wheel)
3. combi logic for >4
4. combi logic for which/both warnings?


...could probably figure it out with a 6 x 6 -> 2 output table
 

skimple

Golden Member
Feb 4, 2005
1,283
3
81
Start with:

r5 r4 r3 r2 r1 r0 f5 f4 f3 f2 f1 f0 | wf wr
0 0 0 0 0 0 0 0 0 0 0 0 | 0 0
.
.
.
.

Of course wf = wr = 0 in the first line assumes that you are only interested in the delta between f and r and don't have a threshold pressure.

Once you fill out your truth table, write the formulas for the conditions when wf and wr are true. Simplify down to the fewest inputs and select your gates.
 
Last edited:

sas4579

Junior Member
Feb 6, 2014
4
0
0
Skimple i am not understanding you and we are to come up with the logic design for the warning light to come on with the specifications noted so thats why i am a bit confused.
 

sdifox

No Lifer
Sep 30, 2005
96,959
16,212
126
Skimple i am not understanding you and we are to come up with the logic design for the warning light to come on with the specifications noted so thats why i am a bit confused.

No home work help here....
 

Rubycon

Madame President
Aug 10, 2005
17,768
485
126
Hmmm, I dunno aren't you concerned with the RFI effects of the typical rice rocket high energy ignition system? Will cross interleaved Reed-Solomon code suffice?

A piezo-resistive bridge silicon transducer coupled to a simple comparator is all you really need to switch a transistor to high to make the fleabag idiot light glow on the scooter's speedo!

But if you want a digital readout in kPa. Oh that works too. Don't forget these sensors are very sensitive to ambient temperature as well (reference instrumentation keeps them in controlled ovens). So you must also have a temperature sensor to offset this.

Oh and aren't the tires tube? Tube tires can develop static from deflection when rolling. That's another source of EMI that must be dealt with.
 

Possessed Freak

Diamond Member
Nov 4, 1999
6,045
1
0
Recommend skipping a few steps, placing all the problematic pieces into a "black box" to return the desired effect (I *really* hated it when the professor used to include black boxes generating output without knowing what it was doing).
 

NutBucket

Lifer
Aug 30, 2000
27,054
573
126
I "cheated" in my digital circuits class by doing some of the assignments with Altera instead of discrete gates like the rest of the class. Prof didn't mind. This was 2002-ish.
 

Jaepheth

Platinum Member
Apr 29, 2006
2,572
25
91
Hmmm, I dunno aren't you concerned with the RFI effects of the typical rice rocket high energy ignition system? Will cross interleaved Reed-Solomon code suffice?

A piezo-resistive bridge silicon transducer coupled to a simple comparator is all you really need to switch a transistor to high to make the fleabag idiot light glow on the scooter's speedo!

But if you want a digital readout in kPa. Oh that works too. Don't forget these sensors are very sensitive to ambient temperature as well (reference instrumentation keeps them in controlled ovens). So you must also have a temperature sensor to offset this.

Oh and aren't the tires tube? Tube tires can develop static from deflection when rolling. That's another source of EMI that must be dealt with.

Show off


...

Good show.
 

ussfletcher

Platinum Member
Apr 16, 2005
2,569
2
81
Skimple i am not understanding you and we are to come up with the logic design for the warning light to come on with the specifications noted so thats why i am a bit confused.

Not to be too discouraging, but if you don't understand what he was attempting to tell you in the context of your question, then you need to spend some time with your teacher/professor going over the basics.
 

skimple

Golden Member
Feb 4, 2005
1,283
3
81
I "cheated" in my digital circuits class by doing some of the assignments with Altera instead of discrete gates like the rest of the class. Prof didn't mind. This was 2002-ish.

Using a $200 FPGA to perform 50 cents worth of logic?

Are you German?
 

NutBucket

Lifer
Aug 30, 2000
27,054
573
126
I had it available at work. Cost = $0. Thanks taxpayers

And these were antiquated parts even in 2002. Single 5V supply, 24 pin DIPs. PLDs, not FPGAs.

EDIT: My dad is Swiss...so close enough!
 
Last edited:

Ken g6

Programming Moderator, Elite Member
Moderator
Dec 11, 1999
16,360
4,067
75
Also do i need to use 2's complement to find the difference
Do you? If you use 2's complement, how many different kinds of outputs (that should light a warning light) could you have? Remember, you only need to find outputs where the absolute difference is > 3, a.k.a. >=4.

Now, I suggest you look at 1's complement. How many different kinds of outputs (that should light a warning light) could you have now? :sneaky:
 
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |