Strange behavior in circuit with Pull-Down Resistor #1041
RicardoKers
started this conversation in
General
Replies: 1 comment 1 reply
-
Your 2 bit row counter is not synchronous so the two bits from it dosen't change at the absolute same time, but does that with a little bit of delay between the two bits due to the propagation time in the gates. If you hook up Probes in Counter mode to your four rows you'll see that they are getting extra pulses caused by the four AND gates triggering on the false conditions while the counter bits are not in sync for a short while. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm finding strange behavior in circuit with Pull-Down Resistor. It is a decoder circuit for a 16-key matrix keyboard. The circuit is simple:
The objective is to show the number of the pressed key on the display.
The circuit works correctly for lines 2, 3 and 4 (switches 4 to F), but when I activate a key of the first line (switches 0 to 3) the circuit presents a strange behavior, storing in the display the number of the selected key in the first line and also the corresponding key number in the third line. For example, when I select switch 1, the display receives 1 and 9 alternately.
I don't know what I'm doing wrong.
LeTecMat.zip
Beta Was this translation helpful? Give feedback.
All reactions