Sequential (18) Level trigger

.
.




.
.
It is level trigger, not edge trigger.
.
if (input voltage between 3V and 10V)
{
output = 1;
}
else
{
output = 0;
}
.
Consequently,
input = 3V or 4V or 5v or 6v or 7v or 8v or 9v or 10v,
output is still 1.
.

Serial input = edge trigger. . Left or right shift.
Parallel input = level trigger. . No left or right shift. . The output is ouput to the output line.
.
.

Comments