-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswitches.html
More file actions
80 lines (75 loc) · 2.66 KB
/
switches.html
File metadata and controls
80 lines (75 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Switches | easysynth</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>🎚️ Switches</h1>
<p class="subtitle">The gesture that chooses, the silence that waits</p>
</header>
<main>
<section>
<p>A switch is more than a break in continuity — it’s a decision. In synthesis, switches define states, route signals, and invite interaction. They’re the interface between intention and electricity.</p>
</section>
<section>
<h2 data-icon="🧠">What Is a Switch?</h2>
<p>A switch opens or closes an electrical circuit. It either allows current to flow or stops it — binary, yet expressive.</p>
<table>
<thead>
<tr>
<th>Type</th>
<th>Description</th>
<th>Synth Use</th>
</tr>
</thead>
<tbody>
<tr>
<td>SPST</td>
<td>Single Pole Single Throw — basic on/off</td>
<td>Power toggles, simple gates</td>
</tr>
<tr>
<td>SPDT</td>
<td>Single Pole Double Throw — one input, two outputs</td>
<td>Signal routing</td>
</tr>
<tr>
<td>DPDT</td>
<td>Double Pole Double Throw — two inputs, two outputs</td>
<td>Polarity reversal, complex switching</td>
</tr>
<tr>
<td>Momentary</td>
<td>Only active while pressed</td>
<td>Triggers, tap tempo</td>
</tr>
<tr>
<td>Latching</td>
<td>Maintains state until toggled</td>
<td>Mode selection, power</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2 data-icon="🎛️">Switches in Modular Synthesis</h2>
<ul>
<li><strong>Manual Gates</strong>: Trigger events by hand — rhythm becomes tactile.</li>
<li><strong>Routing Switches</strong>: Redirect CV or audio paths — patching without cables.</li>
<li><strong>Mode Selectors</strong>: Change behavior — from envelope shapes to oscillator ranges.</li>
</ul>
</section>
<section>
<h2 data-icon="🧩">Philosophical Footnote</h2>
<p>A switch is a metaphor for agency. It doesn’t generate signal — it permits it. In a world of constant flow, the ability to pause, redirect, or choose is power in itself.</p>
</section>
</main>
<footer>
<p>© 2025 easysynth.co.uk · <a href="index.html">Return to homepage</a></p>
</footer>
</body>
</html>