Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to generate the 2.5v-0(5v)-2.5v pulses using MC?

Status
Not open for further replies.

manish12

Advanced Member level 3
Joined
Nov 21, 2006
Messages
983
Helped
66
Reputation
132
Reaction score
33
Trophy points
1,308
Activity points
6,117
A simple wave que?

How we can generate the 2.5v-0-2.5v pulse and 2.5v-5v-2.5v pulse using mc.
 

Re: A simple wave que?

To suppose the MCU is working on 5V, it is easy to implement with 2 resistors and 2 I/O (1 output, 1 bidirectional or 2 output)
Code:
   A ---+
        R
        +--- signal
        R
   B ---+
Here is one of patterns to general 0/2.5/5V signals.
Code:
signal = 0V   if A=0, B=HiZ
signal = 2.5V if A=0, B=1
signal = 5V   if A=1, B=HiZ
And another one as:
Code:
signal = 0V   if A=0, B=0
signal = 2.5V if A=1, B=0
signal = 5V   if A=1, B=1
FYR
 

Re: A simple wave que?

vcc ---+
R
A-----+--- signal
R
B ---+

signal = 2.5V if A=1, B=0
signal = 5V if A=1, B=1
signal = 0V if A=0, B=0

It is like that and tested .
It is world of MC any think can be possible.

If is so can you guess the reason.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top