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.

Recent content by JonathanRalph

  1. J

    Optocoupler to SCR gate interfacing

    Assuming that I have the right optocoupler, correct phase triggering, and additional smoothing capacitors in parallel with the load (the load is a DC motor by the way). Is the circuit feasible?
  2. J

    Optocoupler to SCR gate interfacing

    Is there a way to reduce the voltage going to the optocoupler's bjt? I only have the 4N25 opto and I may not acquire a more suitable optocoupler here. But I won't force it if there aren't any good suggestions.
  3. J

    Optocoupler to SCR gate interfacing

    Good day I would like to isolate the control side of the circuit from the power side by using an optocoupler. As shown in the picture below, I connected the anode of the scr to the collector of the optocoupler bjt and then connected the emitter to the gate (with a resistor and a schottky diode...
  4. J

    Shifting register data to another register

    Thanks for the corrections. These were really helpful and I will gladly consider them in future projects. For now, I'm just gonna go back and revamp my codes. Hopefully I can fix them in time. Best Regards, Jonathan
  5. J

    Shifting register data to another register

    We were taught logic gates and functions, but I think our teacher wasn't that enthusiastic to teach us further into verilog principles. We were left there to code without guidance. Kinda sad though...
  6. J

    Shifting register data to another register

    sorry about that. here is the code I managed to build as of now module Pattern(clock, one, zero, reset, bcd0, bcd1, bcd2, bcd3, bcd4, bcd5); // inputs input clock; input one; input zero; input reset; // outputs output [6:0] bcd0; output [6:0] bcd1; output [6:0] bcd2; output [6:0]...
  7. J

    Shifting register data to another register

    Thanks. I'll come back here again after doing some recoding. I'm still open to suggestions :)
  8. J

    Shifting register data to another register

    I was thinking of using a case statement to transfer each segment data one by one to avoid the risk of accidentally overwriting before data transfer. case (count) 4'b0000: seg5=seg4; 4'b0001: seg4=seg3; 4'b0010: seg3=seg2; 4'b0011: seg2=seg1; 4'b0100: seg1=seg0; 4'b0101: seg0=in...
  9. J

    Shifting register data to another register

    Thanks for the reply klaus. Actually, the result that I wanted is shown in the image below. The three boxes in the image are 7 segment displays, each with corresponding registers. I wanted that the data in each register would shift to the left each time a new input is given. However the code I...
  10. J

    Shifting register data to another register

    Hello all, Let's say I have two registers declared, namely register A and register B. Both can store 1 bit (binary) of data. If I have an input of 1, register A should store a value of 1. If I supplied an input of 1 again, the data that was recently stored to A should jump to B and the new...
  11. J

    [SOLVED] How to connect a center tapped transformer to two separate circuits

    I was planning on connecting the circuit this way: AD, BF, BG, and CH. Node E is connected to all other ground symbols drawn. I was hoping that the transformer would supply ac voltage to the bridge rectifier to feed the power supply and at the same time give the main circuit a sinusoidal wave...
  12. J

    [SOLVED] How to connect a center tapped transformer to two separate circuits

    Thanks for replying. I'm sure that the connections at the power supply circuit with a full wave rectifier is correct bit I'm not quite confident with the op amp circuit since I need to feed a sinusoidal waveform to it. The way it should be grounded got me confused. How should I separate the...
  13. J

    [SOLVED] How to connect a center tapped transformer to two separate circuits

    Hello everyone. So basically I was going to construct a circuit which is composed of an opamp precision half wave rectifier (bottom part of schematic) and its power supply (upper part of schematic). The left side of the schematic is a center tapped, 220Vac to 15Vac (both in RMS) 1A transformer...

Part and Inventory Search

Back
Top