-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
458 lines (410 loc) · 16.4 KB
/
index.html
File metadata and controls
458 lines (410 loc) · 16.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
<html lang="en">
<!-- InstanceBegin template="/Templates/interactive.dwt" codeOutsideHTMLIsLocked="true" -->
<head>
<link rel="stylesheet" href="https://isocialpractice.github.io/interactive-html/css/style.css">
<link rel="icon" type="image/svg+xml" href="https://isocialpractice.github.io/interactive-html/img/favicon.svg">
<!-- InstanceBeginEditable name="head" -->
<title>555 Timer Tools | Interactive Calculators & Simulators</title>
<meta name="description" content="Comprehensive collection of 555 timer calculators and simulators. Learn about astable, monostable, and bistable modes with interactive visualizations.">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', 'Segoe UI', -apple-system, system-ui, sans-serif;
background: linear-gradient(180deg, rgb(250, 250, 255) 0%, rgb(245, 245, 255) 100%);
color: darkslateblue;
line-height: 1.6;
min-height: 100vh;
}
header {
background: linear-gradient(180deg, white 0%, lightskyblue 25%, darkblue 125%);
color: white;
box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
padding: 48px 0;
margin-bottom: 48px;
}
.header-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
text-align: center;
}
h1 {
font-size: 48px;
font-weight: 700;
margin-bottom: 16px;
text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.tagline {
font-size: 20px;
font-weight: 500;
opacity: 0.95;
}
.intro-section {
max-width: 1200px;
margin: 0 auto 48px;
padding: 0 24px;
}
.intro-card {
background: white;
border-radius: 16px;
padding: 32px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
border-left: 4px solid darkslateblue;
}
.intro-card h2 {
color: darkslateblue;
font-size: 24px;
margin-bottom: 16px;
}
.intro-card p {
color: #6C757D;
line-height: 1.8;
margin-bottom: 12px;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px 48px;
}
.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 24px;
margin-bottom: 48px;
}
.tool-card {
background: #FFFFFF;
border-radius: 16px;
padding: 28px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
border: 2px solid darkslateblue;
transition: all 0.3s;
text-decoration: none;
color: inherit;
display: block;
}
.tool-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 32px rgba(0, 123, 255, 0.25);
border-color: lightskyblue;
}
.tool-icon {
width: 64px;
height: 64px;
background: linear-gradient(180deg, lightskyblue 0%, darkblue 100%);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
margin-bottom: 20px;
color: #FFFFFF;
box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}
.tool-title {
color: #1A1A1A;
font-size: 20px;
font-weight: 700;
margin-bottom: 12px;
}
.tool-description {
color: #6C757D;
font-size: 15px;
line-height: 1.6;
margin-bottom: 16px;
}
.tool-features {
list-style: none;
margin: 16px 0;
padding-left: 0;
}
.tool-features li {
color: #495057;
font-size: 14px;
padding: 6px 0;
padding-left: 24px;
position: relative;
}
.tool-features li:before {
content: "✓";
position: absolute;
left: 0;
color: darkslateblue;
font-weight: bold;
}
.tool-badge {
display: inline-block;
background: linear-gradient(180deg, lightskyblue 0%, darkblue 100%);
color: white;
padding: 6px 14px;
border-radius: 8px;
font-size: 12px;
font-weight: 700;
margin-top: 12px;
}
.learning-section {
background: white;
border-radius: 16px;
padding: 32px;
margin-bottom: 48px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.learning-section h2 {
color: darkslateblue;
font-size: 28px;
margin-bottom: 24px;
}
.mode-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 24px;
}
.mode-card {
background: #b0c4de1f;
border-radius: 12px;
padding: 20px;
border: 1px solid darkslateblue;
}
.mode-card h3 {
color: darkslateblue;
font-size: 18px;
margin-bottom: 8px;
}
.mode-card p {
color: #6C757D;
font-size: 14px;
line-height: 1.6;
}
footer {
background: #FFFFFF;
border-top: 1px solid #E1E4E8;
padding: 32px 0;
margin-top: 48px;
text-align: center;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
color: #6C757D;
font-size: 14px;
}
.footer-links {
margin-top: 16px;
}
.footer-links a {
color: darkslateblue;
text-decoration: none;
margin: 0 12px;
font-weight: 500;
}
.footer-links a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
h1 {
font-size: 36px;
}
.tools-grid {
grid-template-columns: 1fr;
}
.mode-grid {
grid-template-columns: 1fr;
}
}
</style>
<!-- InstanceEndEditable -->
</head>
<body>
<nav class="site-nav">
<div class="nav-container">
<a href="https://isocialpractice.github.io/interactive-html/index.html" class="nav-brand">
<img src="https://isocialpractice.github.io/interactive-html/img/favicon.svg" alt="Electronics Tools" class="nav-logo">
<span>Interactive Tools</span>
</a>
<button class="nav-toggle" aria-label="Toggle menu" onclick="document.querySelector('.nav-menu').classList.toggle('active')">☰</button>
<ul class="nav-menu">
<li class="nav-item">
<a href="https://isocialpractice.github.io/interactive-html/index.html" class="nav-link"><span>🏠</span> <span>Home</span></a>
</li>
<li class="nav-item nav-dropdown">
<a href="https://isocialpractice.github.io/interactive-html/555/index.html" class="nav-link dropdown-toggle"><span>⏱️</span> <span>555 Timer</span></a>
<div class="dropdown-menu">
<a href="https://isocialpractice.github.io/interactive-html/555/555-timer-simulator.html" class="nav-link">Interactive Simulator</a>
<a href="https://isocialpractice.github.io/interactive-html/555/555-astable-calculator.html" class="nav-link">Astable Calculator</a>
<a href="https://isocialpractice.github.io/interactive-html/555/555-monostable-simulator.html" class="nav-link">Monostable Simulator</a>
<a href="https://isocialpractice.github.io/interactive-html/555/555-logic-simulator.html" class="nav-link">Clock Logic Simulator</a>
</div>
</li>
<li class="nav-item nav-dropdown">
<a href="https://isocialpractice.github.io/interactive-html/electronics/index.html#resistorTools" class="nav-link dropdown-toggle"><span>🔌</span> <span>Resistors</span></a>
<div class="dropdown-menu">
<a href="https://isocialpractice.github.io/interactive-html/electronics/electronics-resistor-calculator.html" class="nav-link">Color Code Calculator</a>
<a href="https://isocialpractice.github.io/interactive-html/electronics/electronics-parallel-resistor-calculator.html" class="nav-link">Parallel Calculator</a>
<a href="https://isocialpractice.github.io/interactive-html/electronics/electronics-fusible-resistor-calculator.html" class="nav-link">Fusible Calculator</a>
</div>
</li>
<li class="nav-item nav-dropdown">
<a href="https://isocialpractice.github.io/interactive-html/electronics/index.html#ledAndPowerTools" class="nav-link dropdown-toggle"><span>💡</span> <span>LED & Power</span></a>
<div class="dropdown-menu">
<a href="https://isocialpractice.github.io/interactive-html/electronics/electronics-ohms-law-calculator.html" class="nav-link">Ohm's Law</a>
<a href="https://isocialpractice.github.io/interactive-html/electronics/electronics-led-current-calculator.html" class="nav-link">LED Calculator</a>
<a href="https://isocialpractice.github.io/interactive-html/electronics/electronics-voltage-divider-calculator.html" class="nav-link">Voltage Divider</a>
<a href="https://isocialpractice.github.io/interactive-html/electronics/electronics-varistor-simulator.html" class="nav-link">Varistor Simulator</a>
</div>
</li>
<li class="nav-item nav-dropdown">
<a href="https://isocialpractice.github.io/interactive-html/electronics/index.html#components" class="nav-link dropdown-toggle"><span>🔧</span> <span>Components</span></a>
<div class="dropdown-menu">
<a href="https://isocialpractice.github.io/interactive-html/electronics/electronics-potentiometer-simulator.html" class="nav-link">Potentiometer Simulator</a>
<a href="https://isocialpractice.github.io/interactive-html/electronics/electronics-potentiometer-decoder.html" class="nav-link">Potentiometer Decoder</a>
<a href="https://isocialpractice.github.io/interactive-html/electronics/electronics-surface-mount-decoder.html" class="nav-link">SMD Decoder</a>
<a href="https://isocialpractice.github.io/interactive-html/electronics/electronics-breadboard-simulator.html" class="nav-link">Breadboard Simulator</a>
</div>
</li>
<li class="nav-item nav-dropdown">
<a href="https://isocialpractice.github.io/interactive-html/general/index.html" class="nav-link dropdown-toggle"><span>📐</span> <span>General</span></a>
<div class="dropdown-menu">
<a href="https://isocialpractice.github.io/interactive-html/general/general-volume-measurement.html" class="nav-link">Volume Measurement</a>
<a href="https://isocialpractice.github.io/interactive-html/general/general-area-and-perimeter-calculator.html" class="nav-link">Area & Perimeter</a>
</div>
</li>
<li class="nav-item nav-dropdown">
<a href="https://isocialpractice.github.io/interactive-html/computerScience/index.html" class="nav-link dropdown-toggle"><span>💻</span> <span>Computer Science</span></a>
<div class="dropdown-menu">
<a href="https://isocialpractice.github.io/interactive-html/computerScience/computerScience-number-converter.html" class="nav-link">Number Converter</a>
<a href="https://isocialpractice.github.io/interactive-html/computerScience/computerScience-logic-gates.html" class="nav-link">Logic Gates</a>
<a href="https://isocialpractice.github.io/interactive-html/computerScience/computerScience-stackPointer.html" class="nav-link">Stack Pointer Visualizer</a>
<a href="https://isocialpractice.github.io/interactive-html/computerScience/computerScience-binaryHexMemoryMapConverter.html" class="nav-link">Binary/Hex Memory Map</a>
<a href="https://isocialpractice.github.io/interactive-html/computerScience/computerScience-chipTimingWaveform.html" class="nav-link">Chip Timing Waveform</a>
</div>
</li>
</ul>
</div>
</nav>
<!-- InstanceBeginEditable name="page" -->
<header style="margin-top: -72px; padding-top: 96px;">
<div class="header-content">
<h1>⏱️ 555 Timer Tools</h1>
<p class="tagline">Master the classic 555 timer IC with interactive simulators and calculators</p>
</div>
</header>
<div class="intro-section">
<div class="intro-card">
<h2>About the 555 Timer</h2>
<p>The 555 timer IC is one of the most popular and versatile integrated circuits ever created. Since its introduction in 1972, it has been used in countless applications ranging from simple LED flashers to complex timing circuits and pulse generators.</p>
<p>Our interactive tools help you understand and design circuits using the 555 timer in its three primary operating modes: <strong>astable</strong> (oscillator), <strong>monostable</strong> (one-shot), and <strong>bistable</strong> (flip-flop).</p>
</div>
</div>
<div class="container">
<!-- Main Tools Grid -->
<div class="tools-grid">
<a href="555-timer-simulator.html" class="tool-card">
<div class="tool-icon">⚙️</div>
<h3 class="tool-title">555 Timer Interactive Simulator</h3>
<p class="tool-description">The most comprehensive 555 timer tool. Explore all three operating modes with real-time waveform visualization and dynamic component adjustments.</p>
<ul class="tool-features">
<li>Astable, monostable, and bistable modes</li>
<li>Real-time waveform visualization</li>
<li>Interactive component value adjustments</li>
<li>Pin-out diagram and circuit schematics</li>
<li>Educational explanations for each mode</li>
</ul>
<span class="tool-badge">🌟 Featured</span>
</a>
<a href="555-astable-calculator.html" class="tool-card">
<div class="tool-icon">📊</div>
<h3 class="tool-title">555 Astable Calculator</h3>
<p class="tool-description">Precision calculator for designing 555 astable oscillator circuits. Calculate frequency, duty cycle, and timing component values.</p>
<ul class="tool-features">
<li>Frequency range from Hz to MHz</li>
<li>Duty cycle calculation and adjustment</li>
<li>Component value recommendations</li>
<li>Timing period visualization</li>
<li>Standard resistor/capacitor suggestions</li>
</ul>
<span class="tool-badge">Calculator</span>
</a>
<a href="555-monostable-simulator.html" class="tool-card">
<div class="tool-icon">⏲️</div>
<h3 class="tool-title">555 Monostable Simulator</h3>
<p class="tool-description">Interactive one-shot pulse generator simulator. Perfect for learning and designing time-delay and pulse-width circuits.</p>
<ul class="tool-features">
<li>Adjustable pulse width timing</li>
<li>Trigger input visualization</li>
<li>Output waveform display</li>
<li>Component value calculator</li>
<li>Retriggering behavior simulation</li>
</ul>
<span class="tool-badge">Simulator</span>
</a>
<a href="555-logic-simulator.html" class="tool-card">
<div class="tool-icon">💻</div>
<h3 class="tool-title">Computer Clock Logic Simulator</h3>
<p class="tool-description">Advanced 555-based computer clock simulator with adjustable frequency and logic level visualization. Ideal for digital design education.</p>
<ul class="tool-features">
<li>Variable clock frequency control</li>
<li>Logic level visualization</li>
<li>Pulse train generation</li>
<li>Timing diagram display</li>
<li>Perfect for digital logic learning</li>
</ul>
<span class="tool-badge">Advanced</span>
</a>
</div>
<!-- Learning Section -->
<div class="learning-section">
<h2>Understanding 555 Timer Modes</h2>
<div class="mode-grid">
<div class="mode-card">
<h3>⚡ Astable Mode</h3>
<p><strong>Continuous oscillation mode</strong> - Generates a continuous rectangular waveform. Used in LED flashers, tone generators, and clock signals. Output frequency and duty cycle are controlled by two resistors and one capacitor.</p>
</div>
<div class="mode-card">
<h3>⏱️ Monostable Mode</h3>
<p><strong>One-shot pulse mode</strong> - Produces a single pulse of fixed duration when triggered. Perfect for time delays, touch switches, and pulse-width generation. Output timing is determined by one resistor and one capacitor.</p>
</div>
<div class="mode-card">
<h3>🔄 Bistable Mode</h3>
<p><strong>Flip-flop mode</strong> - Acts as a set-reset latch. Output toggles between high and low states based on trigger and reset inputs. Used in debounce circuits and simple memory applications.</p>
</div>
</div>
</div>
</div>
<footer>
<div class="footer-content">
<p>555 Timer Tools - Part of the Interactive Electronics Tools collection. Licensed under <a href="../LICENSE" style="color: darkslateblue; text-decoration: none; font-weight: 500;">MIT</a>.</p>
<div class="footer-links">
<a href="../index.html">← Back to All Tools</a>
<a href="https://github.com/isocialPractice/interactive-html" target="_blank">GitHub</a>
</div>
</div>
</footer>
<!-- InstanceEndEditable -->
<script>
// embeddedScript
// Debugging tool to adjust root link per localhost test, and github pages.
var href = location.href;
var pgHref = document.querySelectorAll("[href], [src]");
if (href.indexOf("localhost") > -1) {
let pgHrefLen = pgHref.length;
for (i = 0; i < pgHrefLen; i++) {
let curVal;
if (pgHref[i].hasAttribute("href")) {
curVal = pgHref[i].getAttribute("href");
pgHref[i].setAttribute("href", curVal.replace("https://isocialpractice.github.io/interactive-html", ""));
}
if (pgHref[i].hasAttribute("src")) {
curVal = pgHref[i].getAttribute("src");
pgHref[i].setAttribute("src", curVal.replace("https://isocialpractice.github.io/interactive-html", ""));
}
}
}
</script>
</body>
<!-- InstanceEnd --></html>