-
Notifications
You must be signed in to change notification settings - Fork 22
/
Kick.erbui
189 lines (140 loc) · 3.57 KB
/
Kick.erbui
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
/*****************************************************************************
Kick.erbui
Copyright (c) 2020 Raphael DINGE
*Tab=3***********************************************************************/
module Kick {
board kivu12
material aluminum
header { label "KICK" }
exclude pins B1, P1
// Trigger ----------------------------------------------------------------
control trigger_button Button {
position 2hp, 95.3mm
style small, black
label "TRIG" {
positioning top
}
}
control trigger_led Led {
position 2hp, 102.1mm
style red
}
control trigger_gate GateIn {
position 2hp, 111mm
style knurled
}
// Clock ------------------------------------------------------------------
control clock_gate GateIn {
position 4hp, 111mm
style knurled
label "CLOCK"
}
// Mute -------------------------------------------------------------------
control mute_button Button {
position 5.3hp, 15.5mm
style small, black
label "B.MUTE"
}
line {
position 5.3hp, 15.5mm
position 6.75hp, 15.5mm
}
control mute_led Led {
position 6.75hp, 15.5mm
style red
}
// Space ------------------------------------------------------------------
control space_cv CvIn {
position 4hp, 96.5mm
style knurled
label "SPACE"
}
control space_trim Trim {
mode bipolar
position 4hp, 81.6mm
label "–/+" {
positioning top
}
}
line {
position 4hp, 85.8mm
position 4hp, 88.8mm
}
control space_pot Pot {
position 2hp, 17.1mm
style rogan, 2ps
label "SPACE"
}
// Body Pitch -------------------------------------------------------------
control body_pitch_cv CvIn {
position 6hp, 111mm
style knurled
label "B.PITCH"
}
control body_pitch_pot Pot {
position 28.4mm, 35.1mm
style rogan, 5ps
label "B.PITCH"
}
// Presence ---------------------------------------------------------------
control presence_cv CvIn {
position 8hp, 111mm
style knurled
label "PRES"
}
control presence_pot Pot {
position 49.4mm, 17.1mm
style rogan, 2ps
label "PRESENCE"
}
// Output -----------------------------------------------------------------
control audio_out AudioOut {
position 10hp, 111mm
style knurled
label "OUT"
}
// Transient Pitch --------------------------------------------------------
control transient_pitch_cv CvIn {
position 6hp, 96.5mm
style knurled
label "T.PITCH"
}
control transient_pitch_pot Pot {
position 11.7mm, 57.4mm
style rogan, 2ps
label "T.PITCH"
}
// Transient Morph --------------------------------------------------------
control transient_morph_cv CvIn {
position 8hp, 96.5mm
style knurled
label "MORPH"
}
control transient_morph_pot Pot {
position 35.5mm, 65.9mm
style rogan, 5ps
label "MORPH"
}
// Transient Freq ---------------------------------------------------------
control transient_freq_cv CvIn {
position 10hp, 96.5mm
style knurled
label "FREQ"
}
control transient_freq_trim Trim {
mode bipolar
position 10hp, 81.6mm
label "–/+" {
positioning top
}
}
line {
position 10hp, 85.8mm
position 10hp, 88.8mm
}
control transient_freq_pot Pot {
position 50.7mm, 46mm
style rogan, 2ps
label "FREQ"
}
}