sequential (18) Level trigger

 https://wodewangzhishime.blogspot.com/2022/12/i-know-everythings.html

.
.
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.
.
.

Comments