summaryrefslogtreecommitdiff
path: root/863/CH8/EX8.4/Ex8_4.txt
diff options
context:
space:
mode:
Diffstat (limited to '863/CH8/EX8.4/Ex8_4.txt')
-rw-r--r--863/CH8/EX8.4/Ex8_4.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/863/CH8/EX8.4/Ex8_4.txt b/863/CH8/EX8.4/Ex8_4.txt
new file mode 100644
index 000000000..660b51b2b
--- /dev/null
+++ b/863/CH8/EX8.4/Ex8_4.txt
@@ -0,0 +1,15 @@
+//Caption:Design a square wave generator using 7555 CMOS
+//Ex8.4
+clc;
+clear;
+close;
+V=5//Supply voltage(in volts)
+f1=1//Frequency(in khz)
+f2=3//Frequency(in khz)
+C=0.01//Capacitance(in micro farad)
+Ra=47//Choosed resistor(in kilo ohm)
+t1=1/(2*f1)
+t2=1/(2*f2)
+R=t1/(0.693*C)
+Rb=R-Ra
+disp(C,Rb,Ra,'Components required to design the circuit are Ra,Rb(in kilo ohm) and Capacitance(in micro farad)=') \ No newline at end of file