diff options
Diffstat (limited to '863/CH8/EX8.1/Ex8_1.txt')
-rw-r--r-- | 863/CH8/EX8.1/Ex8_1.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/863/CH8/EX8.1/Ex8_1.txt b/863/CH8/EX8.1/Ex8_1.txt new file mode 100644 index 000000000..43bf65488 --- /dev/null +++ b/863/CH8/EX8.1/Ex8_1.txt @@ -0,0 +1,12 @@ +//Caption:Design a 555 monostable circuit
+//Ex8.1
+clc;
+clear;
+close;
+t=1//Pulse width(in ms)
+Vcc=15//Supply voltage(in volts)
+Ith=0.25//Threshold current(in micro Ampere)
+Ic=100*Ith
+R=Vcc*1000/(3*Ic)
+C=t*10^6/(1.1*R)
+disp(C,R,'Components required for designing 555 monostable circuit are R(in kilo ohm) and C(in pF)=')
\ No newline at end of file |