tangled
alpha
login
or
join now
sachy.dev
/
strike-sensor
0
fork
atom
Repo for designs & driver for a TA7642 powered lightning detector
0
fork
atom
overview
issues
pulls
pipelines
Initial commit
sachy.dev
2 months ago
29a85672
+9676
5 changed files
expand all
collapse all
unified
split
.gitignore
README.md
kicad
strike-sensor.kicad_pcb
strike-sensor.kicad_pro
strike-sensor.kicad_sch
+40
.gitignore
···
1
1
+
**/strike-sensor-backups
2
2
+
/target
3
3
+
4
4
+
# Temporary files
5
5
+
*.000
6
6
+
*.bak
7
7
+
*.bck
8
8
+
*.kicad_pcb-bak
9
9
+
*.kicad_sch-bak
10
10
+
*-backups
11
11
+
*-cache*
12
12
+
*-bak
13
13
+
*-bak*
14
14
+
*~
15
15
+
~*
16
16
+
_autosave-*
17
17
+
\#auto_saved_files\#
18
18
+
*.tmp
19
19
+
*-save.pro
20
20
+
*-save.kicad_pcb
21
21
+
fp-info-cache
22
22
+
~*.lck
23
23
+
\#auto_saved_files#
24
24
+
25
25
+
# Netlist files (exported from Eeschema)
26
26
+
*.net
27
27
+
28
28
+
# Autorouter files (exported from Pcbnew)
29
29
+
*.dsn
30
30
+
*.ses
31
31
+
32
32
+
# Exported BOM files
33
33
+
*.xml
34
34
+
*.csv
35
35
+
36
36
+
# Archived Backups (KiCad 6.0)
37
37
+
**/*-backups/*.zip
38
38
+
39
39
+
# Local project settings
40
40
+
*.kicad_prl
+3
README.md
···
1
1
+
# Strike Sensor
2
2
+
3
3
+
Deets & License TBA
+4899
kicad/strike-sensor.kicad_pcb
···
1
1
+
(kicad_pcb
2
2
+
(version 20241229)
3
3
+
(generator "pcbnew")
4
4
+
(generator_version "9.0")
5
5
+
(general
6
6
+
(thickness 1.6)
7
7
+
(legacy_teardrops no)
8
8
+
)
9
9
+
(paper "A4")
10
10
+
(layers
11
11
+
(0 "F.Cu" signal)
12
12
+
(2 "B.Cu" signal)
13
13
+
(9 "F.Adhes" user "F.Adhesive")
14
14
+
(11 "B.Adhes" user "B.Adhesive")
15
15
+
(13 "F.Paste" user)
16
16
+
(15 "B.Paste" user)
17
17
+
(5 "F.SilkS" user "F.Silkscreen")
18
18
+
(7 "B.SilkS" user "B.Silkscreen")
19
19
+
(1 "F.Mask" user)
20
20
+
(3 "B.Mask" user)
21
21
+
(17 "Dwgs.User" user "User.Drawings")
22
22
+
(19 "Cmts.User" user "User.Comments")
23
23
+
(21 "Eco1.User" user "User.Eco1")
24
24
+
(23 "Eco2.User" user "User.Eco2")
25
25
+
(25 "Edge.Cuts" user)
26
26
+
(27 "Margin" user)
27
27
+
(31 "F.CrtYd" user "F.Courtyard")
28
28
+
(29 "B.CrtYd" user "B.Courtyard")
29
29
+
(35 "F.Fab" user)
30
30
+
(33 "B.Fab" user)
31
31
+
(39 "User.1" user)
32
32
+
(41 "User.2" user)
33
33
+
(43 "User.3" user)
34
34
+
(45 "User.4" user)
35
35
+
)
36
36
+
(setup
37
37
+
(stackup
38
38
+
(layer "F.SilkS"
39
39
+
(type "Top Silk Screen")
40
40
+
)
41
41
+
(layer "F.Paste"
42
42
+
(type "Top Solder Paste")
43
43
+
)
44
44
+
(layer "F.Mask"
45
45
+
(type "Top Solder Mask")
46
46
+
(thickness 0.01)
47
47
+
)
48
48
+
(layer "F.Cu"
49
49
+
(type "copper")
50
50
+
(thickness 0.035)
51
51
+
)
52
52
+
(layer "dielectric 1"
53
53
+
(type "core")
54
54
+
(thickness 1.51)
55
55
+
(material "FR4")
56
56
+
(epsilon_r 4.5)
57
57
+
(loss_tangent 0.02)
58
58
+
)
59
59
+
(layer "B.Cu"
60
60
+
(type "copper")
61
61
+
(thickness 0.035)
62
62
+
)
63
63
+
(layer "B.Mask"
64
64
+
(type "Bottom Solder Mask")
65
65
+
(thickness 0.01)
66
66
+
)
67
67
+
(layer "B.Paste"
68
68
+
(type "Bottom Solder Paste")
69
69
+
)
70
70
+
(layer "B.SilkS"
71
71
+
(type "Bottom Silk Screen")
72
72
+
)
73
73
+
(copper_finish "None")
74
74
+
(dielectric_constraints no)
75
75
+
)
76
76
+
(pad_to_mask_clearance 0)
77
77
+
(allow_soldermask_bridges_in_footprints no)
78
78
+
(tenting front back)
79
79
+
(pcbplotparams
80
80
+
(layerselection 0x00000000_00000000_55555555_5755f5ff)
81
81
+
(plot_on_all_layers_selection 0x00000000_00000000_00000000_00000000)
82
82
+
(disableapertmacros no)
83
83
+
(usegerberextensions no)
84
84
+
(usegerberattributes yes)
85
85
+
(usegerberadvancedattributes yes)
86
86
+
(creategerberjobfile yes)
87
87
+
(dashed_line_dash_ratio 12.000000)
88
88
+
(dashed_line_gap_ratio 3.000000)
89
89
+
(svgprecision 4)
90
90
+
(plotframeref no)
91
91
+
(mode 1)
92
92
+
(useauxorigin no)
93
93
+
(hpglpennumber 1)
94
94
+
(hpglpenspeed 20)
95
95
+
(hpglpendiameter 15.000000)
96
96
+
(pdf_front_fp_property_popups yes)
97
97
+
(pdf_back_fp_property_popups yes)
98
98
+
(pdf_metadata yes)
99
99
+
(pdf_single_document no)
100
100
+
(dxfpolygonmode yes)
101
101
+
(dxfimperialunits yes)
102
102
+
(dxfusepcbnewfont yes)
103
103
+
(psnegative no)
104
104
+
(psa4output no)
105
105
+
(plot_black_and_white yes)
106
106
+
(sketchpadsonfab no)
107
107
+
(plotpadnumbers no)
108
108
+
(hidednponfab no)
109
109
+
(sketchdnponfab yes)
110
110
+
(crossoutdnponfab yes)
111
111
+
(subtractmaskfromsilk no)
112
112
+
(outputformat 1)
113
113
+
(mirror no)
114
114
+
(drillshape 1)
115
115
+
(scaleselection 1)
116
116
+
(outputdirectory "")
117
117
+
)
118
118
+
)
119
119
+
(net 0 "")
120
120
+
(net 1 "Net-(C1-Pad1)")
121
121
+
(net 2 "GND")
122
122
+
(net 3 "Net-(C2-Pad1)")
123
123
+
(net 4 "Net-(D2-A)")
124
124
+
(net 5 "OUT")
125
125
+
(net 6 "Net-(C4-Pad1)")
126
126
+
(net 7 "PWM")
127
127
+
(net 8 "Net-(D1-K)")
128
128
+
(net 9 "ANT_IN")
129
129
+
(net 10 "ANT_GND")
130
130
+
(footprint "Capacitor_SMD:C_0603_1608Metric"
131
131
+
(layer "F.Cu")
132
132
+
(uuid "06a227e0-8ef6-499b-9605-de5444fa903b")
133
133
+
(at 138 95 180)
134
134
+
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
135
135
+
(tags "capacitor")
136
136
+
(property "Reference" "C4"
137
137
+
(at 0 1.5 0)
138
138
+
(layer "F.SilkS")
139
139
+
(uuid "267de5b7-e4eb-4edc-8633-6aa60020d25a")
140
140
+
(effects
141
141
+
(font
142
142
+
(size 1 1)
143
143
+
(thickness 0.15)
144
144
+
)
145
145
+
)
146
146
+
)
147
147
+
(property "Value" "100nF"
148
148
+
(at 0 1.43 0)
149
149
+
(layer "F.Fab")
150
150
+
(uuid "de62b018-b837-4e19-9462-b174d08f67f4")
151
151
+
(effects
152
152
+
(font
153
153
+
(size 1 1)
154
154
+
(thickness 0.15)
155
155
+
)
156
156
+
)
157
157
+
)
158
158
+
(property "Datasheet" "~"
159
159
+
(at 0 0 0)
160
160
+
(layer "F.Fab")
161
161
+
(hide yes)
162
162
+
(uuid "96c832f6-9ca8-4cc5-a652-6b3392933d3f")
163
163
+
(effects
164
164
+
(font
165
165
+
(size 1.27 1.27)
166
166
+
(thickness 0.15)
167
167
+
)
168
168
+
)
169
169
+
)
170
170
+
(property "Description" "Unpolarized capacitor"
171
171
+
(at 0 0 0)
172
172
+
(layer "F.Fab")
173
173
+
(hide yes)
174
174
+
(uuid "c436d8db-e05e-453a-a32d-a5467c38b182")
175
175
+
(effects
176
176
+
(font
177
177
+
(size 1.27 1.27)
178
178
+
(thickness 0.15)
179
179
+
)
180
180
+
)
181
181
+
)
182
182
+
(property ki_fp_filters "C_*")
183
183
+
(path "/d74971cb-66b1-441f-b721-87219695adf9")
184
184
+
(sheetname "/")
185
185
+
(sheetfile "strike-sensor.kicad_sch")
186
186
+
(attr smd)
187
187
+
(fp_line
188
188
+
(start -0.14058 0.51)
189
189
+
(end 0.14058 0.51)
190
190
+
(stroke
191
191
+
(width 0.12)
192
192
+
(type solid)
193
193
+
)
194
194
+
(layer "F.SilkS")
195
195
+
(uuid "e62323dc-3f5a-458b-aed2-8a008b3495b9")
196
196
+
)
197
197
+
(fp_line
198
198
+
(start -0.14058 -0.51)
199
199
+
(end 0.14058 -0.51)
200
200
+
(stroke
201
201
+
(width 0.12)
202
202
+
(type solid)
203
203
+
)
204
204
+
(layer "F.SilkS")
205
205
+
(uuid "4fd687a0-48b2-4c66-b3dc-8d2c5782b860")
206
206
+
)
207
207
+
(fp_rect
208
208
+
(start -1.48 -0.73)
209
209
+
(end 1.48 0.73)
210
210
+
(stroke
211
211
+
(width 0.05)
212
212
+
(type solid)
213
213
+
)
214
214
+
(fill no)
215
215
+
(layer "F.CrtYd")
216
216
+
(uuid "95d9fe80-3a74-4e18-aec8-30679f5d7188")
217
217
+
)
218
218
+
(fp_rect
219
219
+
(start -0.8 -0.4)
220
220
+
(end 0.8 0.4)
221
221
+
(stroke
222
222
+
(width 0.1)
223
223
+
(type solid)
224
224
+
)
225
225
+
(fill no)
226
226
+
(layer "F.Fab")
227
227
+
(uuid "b1b7a9d0-2214-4a57-a47b-360879b4157b")
228
228
+
)
229
229
+
(fp_text user "${REFERENCE}"
230
230
+
(at 0 0 0)
231
231
+
(layer "F.Fab")
232
232
+
(uuid "e00664a6-fef0-4451-9579-ad8db95b82f4")
233
233
+
(effects
234
234
+
(font
235
235
+
(size 0.4 0.4)
236
236
+
(thickness 0.06)
237
237
+
)
238
238
+
)
239
239
+
)
240
240
+
(pad "1" smd roundrect
241
241
+
(at -0.775 0 180)
242
242
+
(size 0.9 0.95)
243
243
+
(layers "F.Cu" "F.Mask" "F.Paste")
244
244
+
(roundrect_rratio 0.25)
245
245
+
(net 6 "Net-(C4-Pad1)")
246
246
+
(pintype "passive")
247
247
+
(uuid "3b773b68-7b85-4f5f-8d72-7d4acb5452d0")
248
248
+
)
249
249
+
(pad "2" smd roundrect
250
250
+
(at 0.775 0 180)
251
251
+
(size 0.9 0.95)
252
252
+
(layers "F.Cu" "F.Mask" "F.Paste")
253
253
+
(roundrect_rratio 0.25)
254
254
+
(net 9 "ANT_IN")
255
255
+
(pintype "passive")
256
256
+
(uuid "3dd8ed84-a150-4ca9-a644-265781073c6b")
257
257
+
)
258
258
+
(embedded_fonts no)
259
259
+
(model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step"
260
260
+
(offset
261
261
+
(xyz 0 0 0)
262
262
+
)
263
263
+
(scale
264
264
+
(xyz 1 1 1)
265
265
+
)
266
266
+
(rotate
267
267
+
(xyz 0 0 0)
268
268
+
)
269
269
+
)
270
270
+
)
271
271
+
(footprint "MountingHole:MountingHole_2.5mm"
272
272
+
(layer "F.Cu")
273
273
+
(uuid "0df1aa52-136b-463b-ae61-b58f35e6d34c")
274
274
+
(at 130.5 85)
275
275
+
(descr "Mounting Hole 2.5mm, no annular, generated by kicad-footprint-generator mountinghole.py")
276
276
+
(tags "mountinghole")
277
277
+
(property "Reference" "REF1"
278
278
+
(at 0 3.5 0)
279
279
+
(layer "F.SilkS")
280
280
+
(uuid "73310d26-ffd0-4fa9-ab98-598feb429a1a")
281
281
+
(effects
282
282
+
(font
283
283
+
(size 1 1)
284
284
+
(thickness 0.15)
285
285
+
)
286
286
+
)
287
287
+
)
288
288
+
(property "Value" "MountingHole_2.5mm"
289
289
+
(at 0 3.45 0)
290
290
+
(layer "F.Fab")
291
291
+
(uuid "c376eeb5-e611-41f0-afef-ac2f2053ac81")
292
292
+
(effects
293
293
+
(font
294
294
+
(size 1 1)
295
295
+
(thickness 0.15)
296
296
+
)
297
297
+
)
298
298
+
)
299
299
+
(property "Datasheet" ""
300
300
+
(at 0 0 0)
301
301
+
(layer "F.Fab")
302
302
+
(hide yes)
303
303
+
(uuid "cb2c8f0c-71c6-4a1a-96b1-cc5a3956af6e")
304
304
+
(effects
305
305
+
(font
306
306
+
(size 1.27 1.27)
307
307
+
(thickness 0.15)
308
308
+
)
309
309
+
)
310
310
+
)
311
311
+
(property "Description" ""
312
312
+
(at 0 0 0)
313
313
+
(layer "F.Fab")
314
314
+
(hide yes)
315
315
+
(uuid "64b36356-a0a5-476b-b1ec-b591ad0ff6ab")
316
316
+
(effects
317
317
+
(font
318
318
+
(size 1.27 1.27)
319
319
+
(thickness 0.15)
320
320
+
)
321
321
+
)
322
322
+
)
323
323
+
(attr exclude_from_pos_files exclude_from_bom)
324
324
+
(fp_circle
325
325
+
(center 0 0)
326
326
+
(end 2.5 0)
327
327
+
(stroke
328
328
+
(width 0.15)
329
329
+
(type solid)
330
330
+
)
331
331
+
(fill no)
332
332
+
(layer "Cmts.User")
333
333
+
(uuid "356d3893-697a-4cf0-88b4-842a7156ef19")
334
334
+
)
335
335
+
(fp_circle
336
336
+
(center 0 0)
337
337
+
(end 2.75 0)
338
338
+
(stroke
339
339
+
(width 0.05)
340
340
+
(type solid)
341
341
+
)
342
342
+
(fill no)
343
343
+
(layer "F.CrtYd")
344
344
+
(uuid "e47fc051-6903-4a7b-8550-b630accfcf00")
345
345
+
)
346
346
+
(fp_text user "${REFERENCE}"
347
347
+
(at 0 0 0)
348
348
+
(layer "F.Fab")
349
349
+
(uuid "18914cd1-30ae-4d83-89c5-b19948a25207")
350
350
+
(effects
351
351
+
(font
352
352
+
(size 1 1)
353
353
+
(thickness 0.15)
354
354
+
)
355
355
+
)
356
356
+
)
357
357
+
(pad "" np_thru_hole circle
358
358
+
(at 0 0)
359
359
+
(size 2.5 2.5)
360
360
+
(drill 2.5)
361
361
+
(layers "*.Cu" "*.Mask")
362
362
+
(uuid "ffae8a59-111c-4fce-8973-9c186bfa08df")
363
363
+
)
364
364
+
(embedded_fonts no)
365
365
+
)
366
366
+
(footprint "Resistor_SMD:R_0603_1608Metric"
367
367
+
(layer "F.Cu")
368
368
+
(uuid "11c2ced6-3cb7-4827-9802-e21e14f99ab3")
369
369
+
(at 135.5 90 -90)
370
370
+
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
371
371
+
(tags "resistor")
372
372
+
(property "Reference" "R5"
373
373
+
(at 0 2 0)
374
374
+
(layer "F.SilkS")
375
375
+
(uuid "7269084c-e4d4-49e0-a2c0-8f4eaf2a48ff")
376
376
+
(effects
377
377
+
(font
378
378
+
(size 1 1)
379
379
+
(thickness 0.15)
380
380
+
)
381
381
+
)
382
382
+
)
383
383
+
(property "Value" "100k"
384
384
+
(at 0 1.43 90)
385
385
+
(layer "F.Fab")
386
386
+
(uuid "e31f6219-6055-4ff3-b3d8-d0473d3f3d0d")
387
387
+
(effects
388
388
+
(font
389
389
+
(size 1 1)
390
390
+
(thickness 0.15)
391
391
+
)
392
392
+
)
393
393
+
)
394
394
+
(property "Datasheet" "~"
395
395
+
(at 0 0 90)
396
396
+
(layer "F.Fab")
397
397
+
(hide yes)
398
398
+
(uuid "9518afe0-4884-4c6d-acfb-a729364042f4")
399
399
+
(effects
400
400
+
(font
401
401
+
(size 1.27 1.27)
402
402
+
(thickness 0.15)
403
403
+
)
404
404
+
)
405
405
+
)
406
406
+
(property "Description" "Resistor"
407
407
+
(at 0 0 90)
408
408
+
(layer "F.Fab")
409
409
+
(hide yes)
410
410
+
(uuid "8cdae47a-b2fc-49db-966c-d592c7007a46")
411
411
+
(effects
412
412
+
(font
413
413
+
(size 1.27 1.27)
414
414
+
(thickness 0.15)
415
415
+
)
416
416
+
)
417
417
+
)
418
418
+
(property ki_fp_filters "R_*")
419
419
+
(path "/541ea003-c811-46ed-8c1b-4293ef78bded")
420
420
+
(sheetname "/")
421
421
+
(sheetfile "strike-sensor.kicad_sch")
422
422
+
(attr smd)
423
423
+
(fp_line
424
424
+
(start -0.237258 0.5225)
425
425
+
(end 0.237258 0.5225)
426
426
+
(stroke
427
427
+
(width 0.12)
428
428
+
(type solid)
429
429
+
)
430
430
+
(layer "F.SilkS")
431
431
+
(uuid "04a53324-5eb7-4d25-b5fd-739374d12901")
432
432
+
)
433
433
+
(fp_line
434
434
+
(start -0.237258 -0.5225)
435
435
+
(end 0.237258 -0.5225)
436
436
+
(stroke
437
437
+
(width 0.12)
438
438
+
(type solid)
439
439
+
)
440
440
+
(layer "F.SilkS")
441
441
+
(uuid "d12f71be-4dd0-415b-8b5b-4c9a3278fda2")
442
442
+
)
443
443
+
(fp_rect
444
444
+
(start -1.48 -0.73)
445
445
+
(end 1.48 0.73)
446
446
+
(stroke
447
447
+
(width 0.05)
448
448
+
(type solid)
449
449
+
)
450
450
+
(fill no)
451
451
+
(layer "F.CrtYd")
452
452
+
(uuid "bca1106a-5d81-4193-962f-98572c9603dd")
453
453
+
)
454
454
+
(fp_rect
455
455
+
(start -0.8 -0.4125)
456
456
+
(end 0.8 0.4125)
457
457
+
(stroke
458
458
+
(width 0.1)
459
459
+
(type solid)
460
460
+
)
461
461
+
(fill no)
462
462
+
(layer "F.Fab")
463
463
+
(uuid "9ba55ba8-31da-4c16-a0bd-5219eaac5f0c")
464
464
+
)
465
465
+
(fp_text user "${REFERENCE}"
466
466
+
(at 0 0 90)
467
467
+
(layer "F.Fab")
468
468
+
(uuid "fbcf3872-4386-4b72-9f2e-a2614a465243")
469
469
+
(effects
470
470
+
(font
471
471
+
(size 0.4 0.4)
472
472
+
(thickness 0.06)
473
473
+
)
474
474
+
)
475
475
+
)
476
476
+
(pad "1" smd roundrect
477
477
+
(at -0.825 0 270)
478
478
+
(size 0.8 0.95)
479
479
+
(layers "F.Cu" "F.Mask" "F.Paste")
480
480
+
(roundrect_rratio 0.25)
481
481
+
(net 5 "OUT")
482
482
+
(pintype "passive")
483
483
+
(uuid "b1d83fb3-211f-415a-b3a7-9fc3e319843a")
484
484
+
)
485
485
+
(pad "2" smd roundrect
486
486
+
(at 0.825 0 270)
487
487
+
(size 0.8 0.95)
488
488
+
(layers "F.Cu" "F.Mask" "F.Paste")
489
489
+
(roundrect_rratio 0.25)
490
490
+
(net 6 "Net-(C4-Pad1)")
491
491
+
(pintype "passive")
492
492
+
(uuid "4d35d33e-71cc-4bfb-b3df-9e5e194c1c41")
493
493
+
)
494
494
+
(embedded_fonts no)
495
495
+
(model "${KICAD9_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
496
496
+
(offset
497
497
+
(xyz 0 0 0)
498
498
+
)
499
499
+
(scale
500
500
+
(xyz 1 1 1)
501
501
+
)
502
502
+
(rotate
503
503
+
(xyz 0 0 0)
504
504
+
)
505
505
+
)
506
506
+
)
507
507
+
(footprint "Capacitor_SMD:C_0603_1608Metric"
508
508
+
(layer "F.Cu")
509
509
+
(uuid "1227ec50-f797-4176-8374-6d62ed8c350b")
510
510
+
(at 147 96.5)
511
511
+
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
512
512
+
(tags "capacitor")
513
513
+
(property "Reference" "C3"
514
514
+
(at -1 -1.5 0)
515
515
+
(layer "F.SilkS")
516
516
+
(uuid "7db0e64a-38e0-4f5b-96da-91125c36ba82")
517
517
+
(effects
518
518
+
(font
519
519
+
(size 1 1)
520
520
+
(thickness 0.15)
521
521
+
)
522
522
+
)
523
523
+
)
524
524
+
(property "Value" "100nF"
525
525
+
(at 0 1.43 0)
526
526
+
(layer "F.Fab")
527
527
+
(uuid "7589a8c4-38a5-48ff-a3f8-100d93926cb0")
528
528
+
(effects
529
529
+
(font
530
530
+
(size 1 1)
531
531
+
(thickness 0.15)
532
532
+
)
533
533
+
)
534
534
+
)
535
535
+
(property "Datasheet" "~"
536
536
+
(at 0 0 0)
537
537
+
(layer "F.Fab")
538
538
+
(hide yes)
539
539
+
(uuid "5f856d99-4f12-41be-b459-03e2f0a1f5a4")
540
540
+
(effects
541
541
+
(font
542
542
+
(size 1.27 1.27)
543
543
+
(thickness 0.15)
544
544
+
)
545
545
+
)
546
546
+
)
547
547
+
(property "Description" "Unpolarized capacitor"
548
548
+
(at 0 0 0)
549
549
+
(layer "F.Fab")
550
550
+
(hide yes)
551
551
+
(uuid "21cf81a5-a7ae-41c6-b9a7-5a8e0c7da8af")
552
552
+
(effects
553
553
+
(font
554
554
+
(size 1.27 1.27)
555
555
+
(thickness 0.15)
556
556
+
)
557
557
+
)
558
558
+
)
559
559
+
(property ki_fp_filters "C_*")
560
560
+
(path "/997e48d1-4b4e-4528-a5d2-0a4d1e133219")
561
561
+
(sheetname "/")
562
562
+
(sheetfile "strike-sensor.kicad_sch")
563
563
+
(attr smd)
564
564
+
(fp_line
565
565
+
(start -0.14058 -0.51)
566
566
+
(end 0.14058 -0.51)
567
567
+
(stroke
568
568
+
(width 0.12)
569
569
+
(type solid)
570
570
+
)
571
571
+
(layer "F.SilkS")
572
572
+
(uuid "930372f3-69a7-4230-96b4-a545e34e7521")
573
573
+
)
574
574
+
(fp_line
575
575
+
(start -0.14058 0.51)
576
576
+
(end 0.14058 0.51)
577
577
+
(stroke
578
578
+
(width 0.12)
579
579
+
(type solid)
580
580
+
)
581
581
+
(layer "F.SilkS")
582
582
+
(uuid "1bb8a641-e7c8-4bc0-b878-4ef349e3043b")
583
583
+
)
584
584
+
(fp_rect
585
585
+
(start -1.48 -0.73)
586
586
+
(end 1.48 0.73)
587
587
+
(stroke
588
588
+
(width 0.05)
589
589
+
(type solid)
590
590
+
)
591
591
+
(fill no)
592
592
+
(layer "F.CrtYd")
593
593
+
(uuid "821046eb-a1f5-48d7-b12f-6759e1b24a24")
594
594
+
)
595
595
+
(fp_rect
596
596
+
(start -0.8 -0.4)
597
597
+
(end 0.8 0.4)
598
598
+
(stroke
599
599
+
(width 0.1)
600
600
+
(type solid)
601
601
+
)
602
602
+
(fill no)
603
603
+
(layer "F.Fab")
604
604
+
(uuid "ac616215-fa97-4b5f-9f6c-91b63701e230")
605
605
+
)
606
606
+
(fp_text user "${REFERENCE}"
607
607
+
(at 0 0 0)
608
608
+
(layer "F.Fab")
609
609
+
(uuid "ce1ce2b4-3a86-4b2a-b8d5-3872d951f96e")
610
610
+
(effects
611
611
+
(font
612
612
+
(size 0.4 0.4)
613
613
+
(thickness 0.06)
614
614
+
)
615
615
+
)
616
616
+
)
617
617
+
(pad "1" smd roundrect
618
618
+
(at -0.775 0)
619
619
+
(size 0.9 0.95)
620
620
+
(layers "F.Cu" "F.Mask" "F.Paste")
621
621
+
(roundrect_rratio 0.25)
622
622
+
(net 4 "Net-(D2-A)")
623
623
+
(pintype "passive")
624
624
+
(uuid "43e8a68c-3011-48d3-8699-f11ee2ab4ce5")
625
625
+
)
626
626
+
(pad "2" smd roundrect
627
627
+
(at 0.775 0)
628
628
+
(size 0.9 0.95)
629
629
+
(layers "F.Cu" "F.Mask" "F.Paste")
630
630
+
(roundrect_rratio 0.25)
631
631
+
(net 5 "OUT")
632
632
+
(pintype "passive")
633
633
+
(uuid "91116b3d-fdb8-46bd-9629-5ec134289011")
634
634
+
)
635
635
+
(embedded_fonts no)
636
636
+
(model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step"
637
637
+
(offset
638
638
+
(xyz 0 0 0)
639
639
+
)
640
640
+
(scale
641
641
+
(xyz 1 1 1)
642
642
+
)
643
643
+
(rotate
644
644
+
(xyz 0 0 0)
645
645
+
)
646
646
+
)
647
647
+
)
648
648
+
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal"
649
649
+
(layer "F.Cu")
650
650
+
(uuid "1b559c70-3e40-4ddf-8ba4-900e54b1481f")
651
651
+
(at 131 93.5 -90)
652
652
+
(descr "Terminal Block Phoenix MPT-0,5-2-2.54, 2 pins, pitch 2.54mm, size 5.54x6.2mm, drill diameter 1.1mm, pad diameter 2.2mm, http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix")
653
653
+
(tags "THT Terminal Block Phoenix MPT-0,5-2-2.54 pitch 2.54mm size 5.54x6.2mm drill 1.1mm pad 2.2mm")
654
654
+
(property "Reference" "J2"
655
655
+
(at -2.725 0.2825 180)
656
656
+
(layer "F.SilkS")
657
657
+
(uuid "281d2854-447d-40a3-8c2a-a87f4f87329a")
658
658
+
(effects
659
659
+
(font
660
660
+
(size 1 1)
661
661
+
(thickness 0.15)
662
662
+
)
663
663
+
)
664
664
+
)
665
665
+
(property "Value" "Screw_Terminal_01x02"
666
666
+
(at 1.27 4.22 270)
667
667
+
(layer "F.Fab")
668
668
+
(uuid "86189471-5e9c-4ace-bd55-8c28ddd3bde2")
669
669
+
(effects
670
670
+
(font
671
671
+
(size 1 1)
672
672
+
(thickness 0.15)
673
673
+
)
674
674
+
)
675
675
+
)
676
676
+
(property "Datasheet" "~"
677
677
+
(at 0 0 270)
678
678
+
(layer "F.Fab")
679
679
+
(hide yes)
680
680
+
(uuid "2e044fc4-fe08-49f1-8a11-5a6ac0facc5f")
681
681
+
(effects
682
682
+
(font
683
683
+
(size 1.27 1.27)
684
684
+
(thickness 0.15)
685
685
+
)
686
686
+
)
687
687
+
)
688
688
+
(property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"
689
689
+
(at 0 0 270)
690
690
+
(layer "F.Fab")
691
691
+
(hide yes)
692
692
+
(uuid "80552413-859f-4c64-a261-e10f9809d7a2")
693
693
+
(effects
694
694
+
(font
695
695
+
(size 1.27 1.27)
696
696
+
(thickness 0.15)
697
697
+
)
698
698
+
)
699
699
+
)
700
700
+
(property ki_fp_filters "TerminalBlock*:*")
701
701
+
(path "/92895083-61b0-4ee6-ba51-eeeb2e79e54e")
702
702
+
(sheetname "/")
703
703
+
(sheetfile "strike-sensor.kicad_sch")
704
704
+
(attr through_hole)
705
705
+
(fp_line
706
706
+
(start -1.62 3.22)
707
707
+
(end -1.62 -3.22)
708
708
+
(stroke
709
709
+
(width 0.12)
710
710
+
(type solid)
711
711
+
)
712
712
+
(layer "F.SilkS")
713
713
+
(uuid "caac189c-29d6-4d61-b9e4-06ab58816d98")
714
714
+
)
715
715
+
(fp_line
716
716
+
(start -1.03 3.22)
717
717
+
(end -1.62 3.22)
718
718
+
(stroke
719
719
+
(width 0.12)
720
720
+
(type solid)
721
721
+
)
722
722
+
(layer "F.SilkS")
723
723
+
(uuid "c35927ca-23e9-4312-9e03-9aaed7100772")
724
724
+
)
725
725
+
(fp_line
726
726
+
(start 1.51 3.22)
727
727
+
(end 1.03 3.22)
728
728
+
(stroke
729
729
+
(width 0.12)
730
730
+
(type solid)
731
731
+
)
732
732
+
(layer "F.SilkS")
733
733
+
(uuid "180e9d1d-efd2-43a7-817d-c30867363362")
734
734
+
)
735
735
+
(fp_line
736
736
+
(start 4.16 3.22)
737
737
+
(end 3.57 3.22)
738
738
+
(stroke
739
739
+
(width 0.12)
740
740
+
(type solid)
741
741
+
)
742
742
+
(layer "F.SilkS")
743
743
+
(uuid "78790b4b-f15c-4cff-935c-2c6f7994f3e4")
744
744
+
)
745
745
+
(fp_line
746
746
+
(start -1.62 2.6)
747
747
+
(end -1.03 2.6)
748
748
+
(stroke
749
749
+
(width 0.12)
750
750
+
(type solid)
751
751
+
)
752
752
+
(layer "F.SilkS")
753
753
+
(uuid "c697a1cd-29e1-4b8b-b816-516860f708c2")
754
754
+
)
755
755
+
(fp_line
756
756
+
(start 1.03 2.6)
757
757
+
(end 1.51 2.6)
758
758
+
(stroke
759
759
+
(width 0.12)
760
760
+
(type solid)
761
761
+
)
762
762
+
(layer "F.SilkS")
763
763
+
(uuid "c3d098ef-fb7f-49cf-a567-299717d3c8dc")
764
764
+
)
765
765
+
(fp_line
766
766
+
(start 3.57 2.6)
767
767
+
(end 4.16 2.6)
768
768
+
(stroke
769
769
+
(width 0.12)
770
770
+
(type solid)
771
771
+
)
772
772
+
(layer "F.SilkS")
773
773
+
(uuid "899344a3-00c1-45e7-b6b5-95188787d677")
774
774
+
)
775
775
+
(fp_line
776
776
+
(start -1.62 -2.7)
777
777
+
(end 4.16 -2.7)
778
778
+
(stroke
779
779
+
(width 0.12)
780
780
+
(type solid)
781
781
+
)
782
782
+
(layer "F.SilkS")
783
783
+
(uuid "a972b9bb-4db1-46c1-afa0-8970d0e0e1b4")
784
784
+
)
785
785
+
(fp_line
786
786
+
(start -1.62 -3.22)
787
787
+
(end 4.16 -3.22)
788
788
+
(stroke
789
789
+
(width 0.12)
790
790
+
(type solid)
791
791
+
)
792
792
+
(layer "F.SilkS")
793
793
+
(uuid "48681f11-b2a8-47af-a4c3-a598892b4c9c")
794
794
+
)
795
795
+
(fp_line
796
796
+
(start 4.16 -3.22)
797
797
+
(end 4.16 3.22)
798
798
+
(stroke
799
799
+
(width 0.12)
800
800
+
(type solid)
801
801
+
)
802
802
+
(layer "F.SilkS")
803
803
+
(uuid "25c57d39-5365-4c2d-bc1a-2d8e080e7845")
804
804
+
)
805
805
+
(fp_poly
806
806
+
(pts
807
807
+
(xy 0 3.57) (xy 0.44 4.18) (xy -0.44 4.18)
808
808
+
)
809
809
+
(stroke
810
810
+
(width 0.12)
811
811
+
(type solid)
812
812
+
)
813
813
+
(fill yes)
814
814
+
(layer "F.SilkS")
815
815
+
(uuid "902e14a7-2df5-410f-a53b-fca26f966106")
816
816
+
)
817
817
+
(fp_rect
818
818
+
(start -2 -3.6)
819
819
+
(end 4.54 3.6)
820
820
+
(stroke
821
821
+
(width 0.05)
822
822
+
(type solid)
823
823
+
)
824
824
+
(fill no)
825
825
+
(layer "F.CrtYd")
826
826
+
(uuid "18a46912-b71d-4012-a6ec-8507af6a75c9")
827
827
+
)
828
828
+
(fp_line
829
829
+
(start -1 3.1)
830
830
+
(end -1.5 2.6)
831
831
+
(stroke
832
832
+
(width 0.1)
833
833
+
(type solid)
834
834
+
)
835
835
+
(layer "F.Fab")
836
836
+
(uuid "29e32dcc-c3d5-4bb8-b37c-f3d13f70e91a")
837
837
+
)
838
838
+
(fp_line
839
839
+
(start 4.04 3.1)
840
840
+
(end -1 3.1)
841
841
+
(stroke
842
842
+
(width 0.1)
843
843
+
(type solid)
844
844
+
)
845
845
+
(layer "F.Fab")
846
846
+
(uuid "7a9e8ba6-4bd9-4eb6-81d5-3a4703108768")
847
847
+
)
848
848
+
(fp_line
849
849
+
(start -1.5 2.6)
850
850
+
(end 4.04 2.6)
851
851
+
(stroke
852
852
+
(width 0.1)
853
853
+
(type solid)
854
854
+
)
855
855
+
(layer "F.Fab")
856
856
+
(uuid "bb046ae5-bd79-4505-a0a4-1f592dad8cec")
857
857
+
)
858
858
+
(fp_line
859
859
+
(start -1.5 2.6)
860
860
+
(end -1.5 -3.1)
861
861
+
(stroke
862
862
+
(width 0.1)
863
863
+
(type solid)
864
864
+
)
865
865
+
(layer "F.Fab")
866
866
+
(uuid "3dfbbcf7-db97-4fa6-b910-0e41d252d80a")
867
867
+
)
868
868
+
(fp_line
869
869
+
(start 0.834 -0.7)
870
870
+
(end -0.7 0.834)
871
871
+
(stroke
872
872
+
(width 0.1)
873
873
+
(type solid)
874
874
+
)
875
875
+
(layer "F.Fab")
876
876
+
(uuid "64324fe6-9bcf-4ea4-8f94-a095f73eea04")
877
877
+
)
878
878
+
(fp_line
879
879
+
(start 3.374 -0.7)
880
880
+
(end 1.84 0.834)
881
881
+
(stroke
882
882
+
(width 0.1)
883
883
+
(type solid)
884
884
+
)
885
885
+
(layer "F.Fab")
886
886
+
(uuid "9dac269c-32f1-4538-8e1a-a0aec95dd713")
887
887
+
)
888
888
+
(fp_line
889
889
+
(start 0.7 -0.834)
890
890
+
(end -0.834 0.7)
891
891
+
(stroke
892
892
+
(width 0.1)
893
893
+
(type solid)
894
894
+
)
895
895
+
(layer "F.Fab")
896
896
+
(uuid "f36ee85d-f745-4aab-b0b0-4fe1a8df627c")
897
897
+
)
898
898
+
(fp_line
899
899
+
(start 3.24 -0.834)
900
900
+
(end 1.706 0.7)
901
901
+
(stroke
902
902
+
(width 0.1)
903
903
+
(type solid)
904
904
+
)
905
905
+
(layer "F.Fab")
906
906
+
(uuid "8d5a1648-93df-4f71-9172-72f3ff4a1a32")
907
907
+
)
908
908
+
(fp_line
909
909
+
(start -1.5 -2.7)
910
910
+
(end 4.04 -2.7)
911
911
+
(stroke
912
912
+
(width 0.1)
913
913
+
(type solid)
914
914
+
)
915
915
+
(layer "F.Fab")
916
916
+
(uuid "311f00a3-e138-4a4f-b05b-488bc36572cb")
917
917
+
)
918
918
+
(fp_line
919
919
+
(start -1.5 -3.1)
920
920
+
(end 4.04 -3.1)
921
921
+
(stroke
922
922
+
(width 0.1)
923
923
+
(type solid)
924
924
+
)
925
925
+
(layer "F.Fab")
926
926
+
(uuid "9fd91a2f-850b-4695-a15d-892deafc6c39")
927
927
+
)
928
928
+
(fp_line
929
929
+
(start 4.04 -3.1)
930
930
+
(end 4.04 3.1)
931
931
+
(stroke
932
932
+
(width 0.1)
933
933
+
(type solid)
934
934
+
)
935
935
+
(layer "F.Fab")
936
936
+
(uuid "617bc522-9b27-4261-b7f4-8bf7469bf861")
937
937
+
)
938
938
+
(fp_circle
939
939
+
(center 0 0)
940
940
+
(end 1.1 0)
941
941
+
(stroke
942
942
+
(width 0.1)
943
943
+
(type solid)
944
944
+
)
945
945
+
(fill no)
946
946
+
(layer "F.Fab")
947
947
+
(uuid "87897a66-1831-4b21-8098-8dc940c31cad")
948
948
+
)
949
949
+
(fp_circle
950
950
+
(center 2.54 0)
951
951
+
(end 3.64 0)
952
952
+
(stroke
953
953
+
(width 0.1)
954
954
+
(type solid)
955
955
+
)
956
956
+
(fill no)
957
957
+
(layer "F.Fab")
958
958
+
(uuid "3d88e6a1-9252-4018-8190-f786080e6e95")
959
959
+
)
960
960
+
(fp_text user "${REFERENCE}"
961
961
+
(at 1.27 2 270)
962
962
+
(layer "F.Fab")
963
963
+
(uuid "24c5300a-a0ec-4654-890e-e684b6ed7d7d")
964
964
+
(effects
965
965
+
(font
966
966
+
(size 1 1)
967
967
+
(thickness 0.15)
968
968
+
)
969
969
+
)
970
970
+
)
971
971
+
(pad "" np_thru_hole circle
972
972
+
(at 0 2.54 270)
973
973
+
(size 1.1 1.1)
974
974
+
(drill 1.1)
975
975
+
(layers "*.Cu" "*.Mask")
976
976
+
(uuid "5924e906-4807-4c92-a44f-2d67d8266e66")
977
977
+
)
978
978
+
(pad "" np_thru_hole circle
979
979
+
(at 2.54 2.54 270)
980
980
+
(size 1.1 1.1)
981
981
+
(drill 1.1)
982
982
+
(layers "*.Cu" "*.Mask")
983
983
+
(uuid "68cd4be3-976b-447f-9eca-769a7e83448f")
984
984
+
)
985
985
+
(pad "1" thru_hole roundrect
986
986
+
(at 0 0 270)
987
987
+
(size 2.2 2.2)
988
988
+
(drill 1.1)
989
989
+
(layers "*.Cu" "*.Mask")
990
990
+
(remove_unused_layers no)
991
991
+
(roundrect_rratio 0.113636)
992
992
+
(net 9 "ANT_IN")
993
993
+
(pinfunction "Pin_1")
994
994
+
(pintype "passive")
995
995
+
(uuid "51273f83-6510-4872-a12b-0e8f1a0249a7")
996
996
+
)
997
997
+
(pad "2" thru_hole circle
998
998
+
(at 2.54 0 270)
999
999
+
(size 2.2 2.2)
1000
1000
+
(drill 1.1)
1001
1001
+
(layers "*.Cu" "*.Mask")
1002
1002
+
(remove_unused_layers no)
1003
1003
+
(net 10 "ANT_GND")
1004
1004
+
(pinfunction "Pin_2")
1005
1005
+
(pintype "passive")
1006
1006
+
(uuid "29784341-c146-4bd5-bb6d-6e3f1d7a7ebe")
1007
1007
+
)
1008
1008
+
(embedded_fonts no)
1009
1009
+
(model "${KICAD9_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal.step"
1010
1010
+
(offset
1011
1011
+
(xyz 0 0 0)
1012
1012
+
)
1013
1013
+
(scale
1014
1014
+
(xyz 1 1 1)
1015
1015
+
)
1016
1016
+
(rotate
1017
1017
+
(xyz 0 0 0)
1018
1018
+
)
1019
1019
+
)
1020
1020
+
)
1021
1021
+
(footprint "Inductor_SMD:L_0805_2012Metric"
1022
1022
+
(layer "F.Cu")
1023
1023
+
(uuid "2f1fea1f-9c50-4e60-8904-285369fbe31f")
1024
1024
+
(at 138 101)
1025
1025
+
(descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
1026
1026
+
(tags "inductor")
1027
1027
+
(property "Reference" "L1"
1028
1028
+
(at 0 2 0)
1029
1029
+
(layer "F.SilkS")
1030
1030
+
(uuid "2f503016-9c2f-48c4-89d5-e117ad9bb6f7")
1031
1031
+
(effects
1032
1032
+
(font
1033
1033
+
(size 1 1)
1034
1034
+
(thickness 0.15)
1035
1035
+
)
1036
1036
+
)
1037
1037
+
)
1038
1038
+
(property "Value" "150uH"
1039
1039
+
(at 0 1.55 0)
1040
1040
+
(layer "F.Fab")
1041
1041
+
(uuid "b5ca450f-07e7-4512-a7a3-3f999a530905")
1042
1042
+
(effects
1043
1043
+
(font
1044
1044
+
(size 1 1)
1045
1045
+
(thickness 0.15)
1046
1046
+
)
1047
1047
+
)
1048
1048
+
)
1049
1049
+
(property "Datasheet" "~"
1050
1050
+
(at 0 0 0)
1051
1051
+
(layer "F.Fab")
1052
1052
+
(hide yes)
1053
1053
+
(uuid "a977f286-4129-4bfa-a066-d8c182f35e85")
1054
1054
+
(effects
1055
1055
+
(font
1056
1056
+
(size 1.27 1.27)
1057
1057
+
(thickness 0.15)
1058
1058
+
)
1059
1059
+
)
1060
1060
+
)
1061
1061
+
(property "Description" "Inductor"
1062
1062
+
(at 0 0 0)
1063
1063
+
(layer "F.Fab")
1064
1064
+
(hide yes)
1065
1065
+
(uuid "f942c82d-9a31-4646-a05d-23037184c149")
1066
1066
+
(effects
1067
1067
+
(font
1068
1068
+
(size 1.27 1.27)
1069
1069
+
(thickness 0.15)
1070
1070
+
)
1071
1071
+
)
1072
1072
+
)
1073
1073
+
(property ki_fp_filters "Choke_* *Coil* Inductor_* L_*")
1074
1074
+
(path "/90973898-c2f8-4764-b0aa-27ff7a11c99d")
1075
1075
+
(sheetname "/")
1076
1076
+
(sheetfile "strike-sensor.kicad_sch")
1077
1077
+
(attr smd)
1078
1078
+
(fp_line
1079
1079
+
(start -0.399622 -0.56)
1080
1080
+
(end 0.399622 -0.56)
1081
1081
+
(stroke
1082
1082
+
(width 0.12)
1083
1083
+
(type solid)
1084
1084
+
)
1085
1085
+
(layer "F.SilkS")
1086
1086
+
(uuid "84e4c5ec-a6a6-40e0-b072-f08083ad7590")
1087
1087
+
)
1088
1088
+
(fp_line
1089
1089
+
(start -0.399622 0.56)
1090
1090
+
(end 0.399622 0.56)
1091
1091
+
(stroke
1092
1092
+
(width 0.12)
1093
1093
+
(type solid)
1094
1094
+
)
1095
1095
+
(layer "F.SilkS")
1096
1096
+
(uuid "bbe98127-823c-46c6-877e-68042f9548c5")
1097
1097
+
)
1098
1098
+
(fp_rect
1099
1099
+
(start -1.75 -0.85)
1100
1100
+
(end 1.75 0.85)
1101
1101
+
(stroke
1102
1102
+
(width 0.05)
1103
1103
+
(type solid)
1104
1104
+
)
1105
1105
+
(fill no)
1106
1106
+
(layer "F.CrtYd")
1107
1107
+
(uuid "b8cfc48f-8a32-449c-a394-e5ab818aa74a")
1108
1108
+
)
1109
1109
+
(fp_rect
1110
1110
+
(start -1 -0.45)
1111
1111
+
(end 1 0.45)
1112
1112
+
(stroke
1113
1113
+
(width 0.1)
1114
1114
+
(type solid)
1115
1115
+
)
1116
1116
+
(fill no)
1117
1117
+
(layer "F.Fab")
1118
1118
+
(uuid "2a1007d4-22c5-42c2-8699-c75a74306423")
1119
1119
+
)
1120
1120
+
(fp_text user "${REFERENCE}"
1121
1121
+
(at 0 0 0)
1122
1122
+
(layer "F.Fab")
1123
1123
+
(uuid "ad106eb0-5cba-4966-ae36-a860fa08b636")
1124
1124
+
(effects
1125
1125
+
(font
1126
1126
+
(size 0.5 0.5)
1127
1127
+
(thickness 0.08)
1128
1128
+
)
1129
1129
+
)
1130
1130
+
)
1131
1131
+
(pad "1" smd roundrect
1132
1132
+
(at -1.0625 0)
1133
1133
+
(size 0.875 1.2)
1134
1134
+
(layers "F.Cu" "F.Mask" "F.Paste")
1135
1135
+
(roundrect_rratio 0.25)
1136
1136
+
(net 10 "ANT_GND")
1137
1137
+
(pinfunction "1")
1138
1138
+
(pintype "passive")
1139
1139
+
(uuid "81ee4611-a512-4149-b618-d007c5fcc85c")
1140
1140
+
)
1141
1141
+
(pad "2" smd roundrect
1142
1142
+
(at 1.0625 0)
1143
1143
+
(size 0.875 1.2)
1144
1144
+
(layers "F.Cu" "F.Mask" "F.Paste")
1145
1145
+
(roundrect_rratio 0.25)
1146
1146
+
(net 4 "Net-(D2-A)")
1147
1147
+
(pinfunction "2")
1148
1148
+
(pintype "passive")
1149
1149
+
(uuid "9f5c9675-dc61-4d16-a3b7-f22ddef28cfe")
1150
1150
+
)
1151
1151
+
(embedded_fonts no)
1152
1152
+
(model "${KICAD9_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0805_2012Metric.step"
1153
1153
+
(offset
1154
1154
+
(xyz 0 0 0)
1155
1155
+
)
1156
1156
+
(scale
1157
1157
+
(xyz 1 1 1)
1158
1158
+
)
1159
1159
+
(rotate
1160
1160
+
(xyz 0 0 0)
1161
1161
+
)
1162
1162
+
)
1163
1163
+
)
1164
1164
+
(footprint "Diode_SMD:D_SOD-323"
1165
1165
+
(layer "F.Cu")
1166
1166
+
(uuid "53588e12-0892-4475-9c88-88e1482ff03e")
1167
1167
+
(at 147 99 180)
1168
1168
+
(descr "SOD-323")
1169
1169
+
(tags "SOD-323")
1170
1170
+
(property "Reference" "D2"
1171
1171
+
(at -1 -1.85 0)
1172
1172
+
(layer "F.SilkS")
1173
1173
+
(uuid "accdbd47-73f0-41dc-802d-ad5775872d13")
1174
1174
+
(effects
1175
1175
+
(font
1176
1176
+
(size 1 1)
1177
1177
+
(thickness 0.15)
1178
1178
+
)
1179
1179
+
)
1180
1180
+
)
1181
1181
+
(property "Value" "1N4148WS"
1182
1182
+
(at 0.1 1.9 0)
1183
1183
+
(layer "F.Fab")
1184
1184
+
(uuid "7b12a0aa-cc74-4e2e-a43b-a180fac86411")
1185
1185
+
(effects
1186
1186
+
(font
1187
1187
+
(size 1 1)
1188
1188
+
(thickness 0.15)
1189
1189
+
)
1190
1190
+
)
1191
1191
+
)
1192
1192
+
(property "Datasheet" "https://www.vishay.com/docs/85751/1n4148ws.pdf"
1193
1193
+
(at 0 0 180)
1194
1194
+
(unlocked yes)
1195
1195
+
(layer "F.Fab")
1196
1196
+
(hide yes)
1197
1197
+
(uuid "e56bae77-dfab-4c13-a55b-0fcbd96c81c8")
1198
1198
+
(effects
1199
1199
+
(font
1200
1200
+
(size 1.27 1.27)
1201
1201
+
(thickness 0.15)
1202
1202
+
)
1203
1203
+
)
1204
1204
+
)
1205
1205
+
(property "Description" "75V 0.15A Fast switching Diode, SOD-323"
1206
1206
+
(at 0 0 180)
1207
1207
+
(unlocked yes)
1208
1208
+
(layer "F.Fab")
1209
1209
+
(hide yes)
1210
1210
+
(uuid "7e7d5c4a-ee06-40d4-9e92-5ba0bf2d42cc")
1211
1211
+
(effects
1212
1212
+
(font
1213
1213
+
(size 1.27 1.27)
1214
1214
+
(thickness 0.15)
1215
1215
+
)
1216
1216
+
)
1217
1217
+
)
1218
1218
+
(property "Sim.Device" "D"
1219
1219
+
(at 0 0 180)
1220
1220
+
(unlocked yes)
1221
1221
+
(layer "F.Fab")
1222
1222
+
(hide yes)
1223
1223
+
(uuid "3e1a20ca-cb4a-4ecd-8af2-74a05fa0030d")
1224
1224
+
(effects
1225
1225
+
(font
1226
1226
+
(size 1 1)
1227
1227
+
(thickness 0.15)
1228
1228
+
)
1229
1229
+
)
1230
1230
+
)
1231
1231
+
(property "Sim.Pins" "1=K 2=A"
1232
1232
+
(at 0 0 180)
1233
1233
+
(unlocked yes)
1234
1234
+
(layer "F.Fab")
1235
1235
+
(hide yes)
1236
1236
+
(uuid "c6f9288e-373d-47e5-8f30-188b1691edf2")
1237
1237
+
(effects
1238
1238
+
(font
1239
1239
+
(size 1 1)
1240
1240
+
(thickness 0.15)
1241
1241
+
)
1242
1242
+
)
1243
1243
+
)
1244
1244
+
(property ki_fp_filters "D*SOD?323*")
1245
1245
+
(path "/0913f27a-7db3-47ba-9d37-7def78b324d6")
1246
1246
+
(sheetname "/")
1247
1247
+
(sheetfile "strike-sensor.kicad_sch")
1248
1248
+
(attr smd)
1249
1249
+
(fp_line
1250
1250
+
(start -1.61 0.85)
1251
1251
+
(end 1.05 0.85)
1252
1252
+
(stroke
1253
1253
+
(width 0.12)
1254
1254
+
(type solid)
1255
1255
+
)
1256
1256
+
(layer "F.SilkS")
1257
1257
+
(uuid "baa26b04-2219-47dc-9adf-98f8dc9972aa")
1258
1258
+
)
1259
1259
+
(fp_line
1260
1260
+
(start -1.61 -0.85)
1261
1261
+
(end 1.05 -0.85)
1262
1262
+
(stroke
1263
1263
+
(width 0.12)
1264
1264
+
(type solid)
1265
1265
+
)
1266
1266
+
(layer "F.SilkS")
1267
1267
+
(uuid "117cc7d0-1c90-4583-9c53-3bcf95f70d3f")
1268
1268
+
)
1269
1269
+
(fp_line
1270
1270
+
(start -1.61 -0.85)
1271
1271
+
(end -1.61 0.85)
1272
1272
+
(stroke
1273
1273
+
(width 0.12)
1274
1274
+
(type solid)
1275
1275
+
)
1276
1276
+
(layer "F.SilkS")
1277
1277
+
(uuid "3f2bbc46-db49-4896-ac39-9bd08b367831")
1278
1278
+
)
1279
1279
+
(fp_line
1280
1280
+
(start 1.6 -0.95)
1281
1281
+
(end 1.6 0.95)
1282
1282
+
(stroke
1283
1283
+
(width 0.05)
1284
1284
+
(type solid)
1285
1285
+
)
1286
1286
+
(layer "F.CrtYd")
1287
1287
+
(uuid "7402f80f-16c6-4097-87da-00eae6ef124a")
1288
1288
+
)
1289
1289
+
(fp_line
1290
1290
+
(start -1.6 0.95)
1291
1291
+
(end 1.6 0.95)
1292
1292
+
(stroke
1293
1293
+
(width 0.05)
1294
1294
+
(type solid)
1295
1295
+
)
1296
1296
+
(layer "F.CrtYd")
1297
1297
+
(uuid "483c6377-1bc0-4fd9-844c-c2b4bb88377f")
1298
1298
+
)
1299
1299
+
(fp_line
1300
1300
+
(start -1.6 -0.95)
1301
1301
+
(end 1.6 -0.95)
1302
1302
+
(stroke
1303
1303
+
(width 0.05)
1304
1304
+
(type solid)
1305
1305
+
)
1306
1306
+
(layer "F.CrtYd")
1307
1307
+
(uuid "a7a22f48-b3d7-4cc6-90b5-146056e849c1")
1308
1308
+
)
1309
1309
+
(fp_line
1310
1310
+
(start -1.6 -0.95)
1311
1311
+
(end -1.6 0.95)
1312
1312
+
(stroke
1313
1313
+
(width 0.05)
1314
1314
+
(type solid)
1315
1315
+
)
1316
1316
+
(layer "F.CrtYd")
1317
1317
+
(uuid "fd0fec9d-c8c3-45ca-abde-cc92210e4314")
1318
1318
+
)
1319
1319
+
(fp_line
1320
1320
+
(start 0.9 0.7)
1321
1321
+
(end -0.9 0.7)
1322
1322
+
(stroke
1323
1323
+
(width 0.1)
1324
1324
+
(type solid)
1325
1325
+
)
1326
1326
+
(layer "F.Fab")
1327
1327
+
(uuid "810aa81e-0758-4a97-886e-f51f422caee9")
1328
1328
+
)
1329
1329
+
(fp_line
1330
1330
+
(start 0.9 -0.7)
1331
1331
+
(end 0.9 0.7)
1332
1332
+
(stroke
1333
1333
+
(width 0.1)
1334
1334
+
(type solid)
1335
1335
+
)
1336
1336
+
(layer "F.Fab")
1337
1337
+
(uuid "f4f44dc6-c209-4fa1-86a9-dcbb57362d03")
1338
1338
+
)
1339
1339
+
(fp_line
1340
1340
+
(start 0.2 0.35)
1341
1341
+
(end -0.3 0)
1342
1342
+
(stroke
1343
1343
+
(width 0.1)
1344
1344
+
(type solid)
1345
1345
+
)
1346
1346
+
(layer "F.Fab")
1347
1347
+
(uuid "2d1ed623-b32b-4843-8f94-9e3450412916")
1348
1348
+
)
1349
1349
+
(fp_line
1350
1350
+
(start 0.2 0)
1351
1351
+
(end 0.45 0)
1352
1352
+
(stroke
1353
1353
+
(width 0.1)
1354
1354
+
(type solid)
1355
1355
+
)
1356
1356
+
(layer "F.Fab")
1357
1357
+
(uuid "651788bb-69d1-46e9-a4c9-438b2ea5e0e7")
1358
1358
+
)
1359
1359
+
(fp_line
1360
1360
+
(start 0.2 -0.35)
1361
1361
+
(end 0.2 0.35)
1362
1362
+
(stroke
1363
1363
+
(width 0.1)
1364
1364
+
(type solid)
1365
1365
+
)
1366
1366
+
(layer "F.Fab")
1367
1367
+
(uuid "3408a305-454f-4957-b61d-82b45228e7e4")
1368
1368
+
)
1369
1369
+
(fp_line
1370
1370
+
(start -0.3 0)
1371
1371
+
(end 0.2 -0.35)
1372
1372
+
(stroke
1373
1373
+
(width 0.1)
1374
1374
+
(type solid)
1375
1375
+
)
1376
1376
+
(layer "F.Fab")
1377
1377
+
(uuid "3edeb575-09f6-4012-a148-99413c8600f6")
1378
1378
+
)
1379
1379
+
(fp_line
1380
1380
+
(start -0.3 0)
1381
1381
+
(end -0.5 0)
1382
1382
+
(stroke
1383
1383
+
(width 0.1)
1384
1384
+
(type solid)
1385
1385
+
)
1386
1386
+
(layer "F.Fab")
1387
1387
+
(uuid "c49e19f1-faec-46be-9b29-16eeee741581")
1388
1388
+
)
1389
1389
+
(fp_line
1390
1390
+
(start -0.3 -0.35)
1391
1391
+
(end -0.3 0.35)
1392
1392
+
(stroke
1393
1393
+
(width 0.1)
1394
1394
+
(type solid)
1395
1395
+
)
1396
1396
+
(layer "F.Fab")
1397
1397
+
(uuid "58c127f8-ee1e-4022-8e6e-0c8e5bfa6d9a")
1398
1398
+
)
1399
1399
+
(fp_line
1400
1400
+
(start -0.9 0.7)
1401
1401
+
(end -0.9 -0.7)
1402
1402
+
(stroke
1403
1403
+
(width 0.1)
1404
1404
+
(type solid)
1405
1405
+
)
1406
1406
+
(layer "F.Fab")
1407
1407
+
(uuid "8bff6a11-2980-460d-b410-450cffdb3b3a")
1408
1408
+
)
1409
1409
+
(fp_line
1410
1410
+
(start -0.9 -0.7)
1411
1411
+
(end 0.9 -0.7)
1412
1412
+
(stroke
1413
1413
+
(width 0.1)
1414
1414
+
(type solid)
1415
1415
+
)
1416
1416
+
(layer "F.Fab")
1417
1417
+
(uuid "11f18979-a662-471e-b96a-3eaed710a698")
1418
1418
+
)
1419
1419
+
(fp_text user "${REFERENCE}"
1420
1420
+
(at 0 -1.85 0)
1421
1421
+
(layer "F.Fab")
1422
1422
+
(uuid "84d31d72-652b-4e14-8b0f-4b40339dd7dc")
1423
1423
+
(effects
1424
1424
+
(font
1425
1425
+
(size 1 1)
1426
1426
+
(thickness 0.15)
1427
1427
+
)
1428
1428
+
)
1429
1429
+
)
1430
1430
+
(pad "1" smd roundrect
1431
1431
+
(at -1.05 0 180)
1432
1432
+
(size 0.6 0.45)
1433
1433
+
(layers "F.Cu" "F.Mask" "F.Paste")
1434
1434
+
(roundrect_rratio 0.25)
1435
1435
+
(net 2 "GND")
1436
1436
+
(pinfunction "K")
1437
1437
+
(pintype "passive")
1438
1438
+
(uuid "0ef5d40e-5e46-4951-9df3-69f3fe22544d")
1439
1439
+
)
1440
1440
+
(pad "2" smd roundrect
1441
1441
+
(at 1.05 0 180)
1442
1442
+
(size 0.6 0.45)
1443
1443
+
(layers "F.Cu" "F.Mask" "F.Paste")
1444
1444
+
(roundrect_rratio 0.25)
1445
1445
+
(net 4 "Net-(D2-A)")
1446
1446
+
(pinfunction "A")
1447
1447
+
(pintype "passive")
1448
1448
+
(uuid "494a2231-bf9c-4cb4-8702-646e07f2ecae")
1449
1449
+
)
1450
1450
+
(embedded_fonts no)
1451
1451
+
(model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.step"
1452
1452
+
(offset
1453
1453
+
(xyz 0 0 0)
1454
1454
+
)
1455
1455
+
(scale
1456
1456
+
(xyz 1 1 1)
1457
1457
+
)
1458
1458
+
(rotate
1459
1459
+
(xyz 0 0 0)
1460
1460
+
)
1461
1461
+
)
1462
1462
+
)
1463
1463
+
(footprint "MountingHole:MountingHole_2.5mm"
1464
1464
+
(layer "F.Cu")
1465
1465
+
(uuid "561ef812-b792-45b9-a54e-8a6edc12a7d9")
1466
1466
+
(at 130.5 103)
1467
1467
+
(descr "Mounting Hole 2.5mm, no annular, generated by kicad-footprint-generator mountinghole.py")
1468
1468
+
(tags "mountinghole")
1469
1469
+
(property "Reference" "REF2"
1470
1470
+
(at 0 -3.5 0)
1471
1471
+
(layer "F.SilkS")
1472
1472
+
(uuid "e973c87f-3ea5-406f-8690-4bcc5200e864")
1473
1473
+
(effects
1474
1474
+
(font
1475
1475
+
(size 1 1)
1476
1476
+
(thickness 0.15)
1477
1477
+
)
1478
1478
+
)
1479
1479
+
)
1480
1480
+
(property "Value" "MountingHole_2.5mm"
1481
1481
+
(at 0 3.45 0)
1482
1482
+
(layer "F.Fab")
1483
1483
+
(uuid "6ce1529f-7330-47a7-9d0f-61f3d05b5a55")
1484
1484
+
(effects
1485
1485
+
(font
1486
1486
+
(size 1 1)
1487
1487
+
(thickness 0.15)
1488
1488
+
)
1489
1489
+
)
1490
1490
+
)
1491
1491
+
(property "Datasheet" ""
1492
1492
+
(at 0 0 0)
1493
1493
+
(layer "F.Fab")
1494
1494
+
(hide yes)
1495
1495
+
(uuid "99c74595-2b41-4e71-ae40-44b2a1d4fc0f")
1496
1496
+
(effects
1497
1497
+
(font
1498
1498
+
(size 1.27 1.27)
1499
1499
+
(thickness 0.15)
1500
1500
+
)
1501
1501
+
)
1502
1502
+
)
1503
1503
+
(property "Description" ""
1504
1504
+
(at 0 0 0)
1505
1505
+
(layer "F.Fab")
1506
1506
+
(hide yes)
1507
1507
+
(uuid "2a113882-c2a2-476a-88a9-9628f6c10d39")
1508
1508
+
(effects
1509
1509
+
(font
1510
1510
+
(size 1.27 1.27)
1511
1511
+
(thickness 0.15)
1512
1512
+
)
1513
1513
+
)
1514
1514
+
)
1515
1515
+
(attr exclude_from_pos_files exclude_from_bom)
1516
1516
+
(fp_circle
1517
1517
+
(center 0 0)
1518
1518
+
(end 2.5 0)
1519
1519
+
(stroke
1520
1520
+
(width 0.15)
1521
1521
+
(type solid)
1522
1522
+
)
1523
1523
+
(fill no)
1524
1524
+
(layer "Cmts.User")
1525
1525
+
(uuid "431a7b1b-b99c-498f-b5ea-652e86fe59b3")
1526
1526
+
)
1527
1527
+
(fp_circle
1528
1528
+
(center 0 0)
1529
1529
+
(end 2.75 0)
1530
1530
+
(stroke
1531
1531
+
(width 0.05)
1532
1532
+
(type solid)
1533
1533
+
)
1534
1534
+
(fill no)
1535
1535
+
(layer "F.CrtYd")
1536
1536
+
(uuid "16615618-f219-40aa-9f2f-00c94da3246e")
1537
1537
+
)
1538
1538
+
(fp_text user "${REFERENCE}"
1539
1539
+
(at 0 0 0)
1540
1540
+
(layer "F.Fab")
1541
1541
+
(uuid "1aa9a91d-b287-4a16-9c3b-0441a1581960")
1542
1542
+
(effects
1543
1543
+
(font
1544
1544
+
(size 1 1)
1545
1545
+
(thickness 0.15)
1546
1546
+
)
1547
1547
+
)
1548
1548
+
)
1549
1549
+
(pad "" np_thru_hole circle
1550
1550
+
(at 0 0)
1551
1551
+
(size 2.5 2.5)
1552
1552
+
(drill 2.5)
1553
1553
+
(layers "*.Cu" "*.Mask")
1554
1554
+
(uuid "47e1b211-06fa-4ae2-bbc9-3d67ae913875")
1555
1555
+
)
1556
1556
+
(embedded_fonts no)
1557
1557
+
)
1558
1558
+
(footprint "Capacitor_SMD:C_0603_1608Metric"
1559
1559
+
(layer "F.Cu")
1560
1560
+
(uuid "56552872-fa19-40b6-90b5-4098daab5e42")
1561
1561
+
(at 138 98.5 180)
1562
1562
+
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
1563
1563
+
(tags "capacitor")
1564
1564
+
(property "Reference" "C5"
1565
1565
+
(at 0 1.5 0)
1566
1566
+
(layer "F.SilkS")
1567
1567
+
(uuid "80551f54-88bb-43f5-8192-c9906f84dbc5")
1568
1568
+
(effects
1569
1569
+
(font
1570
1570
+
(size 1 1)
1571
1571
+
(thickness 0.15)
1572
1572
+
)
1573
1573
+
)
1574
1574
+
)
1575
1575
+
(property "Value" "270pF"
1576
1576
+
(at 0 1.43 0)
1577
1577
+
(layer "F.Fab")
1578
1578
+
(uuid "71a637af-a0e2-43de-a388-5221b8c30ef1")
1579
1579
+
(effects
1580
1580
+
(font
1581
1581
+
(size 1 1)
1582
1582
+
(thickness 0.15)
1583
1583
+
)
1584
1584
+
)
1585
1585
+
)
1586
1586
+
(property "Datasheet" "~"
1587
1587
+
(at 0 0 0)
1588
1588
+
(layer "F.Fab")
1589
1589
+
(hide yes)
1590
1590
+
(uuid "758f98e5-c2c4-4cf4-afb9-e238658ea396")
1591
1591
+
(effects
1592
1592
+
(font
1593
1593
+
(size 1.27 1.27)
1594
1594
+
(thickness 0.15)
1595
1595
+
)
1596
1596
+
)
1597
1597
+
)
1598
1598
+
(property "Description" "Unpolarized capacitor"
1599
1599
+
(at 0 0 0)
1600
1600
+
(layer "F.Fab")
1601
1601
+
(hide yes)
1602
1602
+
(uuid "e4292eed-46d1-4b55-a3eb-925ad0f4d918")
1603
1603
+
(effects
1604
1604
+
(font
1605
1605
+
(size 1.27 1.27)
1606
1606
+
(thickness 0.15)
1607
1607
+
)
1608
1608
+
)
1609
1609
+
)
1610
1610
+
(property ki_fp_filters "C_*")
1611
1611
+
(path "/f2cf3dfe-6609-40f1-bb4b-1978fa73e608")
1612
1612
+
(sheetname "/")
1613
1613
+
(sheetfile "strike-sensor.kicad_sch")
1614
1614
+
(attr smd)
1615
1615
+
(fp_line
1616
1616
+
(start -0.14058 0.51)
1617
1617
+
(end 0.14058 0.51)
1618
1618
+
(stroke
1619
1619
+
(width 0.12)
1620
1620
+
(type solid)
1621
1621
+
)
1622
1622
+
(layer "F.SilkS")
1623
1623
+
(uuid "5c9c4c17-3a51-4848-a533-71a3aed536d9")
1624
1624
+
)
1625
1625
+
(fp_line
1626
1626
+
(start -0.14058 -0.51)
1627
1627
+
(end 0.14058 -0.51)
1628
1628
+
(stroke
1629
1629
+
(width 0.12)
1630
1630
+
(type solid)
1631
1631
+
)
1632
1632
+
(layer "F.SilkS")
1633
1633
+
(uuid "2bcdc650-da67-4024-adf9-3270600c0fa2")
1634
1634
+
)
1635
1635
+
(fp_rect
1636
1636
+
(start -1.48 -0.73)
1637
1637
+
(end 1.48 0.73)
1638
1638
+
(stroke
1639
1639
+
(width 0.05)
1640
1640
+
(type solid)
1641
1641
+
)
1642
1642
+
(fill no)
1643
1643
+
(layer "F.CrtYd")
1644
1644
+
(uuid "238ebe51-439f-44d1-a05d-80b4b4f7dc2e")
1645
1645
+
)
1646
1646
+
(fp_rect
1647
1647
+
(start -0.8 -0.4)
1648
1648
+
(end 0.8 0.4)
1649
1649
+
(stroke
1650
1650
+
(width 0.1)
1651
1651
+
(type solid)
1652
1652
+
)
1653
1653
+
(fill no)
1654
1654
+
(layer "F.Fab")
1655
1655
+
(uuid "156eed01-21dd-49ca-b527-afc2998e7f62")
1656
1656
+
)
1657
1657
+
(fp_text user "${REFERENCE}"
1658
1658
+
(at 0 0 0)
1659
1659
+
(layer "F.Fab")
1660
1660
+
(uuid "c58da9f8-06a4-4281-81ad-647587e97473")
1661
1661
+
(effects
1662
1662
+
(font
1663
1663
+
(size 0.4 0.4)
1664
1664
+
(thickness 0.06)
1665
1665
+
)
1666
1666
+
)
1667
1667
+
)
1668
1668
+
(pad "1" smd roundrect
1669
1669
+
(at -0.775 0 180)
1670
1670
+
(size 0.9 0.95)
1671
1671
+
(layers "F.Cu" "F.Mask" "F.Paste")
1672
1672
+
(roundrect_rratio 0.25)
1673
1673
+
(net 4 "Net-(D2-A)")
1674
1674
+
(pintype "passive")
1675
1675
+
(uuid "e5e374e7-c8b9-4f34-8000-373cab4c93be")
1676
1676
+
)
1677
1677
+
(pad "2" smd roundrect
1678
1678
+
(at 0.775 0 180)
1679
1679
+
(size 0.9 0.95)
1680
1680
+
(layers "F.Cu" "F.Mask" "F.Paste")
1681
1681
+
(roundrect_rratio 0.25)
1682
1682
+
(net 9 "ANT_IN")
1683
1683
+
(pintype "passive")
1684
1684
+
(uuid "f9378536-f70c-4e95-b2d4-8689c8340f95")
1685
1685
+
)
1686
1686
+
(embedded_fonts no)
1687
1687
+
(model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step"
1688
1688
+
(offset
1689
1689
+
(xyz 0 0 0)
1690
1690
+
)
1691
1691
+
(scale
1692
1692
+
(xyz 1 1 1)
1693
1693
+
)
1694
1694
+
(rotate
1695
1695
+
(xyz 0 0 0)
1696
1696
+
)
1697
1697
+
)
1698
1698
+
)
1699
1699
+
(footprint "Resistor_SMD:R_0603_1608Metric"
1700
1700
+
(layer "F.Cu")
1701
1701
+
(uuid "5cf6b813-657c-4bae-9848-bcba03165611")
1702
1702
+
(at 150.5 85 180)
1703
1703
+
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
1704
1704
+
(tags "resistor")
1705
1705
+
(property "Reference" "R1"
1706
1706
+
(at 0 1.5 0)
1707
1707
+
(layer "F.SilkS")
1708
1708
+
(uuid "f63636ef-6034-424a-aa64-5112bc0c478f")
1709
1709
+
(effects
1710
1710
+
(font
1711
1711
+
(size 1 1)
1712
1712
+
(thickness 0.15)
1713
1713
+
)
1714
1714
+
)
1715
1715
+
)
1716
1716
+
(property "Value" "1k"
1717
1717
+
(at -2 1.5 0)
1718
1718
+
(layer "F.Fab")
1719
1719
+
(uuid "7da6ebe1-16f0-4b7a-801f-66722d07db62")
1720
1720
+
(effects
1721
1721
+
(font
1722
1722
+
(size 1 1)
1723
1723
+
(thickness 0.15)
1724
1724
+
)
1725
1725
+
)
1726
1726
+
)
1727
1727
+
(property "Datasheet" "~"
1728
1728
+
(at 0 0 0)
1729
1729
+
(layer "F.Fab")
1730
1730
+
(hide yes)
1731
1731
+
(uuid "1246228b-3f30-4331-b071-10877ce81f1a")
1732
1732
+
(effects
1733
1733
+
(font
1734
1734
+
(size 1.27 1.27)
1735
1735
+
(thickness 0.15)
1736
1736
+
)
1737
1737
+
)
1738
1738
+
)
1739
1739
+
(property "Description" "Resistor"
1740
1740
+
(at 0 0 0)
1741
1741
+
(layer "F.Fab")
1742
1742
+
(hide yes)
1743
1743
+
(uuid "e06483cc-beba-4ff3-920b-57fa77133ce2")
1744
1744
+
(effects
1745
1745
+
(font
1746
1746
+
(size 1.27 1.27)
1747
1747
+
(thickness 0.15)
1748
1748
+
)
1749
1749
+
)
1750
1750
+
)
1751
1751
+
(property "Sim.Device" "R"
1752
1752
+
(at 0 0 180)
1753
1753
+
(unlocked yes)
1754
1754
+
(layer "F.Fab")
1755
1755
+
(hide yes)
1756
1756
+
(uuid "af5b6189-719f-412d-9344-ed6570a0fff5")
1757
1757
+
(effects
1758
1758
+
(font
1759
1759
+
(size 1 1)
1760
1760
+
(thickness 0.15)
1761
1761
+
)
1762
1762
+
)
1763
1763
+
)
1764
1764
+
(property "Sim.Pins" "1=+ 2=-"
1765
1765
+
(at 0 0 180)
1766
1766
+
(unlocked yes)
1767
1767
+
(layer "F.Fab")
1768
1768
+
(hide yes)
1769
1769
+
(uuid "8b3be6e7-aebe-4a27-bd8d-4ea5a0ac648f")
1770
1770
+
(effects
1771
1771
+
(font
1772
1772
+
(size 1 1)
1773
1773
+
(thickness 0.15)
1774
1774
+
)
1775
1775
+
)
1776
1776
+
)
1777
1777
+
(property ki_fp_filters "R_*")
1778
1778
+
(path "/4db09867-e2f5-4b5e-a890-eaa8cab8f571")
1779
1779
+
(sheetname "/")
1780
1780
+
(sheetfile "strike-sensor.kicad_sch")
1781
1781
+
(attr smd)
1782
1782
+
(fp_line
1783
1783
+
(start -0.237258 0.5225)
1784
1784
+
(end 0.237258 0.5225)
1785
1785
+
(stroke
1786
1786
+
(width 0.12)
1787
1787
+
(type solid)
1788
1788
+
)
1789
1789
+
(layer "F.SilkS")
1790
1790
+
(uuid "4e03b6c9-c7fb-4c72-beea-59801bf5a833")
1791
1791
+
)
1792
1792
+
(fp_line
1793
1793
+
(start -0.237258 -0.5225)
1794
1794
+
(end 0.237258 -0.5225)
1795
1795
+
(stroke
1796
1796
+
(width 0.12)
1797
1797
+
(type solid)
1798
1798
+
)
1799
1799
+
(layer "F.SilkS")
1800
1800
+
(uuid "799b692b-8241-4eaa-a31b-6834f779cec5")
1801
1801
+
)
1802
1802
+
(fp_rect
1803
1803
+
(start -1.48 -0.73)
1804
1804
+
(end 1.48 0.73)
1805
1805
+
(stroke
1806
1806
+
(width 0.05)
1807
1807
+
(type solid)
1808
1808
+
)
1809
1809
+
(fill no)
1810
1810
+
(layer "F.CrtYd")
1811
1811
+
(uuid "ef70bd53-9fbe-422e-9586-1d3fbcde85b4")
1812
1812
+
)
1813
1813
+
(fp_rect
1814
1814
+
(start -0.8 -0.4125)
1815
1815
+
(end 0.8 0.4125)
1816
1816
+
(stroke
1817
1817
+
(width 0.1)
1818
1818
+
(type solid)
1819
1819
+
)
1820
1820
+
(fill no)
1821
1821
+
(layer "F.Fab")
1822
1822
+
(uuid "80ff3631-7a3a-492f-91a1-8216f9dcb935")
1823
1823
+
)
1824
1824
+
(fp_text user "${REFERENCE}"
1825
1825
+
(at 0 0 0)
1826
1826
+
(layer "F.Fab")
1827
1827
+
(uuid "51de4dec-7373-4bc9-b6f0-a73f3b6e2bfc")
1828
1828
+
(effects
1829
1829
+
(font
1830
1830
+
(size 0.4 0.4)
1831
1831
+
(thickness 0.06)
1832
1832
+
)
1833
1833
+
)
1834
1834
+
)
1835
1835
+
(pad "1" smd roundrect
1836
1836
+
(at -0.825 0 180)
1837
1837
+
(size 0.8 0.95)
1838
1838
+
(layers "F.Cu" "F.Mask" "F.Paste")
1839
1839
+
(roundrect_rratio 0.25)
1840
1840
+
(net 8 "Net-(D1-K)")
1841
1841
+
(pintype "passive")
1842
1842
+
(uuid "9d105ac3-aeca-4d12-92f1-13c226f7306d")
1843
1843
+
)
1844
1844
+
(pad "2" smd roundrect
1845
1845
+
(at 0.825 0 180)
1846
1846
+
(size 0.8 0.95)
1847
1847
+
(layers "F.Cu" "F.Mask" "F.Paste")
1848
1848
+
(roundrect_rratio 0.25)
1849
1849
+
(net 1 "Net-(C1-Pad1)")
1850
1850
+
(pintype "passive")
1851
1851
+
(uuid "2ed973f9-5357-4bed-8439-a4dd6e27fdf1")
1852
1852
+
)
1853
1853
+
(embedded_fonts no)
1854
1854
+
(model "${KICAD9_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
1855
1855
+
(offset
1856
1856
+
(xyz 0 0 0)
1857
1857
+
)
1858
1858
+
(scale
1859
1859
+
(xyz 1 1 1)
1860
1860
+
)
1861
1861
+
(rotate
1862
1862
+
(xyz 0 0 0)
1863
1863
+
)
1864
1864
+
)
1865
1865
+
)
1866
1866
+
(footprint "Resistor_SMD:R_0603_1608Metric"
1867
1867
+
(layer "F.Cu")
1868
1868
+
(uuid "6ad8ed80-d709-40da-a5e1-727d18caf0f3")
1869
1869
+
(at 135.5 86 -90)
1870
1870
+
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
1871
1871
+
(tags "resistor")
1872
1872
+
(property "Reference" "R3"
1873
1873
+
(at -2.5 0 0)
1874
1874
+
(layer "F.SilkS")
1875
1875
+
(uuid "f3b28a12-4a6f-4bd1-9a4d-c36a0d6c7376")
1876
1876
+
(effects
1877
1877
+
(font
1878
1878
+
(size 1 1)
1879
1879
+
(thickness 0.15)
1880
1880
+
)
1881
1881
+
)
1882
1882
+
)
1883
1883
+
(property "Value" "1k"
1884
1884
+
(at 0 1.43 90)
1885
1885
+
(layer "F.Fab")
1886
1886
+
(uuid "c8667b03-b764-4b56-956d-deb354bb7ec8")
1887
1887
+
(effects
1888
1888
+
(font
1889
1889
+
(size 1 1)
1890
1890
+
(thickness 0.15)
1891
1891
+
)
1892
1892
+
)
1893
1893
+
)
1894
1894
+
(property "Datasheet" "~"
1895
1895
+
(at 0 0 90)
1896
1896
+
(layer "F.Fab")
1897
1897
+
(hide yes)
1898
1898
+
(uuid "e4b03802-20ce-4e36-b1c8-b8e9e7c18206")
1899
1899
+
(effects
1900
1900
+
(font
1901
1901
+
(size 1.27 1.27)
1902
1902
+
(thickness 0.15)
1903
1903
+
)
1904
1904
+
)
1905
1905
+
)
1906
1906
+
(property "Description" "Resistor"
1907
1907
+
(at 0 0 90)
1908
1908
+
(layer "F.Fab")
1909
1909
+
(hide yes)
1910
1910
+
(uuid "da2632d8-ffdb-4716-bb44-80e2c27d40d0")
1911
1911
+
(effects
1912
1912
+
(font
1913
1913
+
(size 1.27 1.27)
1914
1914
+
(thickness 0.15)
1915
1915
+
)
1916
1916
+
)
1917
1917
+
)
1918
1918
+
(property ki_fp_filters "R_*")
1919
1919
+
(path "/f2e3a9f2-593a-4d99-953b-e0d7598b535b")
1920
1920
+
(sheetname "/")
1921
1921
+
(sheetfile "strike-sensor.kicad_sch")
1922
1922
+
(attr smd)
1923
1923
+
(fp_line
1924
1924
+
(start -0.237258 0.5225)
1925
1925
+
(end 0.237258 0.5225)
1926
1926
+
(stroke
1927
1927
+
(width 0.12)
1928
1928
+
(type solid)
1929
1929
+
)
1930
1930
+
(layer "F.SilkS")
1931
1931
+
(uuid "5fad6f31-a6e3-4a6c-a49a-e30989efe8d5")
1932
1932
+
)
1933
1933
+
(fp_line
1934
1934
+
(start -0.237258 -0.5225)
1935
1935
+
(end 0.237258 -0.5225)
1936
1936
+
(stroke
1937
1937
+
(width 0.12)
1938
1938
+
(type solid)
1939
1939
+
)
1940
1940
+
(layer "F.SilkS")
1941
1941
+
(uuid "35db64c8-2e84-4164-9b8e-a1d03c10cfd7")
1942
1942
+
)
1943
1943
+
(fp_rect
1944
1944
+
(start -1.48 -0.73)
1945
1945
+
(end 1.48 0.73)
1946
1946
+
(stroke
1947
1947
+
(width 0.05)
1948
1948
+
(type solid)
1949
1949
+
)
1950
1950
+
(fill no)
1951
1951
+
(layer "F.CrtYd")
1952
1952
+
(uuid "5befcd44-8369-4a7f-93cc-393267645421")
1953
1953
+
)
1954
1954
+
(fp_rect
1955
1955
+
(start -0.8 -0.4125)
1956
1956
+
(end 0.8 0.4125)
1957
1957
+
(stroke
1958
1958
+
(width 0.1)
1959
1959
+
(type solid)
1960
1960
+
)
1961
1961
+
(fill no)
1962
1962
+
(layer "F.Fab")
1963
1963
+
(uuid "d061149e-2a3a-415d-82ab-50d8d950aebf")
1964
1964
+
)
1965
1965
+
(fp_text user "${REFERENCE}"
1966
1966
+
(at 0 0 90)
1967
1967
+
(layer "F.Fab")
1968
1968
+
(uuid "2e9ac268-63a8-45f3-ad41-b2bb2769a14c")
1969
1969
+
(effects
1970
1970
+
(font
1971
1971
+
(size 0.4 0.4)
1972
1972
+
(thickness 0.06)
1973
1973
+
)
1974
1974
+
)
1975
1975
+
)
1976
1976
+
(pad "1" smd roundrect
1977
1977
+
(at -0.825 0 270)
1978
1978
+
(size 0.8 0.95)
1979
1979
+
(layers "F.Cu" "F.Mask" "F.Paste")
1980
1980
+
(roundrect_rratio 0.25)
1981
1981
+
(net 3 "Net-(C2-Pad1)")
1982
1982
+
(pintype "passive")
1983
1983
+
(uuid "4051a388-ad3b-464b-95e2-b320b3c143e9")
1984
1984
+
)
1985
1985
+
(pad "2" smd roundrect
1986
1986
+
(at 0.825 0 270)
1987
1987
+
(size 0.8 0.95)
1988
1988
+
(layers "F.Cu" "F.Mask" "F.Paste")
1989
1989
+
(roundrect_rratio 0.25)
1990
1990
+
(net 5 "OUT")
1991
1991
+
(pintype "passive")
1992
1992
+
(uuid "cd1c34b1-2d69-4874-afd3-204f9f899950")
1993
1993
+
)
1994
1994
+
(embedded_fonts no)
1995
1995
+
(model "${KICAD9_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
1996
1996
+
(offset
1997
1997
+
(xyz 0 0 0)
1998
1998
+
)
1999
1999
+
(scale
2000
2000
+
(xyz 1 1 1)
2001
2001
+
)
2002
2002
+
(rotate
2003
2003
+
(xyz 0 0 0)
2004
2004
+
)
2005
2005
+
)
2006
2006
+
)
2007
2007
+
(footprint "TA7642:TO-92AP"
2008
2008
+
(layer "F.Cu")
2009
2009
+
(uuid "720f4532-884c-441f-9815-d90628f40bc3")
2010
2010
+
(at 143 96 90)
2011
2011
+
(descr "<b>TO-92AP</b>")
2012
2012
+
(property "Reference" "IC1"
2013
2013
+
(at -3.5 -1.5 0)
2014
2014
+
(layer "F.SilkS")
2015
2015
+
(uuid "f726e754-b0ab-4626-a72b-26315227b7a2")
2016
2016
+
(effects
2017
2017
+
(font
2018
2018
+
(size 0.8 0.8)
2019
2019
+
(thickness 0.15)
2020
2020
+
)
2021
2021
+
)
2022
2022
+
)
2023
2023
+
(property "Value" "TA7642"
2024
2024
+
(at 0.9398 4.0386 90)
2025
2025
+
(layer "Dwgs.User")
2026
2026
+
(uuid "930ad720-92e8-4324-85f2-522db2797627")
2027
2027
+
(effects
2028
2028
+
(font
2029
2029
+
(size 0.64 0.64)
2030
2030
+
(thickness 0.15)
2031
2031
+
)
2032
2032
+
)
2033
2033
+
)
2034
2034
+
(property "Datasheet" ""
2035
2035
+
(at 0 0 90)
2036
2036
+
(layer "F.Fab")
2037
2037
+
(hide yes)
2038
2038
+
(uuid "5e003ac0-63a8-4730-97c0-0148d303e0b9")
2039
2039
+
(effects
2040
2040
+
(font
2041
2041
+
(size 1.27 1.27)
2042
2042
+
(thickness 0.15)
2043
2043
+
)
2044
2044
+
)
2045
2045
+
)
2046
2046
+
(property "Description" ""
2047
2047
+
(at 0 0 90)
2048
2048
+
(layer "F.Fab")
2049
2049
+
(hide yes)
2050
2050
+
(uuid "9cc695dc-55e7-4557-9b2c-fa356d54d552")
2051
2051
+
(effects
2052
2052
+
(font
2053
2053
+
(size 1.27 1.27)
2054
2054
+
(thickness 0.15)
2055
2055
+
)
2056
2056
+
)
2057
2057
+
)
2058
2058
+
(property "MF" "cic"
2059
2059
+
(at 0 0 90)
2060
2060
+
(unlocked yes)
2061
2061
+
(layer "F.Fab")
2062
2062
+
(hide yes)
2063
2063
+
(uuid "06042283-57be-4f58-8e38-7cd984a4110c")
2064
2064
+
(effects
2065
2065
+
(font
2066
2066
+
(size 1 1)
2067
2067
+
(thickness 0.15)
2068
2068
+
)
2069
2069
+
)
2070
2070
+
)
2071
2071
+
(property "Description_1" "CIC TA-7642 Radio IC"
2072
2072
+
(at 0 0 90)
2073
2073
+
(unlocked yes)
2074
2074
+
(layer "F.Fab")
2075
2075
+
(hide yes)
2076
2076
+
(uuid "465b063a-045b-4162-ad66-cf9cb93aa71b")
2077
2077
+
(effects
2078
2078
+
(font
2079
2079
+
(size 1 1)
2080
2080
+
(thickness 0.15)
2081
2081
+
)
2082
2082
+
)
2083
2083
+
)
2084
2084
+
(property "Package" "None"
2085
2085
+
(at 0 0 90)
2086
2086
+
(unlocked yes)
2087
2087
+
(layer "F.Fab")
2088
2088
+
(hide yes)
2089
2089
+
(uuid "221ca1c5-8e16-43e7-ae83-5db1ae240778")
2090
2090
+
(effects
2091
2091
+
(font
2092
2092
+
(size 1 1)
2093
2093
+
(thickness 0.15)
2094
2094
+
)
2095
2095
+
)
2096
2096
+
)
2097
2097
+
(property "Price" "None"
2098
2098
+
(at 0 0 90)
2099
2099
+
(unlocked yes)
2100
2100
+
(layer "F.Fab")
2101
2101
+
(hide yes)
2102
2102
+
(uuid "ac57eafe-4d48-4bbc-84a5-d8c090c48825")
2103
2103
+
(effects
2104
2104
+
(font
2105
2105
+
(size 1 1)
2106
2106
+
(thickness 0.15)
2107
2107
+
)
2108
2108
+
)
2109
2109
+
)
2110
2110
+
(property "SnapEDA_Link" "https://www.snapeda.com/parts/TA-7642/Cicoil/view-part/?ref=snap"
2111
2111
+
(at 0 0 90)
2112
2112
+
(unlocked yes)
2113
2113
+
(layer "F.Fab")
2114
2114
+
(hide yes)
2115
2115
+
(uuid "9a33c865-ce7a-4fec-bdeb-149e442afc5a")
2116
2116
+
(effects
2117
2117
+
(font
2118
2118
+
(size 1 1)
2119
2119
+
(thickness 0.15)
2120
2120
+
)
2121
2121
+
)
2122
2122
+
)
2123
2123
+
(property "MP" "TA-7642"
2124
2124
+
(at 0 0 90)
2125
2125
+
(unlocked yes)
2126
2126
+
(layer "F.Fab")
2127
2127
+
(hide yes)
2128
2128
+
(uuid "ba7445f6-f61a-4842-8a49-987513442dba")
2129
2129
+
(effects
2130
2130
+
(font
2131
2131
+
(size 1 1)
2132
2132
+
(thickness 0.15)
2133
2133
+
)
2134
2134
+
)
2135
2135
+
)
2136
2136
+
(property "Availability" "Not in stock"
2137
2137
+
(at 0 0 90)
2138
2138
+
(unlocked yes)
2139
2139
+
(layer "F.Fab")
2140
2140
+
(hide yes)
2141
2141
+
(uuid "106aa91c-90ad-43bc-9746-69c1be0d506c")
2142
2142
+
(effects
2143
2143
+
(font
2144
2144
+
(size 1 1)
2145
2145
+
(thickness 0.15)
2146
2146
+
)
2147
2147
+
)
2148
2148
+
)
2149
2149
+
(property "Check_prices" "https://www.snapeda.com/parts/TA-7642/Cicoil/view-part/?ref=eda"
2150
2150
+
(at 0 0 90)
2151
2151
+
(unlocked yes)
2152
2152
+
(layer "F.Fab")
2153
2153
+
(hide yes)
2154
2154
+
(uuid "78d339bd-2d61-4ca9-8642-ed48529fbd64")
2155
2155
+
(effects
2156
2156
+
(font
2157
2157
+
(size 1 1)
2158
2158
+
(thickness 0.15)
2159
2159
+
)
2160
2160
+
)
2161
2161
+
)
2162
2162
+
(path "/9cd22f01-f021-48e6-8863-3ccc73265355")
2163
2163
+
(sheetname "/")
2164
2164
+
(sheetfile "strike-sensor.kicad_sch")
2165
2165
+
(attr through_hole)
2166
2166
+
(fp_line
2167
2167
+
(start 2.2537 0.254)
2168
2168
+
(end 2.6549 0.254)
2169
2169
+
(stroke
2170
2170
+
(width 0.2032)
2171
2171
+
(type solid)
2172
2172
+
)
2173
2173
+
(layer "F.SilkS")
2174
2174
+
(uuid "0271621a-972c-47d7-8db3-17ce5dfaeac0")
2175
2175
+
)
2176
2176
+
(fp_line
2177
2177
+
(start -0.2863 0.254)
2178
2178
+
(end 0.2863 0.254)
2179
2179
+
(stroke
2180
2180
+
(width 0.2032)
2181
2181
+
(type solid)
2182
2182
+
)
2183
2183
+
(layer "F.SilkS")
2184
2184
+
(uuid "d8be29d0-f007-435d-a5f2-fe60d230298f")
2185
2185
+
)
2186
2186
+
(fp_line
2187
2187
+
(start -2.6549 0.254)
2188
2188
+
(end -2.2537 0.254)
2189
2189
+
(stroke
2190
2190
+
(width 0.2032)
2191
2191
+
(type solid)
2192
2192
+
)
2193
2193
+
(layer "F.SilkS")
2194
2194
+
(uuid "69e376bf-021d-4db6-8369-2ed61fcd46df")
2195
2195
+
)
2196
2196
+
(fp_line
2197
2197
+
(start -2.0945 1.651)
2198
2198
+
(end 2.0945 1.651)
2199
2199
+
(stroke
2200
2200
+
(width 0.2032)
2201
2201
+
(type solid)
2202
2202
+
)
2203
2203
+
(layer "F.SilkS")
2204
2204
+
(uuid "12d9ba58-7226-4b40-b1c0-a71cd7f4f41d")
2205
2205
+
)
2206
2206
+
(fp_arc
2207
2207
+
(start 0.786299 -2.5484)
2208
2208
+
(mid 2.546275 -0.793203)
2209
2209
+
(end 2.0945 1.651)
2210
2210
+
(stroke
2211
2211
+
(width 0.2032)
2212
2212
+
(type solid)
2213
2213
+
)
2214
2214
+
(layer "F.SilkS")
2215
2215
+
(uuid "aed47cd2-41d2-4412-8ebd-9a2a230ab778")
2216
2216
+
)
2217
2217
+
(fp_arc
2218
2218
+
(start -2.0946 1.651)
2219
2219
+
(mid -2.54634 -0.793276)
2220
2220
+
(end -0.7863 -2.5485)
2221
2221
+
(stroke
2222
2222
+
(width 0.2032)
2223
2223
+
(type solid)
2224
2224
+
)
2225
2225
+
(layer "F.SilkS")
2226
2226
+
(uuid "deb927d2-daea-41c1-b64b-257b33d40996")
2227
2227
+
)
2228
2228
+
(pad "1" thru_hole circle
2229
2229
+
(at -2.54 0 90)
2230
2230
+
(size 1.3208 1.3208)
2231
2231
+
(drill 0.8128)
2232
2232
+
(layers "*.Cu" "*.Mask")
2233
2233
+
(remove_unused_layers no)
2234
2234
+
(net 4 "Net-(D2-A)")
2235
2235
+
(pintype "input")
2236
2236
+
(solder_mask_margin 0.102)
2237
2237
+
(uuid "41588c71-4ad7-46a4-b3a9-32eea19c8938")
2238
2238
+
)
2239
2239
+
(pad "2" thru_hole circle
2240
2240
+
(at 0 0 90)
2241
2241
+
(size 1.3208 1.3208)
2242
2242
+
(drill 0.8128)
2243
2243
+
(layers "*.Cu" "*.Mask")
2244
2244
+
(remove_unused_layers no)
2245
2245
+
(net 6 "Net-(C4-Pad1)")
2246
2246
+
(pintype "input")
2247
2247
+
(solder_mask_margin 0.102)
2248
2248
+
(uuid "6d928a60-4ec9-4e39-91c2-016ac5c0638d")
2249
2249
+
)
2250
2250
+
(pad "3" thru_hole circle
2251
2251
+
(at 2.54 0 90)
2252
2252
+
(size 1.3208 1.3208)
2253
2253
+
(drill 0.8128)
2254
2254
+
(layers "*.Cu" "*.Mask")
2255
2255
+
(remove_unused_layers no)
2256
2256
+
(net 5 "OUT")
2257
2257
+
(pintype "output")
2258
2258
+
(solder_mask_margin 0.102)
2259
2259
+
(uuid "922a87bd-c596-4c1d-a666-6a1867c9a595")
2260
2260
+
)
2261
2261
+
(embedded_fonts no)
2262
2262
+
(model "${KICAD9_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92-2_Wide.step"
2263
2263
+
(hide yes)
2264
2264
+
(offset
2265
2265
+
(xyz 0 0 0)
2266
2266
+
)
2267
2267
+
(scale
2268
2268
+
(xyz 1 1 1)
2269
2269
+
)
2270
2270
+
(rotate
2271
2271
+
(xyz 0 0 0)
2272
2272
+
)
2273
2273
+
)
2274
2274
+
(model "${KICAD9_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline_Wide.step"
2275
2275
+
(offset
2276
2276
+
(xyz -2.5 0 0)
2277
2277
+
)
2278
2278
+
(scale
2279
2279
+
(xyz 1 1 1)
2280
2280
+
)
2281
2281
+
(rotate
2282
2282
+
(xyz -0 -0 -0)
2283
2283
+
)
2284
2284
+
)
2285
2285
+
)
2286
2286
+
(footprint "Capacitor_Tantalum_SMD:CP_EIA-6032-20_AVX-F"
2287
2287
+
(layer "F.Cu")
2288
2288
+
(uuid "7c6af008-83fe-49fa-b3ce-d15f706aebfc")
2289
2289
+
(at 143 84.5 180)
2290
2290
+
(descr "Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC-7352 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
2291
2291
+
(tags "capacitor tantalum")
2292
2292
+
(property "Reference" "C1"
2293
2293
+
(at 0 -2.5 0)
2294
2294
+
(layer "F.SilkS")
2295
2295
+
(uuid "dabf4db4-26a1-4e0f-8951-553f7ebce421")
2296
2296
+
(effects
2297
2297
+
(font
2298
2298
+
(size 1 1)
2299
2299
+
(thickness 0.15)
2300
2300
+
)
2301
2301
+
)
2302
2302
+
)
2303
2303
+
(property "Value" "16v 100uF"
2304
2304
+
(at 0 2.55 0)
2305
2305
+
(layer "F.Fab")
2306
2306
+
(uuid "b1d066a5-dcd2-4723-ba01-c7982ffbfc09")
2307
2307
+
(effects
2308
2308
+
(font
2309
2309
+
(size 1 1)
2310
2310
+
(thickness 0.15)
2311
2311
+
)
2312
2312
+
)
2313
2313
+
)
2314
2314
+
(property "Datasheet" "~"
2315
2315
+
(at 0 0 0)
2316
2316
+
(layer "F.Fab")
2317
2317
+
(hide yes)
2318
2318
+
(uuid "50312b52-0719-435a-a9a6-2d44503b0544")
2319
2319
+
(effects
2320
2320
+
(font
2321
2321
+
(size 1.27 1.27)
2322
2322
+
(thickness 0.15)
2323
2323
+
)
2324
2324
+
)
2325
2325
+
)
2326
2326
+
(property "Description" "Polarized capacitor"
2327
2327
+
(at 0 0 0)
2328
2328
+
(layer "F.Fab")
2329
2329
+
(hide yes)
2330
2330
+
(uuid "95b8a5b7-4706-4f29-b877-f499edd8a57d")
2331
2331
+
(effects
2332
2332
+
(font
2333
2333
+
(size 1.27 1.27)
2334
2334
+
(thickness 0.15)
2335
2335
+
)
2336
2336
+
)
2337
2337
+
)
2338
2338
+
(property ki_fp_filters "CP_*")
2339
2339
+
(path "/c5e34dfe-bc4e-456c-8b07-a9f522e94f1f")
2340
2340
+
(sheetname "/")
2341
2341
+
(sheetfile "strike-sensor.kicad_sch")
2342
2342
+
(attr smd)
2343
2343
+
(fp_line
2344
2344
+
(start 3 -1.71)
2345
2345
+
(end -3.765 -1.71)
2346
2346
+
(stroke
2347
2347
+
(width 0.12)
2348
2348
+
(type solid)
2349
2349
+
)
2350
2350
+
(layer "F.SilkS")
2351
2351
+
(uuid "54c85af3-5cfe-4dc7-9640-43ef53a474b6")
2352
2352
+
)
2353
2353
+
(fp_line
2354
2354
+
(start -3.765 1.71)
2355
2355
+
(end 3 1.71)
2356
2356
+
(stroke
2357
2357
+
(width 0.12)
2358
2358
+
(type solid)
2359
2359
+
)
2360
2360
+
(layer "F.SilkS")
2361
2361
+
(uuid "aa9325c2-f2e3-4307-81aa-e9f4d37aa8f8")
2362
2362
+
)
2363
2363
+
(fp_line
2364
2364
+
(start -3.765 -1.71)
2365
2365
+
(end -3.765 1.71)
2366
2366
+
(stroke
2367
2367
+
(width 0.12)
2368
2368
+
(type solid)
2369
2369
+
)
2370
2370
+
(layer "F.SilkS")
2371
2371
+
(uuid "04aad544-252d-451d-b17a-de21855b3f92")
2372
2372
+
)
2373
2373
+
(fp_rect
2374
2374
+
(start -3.76 -1.85)
2375
2375
+
(end 3.76 1.85)
2376
2376
+
(stroke
2377
2377
+
(width 0.05)
2378
2378
+
(type solid)
2379
2379
+
)
2380
2380
+
(fill no)
2381
2381
+
(layer "F.CrtYd")
2382
2382
+
(uuid "66a0f110-9ba2-421f-9e62-9ff8399069e7")
2383
2383
+
)
2384
2384
+
(fp_line
2385
2385
+
(start 3 1.6)
2386
2386
+
(end 3 -1.6)
2387
2387
+
(stroke
2388
2388
+
(width 0.1)
2389
2389
+
(type solid)
2390
2390
+
)
2391
2391
+
(layer "F.Fab")
2392
2392
+
(uuid "5c0698b6-98e0-4763-9915-4eb798a0022d")
2393
2393
+
)
2394
2394
+
(fp_line
2395
2395
+
(start 3 -1.6)
2396
2396
+
(end -2.2 -1.6)
2397
2397
+
(stroke
2398
2398
+
(width 0.1)
2399
2399
+
(type solid)
2400
2400
+
)
2401
2401
+
(layer "F.Fab")
2402
2402
+
(uuid "c11c26b1-8da1-4293-8fcf-7aca84bc259f")
2403
2403
+
)
2404
2404
+
(fp_line
2405
2405
+
(start -2.2 -1.6)
2406
2406
+
(end -3 -0.8)
2407
2407
+
(stroke
2408
2408
+
(width 0.1)
2409
2409
+
(type solid)
2410
2410
+
)
2411
2411
+
(layer "F.Fab")
2412
2412
+
(uuid "fe2a1ced-df0b-4f18-ba6b-2f24e6da8385")
2413
2413
+
)
2414
2414
+
(fp_line
2415
2415
+
(start -3 1.6)
2416
2416
+
(end 3 1.6)
2417
2417
+
(stroke
2418
2418
+
(width 0.1)
2419
2419
+
(type solid)
2420
2420
+
)
2421
2421
+
(layer "F.Fab")
2422
2422
+
(uuid "f3173b97-ced0-4a45-b62f-7009cf39750a")
2423
2423
+
)
2424
2424
+
(fp_line
2425
2425
+
(start -3 -0.8)
2426
2426
+
(end -3 1.6)
2427
2427
+
(stroke
2428
2428
+
(width 0.1)
2429
2429
+
(type solid)
2430
2430
+
)
2431
2431
+
(layer "F.Fab")
2432
2432
+
(uuid "a556ab10-9166-4eda-a80d-62ff49476488")
2433
2433
+
)
2434
2434
+
(fp_text user "${REFERENCE}"
2435
2435
+
(at 0 0 0)
2436
2436
+
(layer "F.Fab")
2437
2437
+
(uuid "1014c047-d269-411d-8728-6aaa3296eabf")
2438
2438
+
(effects
2439
2439
+
(font
2440
2440
+
(size 1 1)
2441
2441
+
(thickness 0.15)
2442
2442
+
)
2443
2443
+
)
2444
2444
+
)
2445
2445
+
(pad "1" smd roundrect
2446
2446
+
(at -2.47 0 180)
2447
2447
+
(size 2.07 2.39)
2448
2448
+
(layers "F.Cu" "F.Mask" "F.Paste")
2449
2449
+
(roundrect_rratio 0.120773)
2450
2450
+
(net 1 "Net-(C1-Pad1)")
2451
2451
+
(pintype "passive")
2452
2452
+
(uuid "021620cf-f54c-499e-b38e-b2d1d835ebac")
2453
2453
+
)
2454
2454
+
(pad "2" smd roundrect
2455
2455
+
(at 2.47 0 180)
2456
2456
+
(size 2.07 2.39)
2457
2457
+
(layers "F.Cu" "F.Mask" "F.Paste")
2458
2458
+
(roundrect_rratio 0.120773)
2459
2459
+
(net 2 "GND")
2460
2460
+
(pintype "passive")
2461
2461
+
(uuid "243a0c2d-098f-48a7-9510-ebceaa2f2ffc")
2462
2462
+
)
2463
2463
+
(embedded_fonts no)
2464
2464
+
(model "${KICAD9_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-6032-20_AVX-F.step"
2465
2465
+
(offset
2466
2466
+
(xyz 0 0 0)
2467
2467
+
)
2468
2468
+
(scale
2469
2469
+
(xyz 1 1 1)
2470
2470
+
)
2471
2471
+
(rotate
2472
2472
+
(xyz 0 0 0)
2473
2473
+
)
2474
2474
+
)
2475
2475
+
)
2476
2476
+
(footprint "Resistor_SMD:R_0603_1608Metric"
2477
2477
+
(layer "F.Cu")
2478
2478
+
(uuid "8359ec60-3ff2-4243-9674-3f1a26a1d444")
2479
2479
+
(at 148.5 91 -90)
2480
2480
+
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
2481
2481
+
(tags "resistor")
2482
2482
+
(property "Reference" "R4"
2483
2483
+
(at 2.5 0 0)
2484
2484
+
(layer "F.SilkS")
2485
2485
+
(uuid "e7282ed2-8e34-4472-b606-1c1afe961858")
2486
2486
+
(effects
2487
2487
+
(font
2488
2488
+
(size 1 1)
2489
2489
+
(thickness 0.15)
2490
2490
+
)
2491
2491
+
)
2492
2492
+
)
2493
2493
+
(property "Value" "1k"
2494
2494
+
(at 0 1.43 90)
2495
2495
+
(layer "F.Fab")
2496
2496
+
(uuid "308daa5b-bc64-440d-bb01-7c07aa247ec9")
2497
2497
+
(effects
2498
2498
+
(font
2499
2499
+
(size 1 1)
2500
2500
+
(thickness 0.15)
2501
2501
+
)
2502
2502
+
)
2503
2503
+
)
2504
2504
+
(property "Datasheet" "~"
2505
2505
+
(at 0 0 90)
2506
2506
+
(layer "F.Fab")
2507
2507
+
(hide yes)
2508
2508
+
(uuid "2e2d40d5-0b99-4f42-85e2-c78127b936b9")
2509
2509
+
(effects
2510
2510
+
(font
2511
2511
+
(size 1.27 1.27)
2512
2512
+
(thickness 0.15)
2513
2513
+
)
2514
2514
+
)
2515
2515
+
)
2516
2516
+
(property "Description" "Resistor"
2517
2517
+
(at 0 0 90)
2518
2518
+
(layer "F.Fab")
2519
2519
+
(hide yes)
2520
2520
+
(uuid "01ce1859-4c92-4033-90d8-657d451c0aa8")
2521
2521
+
(effects
2522
2522
+
(font
2523
2523
+
(size 1.27 1.27)
2524
2524
+
(thickness 0.15)
2525
2525
+
)
2526
2526
+
)
2527
2527
+
)
2528
2528
+
(property ki_fp_filters "R_*")
2529
2529
+
(path "/efb6e24d-855a-4856-accd-99c67ede4d37")
2530
2530
+
(sheetname "/")
2531
2531
+
(sheetfile "strike-sensor.kicad_sch")
2532
2532
+
(attr smd)
2533
2533
+
(fp_line
2534
2534
+
(start -0.237258 0.5225)
2535
2535
+
(end 0.237258 0.5225)
2536
2536
+
(stroke
2537
2537
+
(width 0.12)
2538
2538
+
(type solid)
2539
2539
+
)
2540
2540
+
(layer "F.SilkS")
2541
2541
+
(uuid "49bb7a12-1894-48ef-ac83-222c375adab2")
2542
2542
+
)
2543
2543
+
(fp_line
2544
2544
+
(start -0.237258 -0.5225)
2545
2545
+
(end 0.237258 -0.5225)
2546
2546
+
(stroke
2547
2547
+
(width 0.12)
2548
2548
+
(type solid)
2549
2549
+
)
2550
2550
+
(layer "F.SilkS")
2551
2551
+
(uuid "22ba54fb-4bed-4263-bf58-14e232933796")
2552
2552
+
)
2553
2553
+
(fp_rect
2554
2554
+
(start -1.48 -0.73)
2555
2555
+
(end 1.48 0.73)
2556
2556
+
(stroke
2557
2557
+
(width 0.05)
2558
2558
+
(type solid)
2559
2559
+
)
2560
2560
+
(fill no)
2561
2561
+
(layer "F.CrtYd")
2562
2562
+
(uuid "1f168c10-bd2f-49bc-a4d6-496dd1eec4ea")
2563
2563
+
)
2564
2564
+
(fp_rect
2565
2565
+
(start -0.8 -0.4125)
2566
2566
+
(end 0.8 0.4125)
2567
2567
+
(stroke
2568
2568
+
(width 0.1)
2569
2569
+
(type solid)
2570
2570
+
)
2571
2571
+
(fill no)
2572
2572
+
(layer "F.Fab")
2573
2573
+
(uuid "a40a9b91-1838-40f8-891c-a297d0787680")
2574
2574
+
)
2575
2575
+
(fp_text user "${REFERENCE}"
2576
2576
+
(at 0 0 90)
2577
2577
+
(layer "F.Fab")
2578
2578
+
(uuid "b8597092-54f6-4e77-9789-bcbcc99eef79")
2579
2579
+
(effects
2580
2580
+
(font
2581
2581
+
(size 0.4 0.4)
2582
2582
+
(thickness 0.06)
2583
2583
+
)
2584
2584
+
)
2585
2585
+
)
2586
2586
+
(pad "1" smd roundrect
2587
2587
+
(at -0.825 0 270)
2588
2588
+
(size 0.8 0.95)
2589
2589
+
(layers "F.Cu" "F.Mask" "F.Paste")
2590
2590
+
(roundrect_rratio 0.25)
2591
2591
+
(net 8 "Net-(D1-K)")
2592
2592
+
(pintype "passive")
2593
2593
+
(uuid "b9e5b72d-b23f-47ad-b556-1bbc8e0dcc02")
2594
2594
+
)
2595
2595
+
(pad "2" smd roundrect
2596
2596
+
(at 0.825 0 270)
2597
2597
+
(size 0.8 0.95)
2598
2598
+
(layers "F.Cu" "F.Mask" "F.Paste")
2599
2599
+
(roundrect_rratio 0.25)
2600
2600
+
(net 2 "GND")
2601
2601
+
(pintype "passive")
2602
2602
+
(uuid "2690d3b7-fbec-4f06-a32d-34cb7844daf9")
2603
2603
+
)
2604
2604
+
(embedded_fonts no)
2605
2605
+
(model "${KICAD9_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
2606
2606
+
(offset
2607
2607
+
(xyz 0 0 0)
2608
2608
+
)
2609
2609
+
(scale
2610
2610
+
(xyz 1 1 1)
2611
2611
+
)
2612
2612
+
(rotate
2613
2613
+
(xyz 0 0 0)
2614
2614
+
)
2615
2615
+
)
2616
2616
+
)
2617
2617
+
(footprint "MountingHole:MountingHole_2.5mm"
2618
2618
+
(layer "F.Cu")
2619
2619
+
(uuid "85b3cbae-5d50-4a43-a9d2-4740c6bb5833")
2620
2620
+
(at 155.5 85)
2621
2621
+
(descr "Mounting Hole 2.5mm, no annular, generated by kicad-footprint-generator mountinghole.py")
2622
2622
+
(tags "mountinghole")
2623
2623
+
(property "Reference" "REF4"
2624
2624
+
(at 0 3.5 0)
2625
2625
+
(layer "F.SilkS")
2626
2626
+
(uuid "e27321b1-9393-4786-9aee-3574887f83f0")
2627
2627
+
(effects
2628
2628
+
(font
2629
2629
+
(size 1 1)
2630
2630
+
(thickness 0.15)
2631
2631
+
)
2632
2632
+
)
2633
2633
+
)
2634
2634
+
(property "Value" "MountingHole_2.5mm"
2635
2635
+
(at 0 3.45 0)
2636
2636
+
(layer "F.Fab")
2637
2637
+
(uuid "dec57cd5-a10d-4d70-8104-8cdc63337bb2")
2638
2638
+
(effects
2639
2639
+
(font
2640
2640
+
(size 1 1)
2641
2641
+
(thickness 0.15)
2642
2642
+
)
2643
2643
+
)
2644
2644
+
)
2645
2645
+
(property "Datasheet" ""
2646
2646
+
(at 0 0 0)
2647
2647
+
(layer "F.Fab")
2648
2648
+
(hide yes)
2649
2649
+
(uuid "59231103-d17b-4ee9-87f0-545a26bb3f60")
2650
2650
+
(effects
2651
2651
+
(font
2652
2652
+
(size 1.27 1.27)
2653
2653
+
(thickness 0.15)
2654
2654
+
)
2655
2655
+
)
2656
2656
+
)
2657
2657
+
(property "Description" ""
2658
2658
+
(at 0 0 0)
2659
2659
+
(layer "F.Fab")
2660
2660
+
(hide yes)
2661
2661
+
(uuid "6a1e6124-e753-4646-8602-8045cb7f46cd")
2662
2662
+
(effects
2663
2663
+
(font
2664
2664
+
(size 1.27 1.27)
2665
2665
+
(thickness 0.15)
2666
2666
+
)
2667
2667
+
)
2668
2668
+
)
2669
2669
+
(attr exclude_from_pos_files exclude_from_bom)
2670
2670
+
(fp_circle
2671
2671
+
(center 0 0)
2672
2672
+
(end 2.5 0)
2673
2673
+
(stroke
2674
2674
+
(width 0.15)
2675
2675
+
(type solid)
2676
2676
+
)
2677
2677
+
(fill no)
2678
2678
+
(layer "Cmts.User")
2679
2679
+
(uuid "b073f7de-e131-4e7f-991a-219966bb6e9c")
2680
2680
+
)
2681
2681
+
(fp_circle
2682
2682
+
(center 0 0)
2683
2683
+
(end 2.75 0)
2684
2684
+
(stroke
2685
2685
+
(width 0.05)
2686
2686
+
(type solid)
2687
2687
+
)
2688
2688
+
(fill no)
2689
2689
+
(layer "F.CrtYd")
2690
2690
+
(uuid "f144e128-ecf3-4a81-b527-130b3baeb321")
2691
2691
+
)
2692
2692
+
(fp_text user "${REFERENCE}"
2693
2693
+
(at 0 0 0)
2694
2694
+
(layer "F.Fab")
2695
2695
+
(uuid "f4c0c19e-f5c2-4b0f-af17-745f75eb4019")
2696
2696
+
(effects
2697
2697
+
(font
2698
2698
+
(size 1 1)
2699
2699
+
(thickness 0.15)
2700
2700
+
)
2701
2701
+
)
2702
2702
+
)
2703
2703
+
(pad "" np_thru_hole circle
2704
2704
+
(at 0 0)
2705
2705
+
(size 2.5 2.5)
2706
2706
+
(drill 2.5)
2707
2707
+
(layers "*.Cu" "*.Mask")
2708
2708
+
(uuid "900e0b2b-9bbc-496e-bf6f-27cd1dbcbc9e")
2709
2709
+
)
2710
2710
+
(embedded_fonts no)
2711
2711
+
)
2712
2712
+
(footprint "Capacitor_Tantalum_SMD:CP_EIA-6032-20_AVX-F"
2713
2713
+
(layer "F.Cu")
2714
2714
+
(uuid "86a7ffad-5681-45b3-ab35-6e8ac9a838dd")
2715
2715
+
(at 143 89.5)
2716
2716
+
(descr "Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC-7352 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
2717
2717
+
(tags "capacitor tantalum")
2718
2718
+
(property "Reference" "C2"
2719
2719
+
(at 0 2.5 0)
2720
2720
+
(layer "F.SilkS")
2721
2721
+
(uuid "ef98ed9c-eef8-4ff2-9d6c-fd8e8a5a0c87")
2722
2722
+
(effects
2723
2723
+
(font
2724
2724
+
(size 1 1)
2725
2725
+
(thickness 0.15)
2726
2726
+
)
2727
2727
+
)
2728
2728
+
)
2729
2729
+
(property "Value" "16v 100uF"
2730
2730
+
(at 0 2.55 0)
2731
2731
+
(layer "F.Fab")
2732
2732
+
(uuid "a7ac1c15-7a09-4bb6-b11a-bcfe2dd31cf7")
2733
2733
+
(effects
2734
2734
+
(font
2735
2735
+
(size 1 1)
2736
2736
+
(thickness 0.15)
2737
2737
+
)
2738
2738
+
)
2739
2739
+
)
2740
2740
+
(property "Datasheet" "~"
2741
2741
+
(at 0 0 0)
2742
2742
+
(layer "F.Fab")
2743
2743
+
(hide yes)
2744
2744
+
(uuid "613902ad-178d-4d54-8ef7-311f331ee3ef")
2745
2745
+
(effects
2746
2746
+
(font
2747
2747
+
(size 1.27 1.27)
2748
2748
+
(thickness 0.15)
2749
2749
+
)
2750
2750
+
)
2751
2751
+
)
2752
2752
+
(property "Description" "Polarized capacitor"
2753
2753
+
(at 0 0 0)
2754
2754
+
(layer "F.Fab")
2755
2755
+
(hide yes)
2756
2756
+
(uuid "011ec59d-c993-415f-b261-e2b4bc73ee91")
2757
2757
+
(effects
2758
2758
+
(font
2759
2759
+
(size 1.27 1.27)
2760
2760
+
(thickness 0.15)
2761
2761
+
)
2762
2762
+
)
2763
2763
+
)
2764
2764
+
(property ki_fp_filters "CP_*")
2765
2765
+
(path "/87b5f4bc-b75d-45c1-bef4-8b1e6d0882f9")
2766
2766
+
(sheetname "/")
2767
2767
+
(sheetfile "strike-sensor.kicad_sch")
2768
2768
+
(attr smd)
2769
2769
+
(fp_line
2770
2770
+
(start -3.765 -1.71)
2771
2771
+
(end -3.765 1.71)
2772
2772
+
(stroke
2773
2773
+
(width 0.12)
2774
2774
+
(type solid)
2775
2775
+
)
2776
2776
+
(layer "F.SilkS")
2777
2777
+
(uuid "7a2e62f6-0767-4bba-a535-0c238efc93c1")
2778
2778
+
)
2779
2779
+
(fp_line
2780
2780
+
(start -3.765 1.71)
2781
2781
+
(end 3 1.71)
2782
2782
+
(stroke
2783
2783
+
(width 0.12)
2784
2784
+
(type solid)
2785
2785
+
)
2786
2786
+
(layer "F.SilkS")
2787
2787
+
(uuid "ad79c3bc-c308-4fc1-b115-cc9489caf9d4")
2788
2788
+
)
2789
2789
+
(fp_line
2790
2790
+
(start 3 -1.71)
2791
2791
+
(end -3.765 -1.71)
2792
2792
+
(stroke
2793
2793
+
(width 0.12)
2794
2794
+
(type solid)
2795
2795
+
)
2796
2796
+
(layer "F.SilkS")
2797
2797
+
(uuid "db018893-126d-4a2c-95e6-eea5e82d979d")
2798
2798
+
)
2799
2799
+
(fp_rect
2800
2800
+
(start -3.76 -1.85)
2801
2801
+
(end 3.76 1.85)
2802
2802
+
(stroke
2803
2803
+
(width 0.05)
2804
2804
+
(type solid)
2805
2805
+
)
2806
2806
+
(fill no)
2807
2807
+
(layer "F.CrtYd")
2808
2808
+
(uuid "50d90d11-d1ad-4248-acb8-6ee0c279e61f")
2809
2809
+
)
2810
2810
+
(fp_line
2811
2811
+
(start -3 -0.8)
2812
2812
+
(end -3 1.6)
2813
2813
+
(stroke
2814
2814
+
(width 0.1)
2815
2815
+
(type solid)
2816
2816
+
)
2817
2817
+
(layer "F.Fab")
2818
2818
+
(uuid "670eebc3-c071-4b80-aaac-a81862e89162")
2819
2819
+
)
2820
2820
+
(fp_line
2821
2821
+
(start -3 1.6)
2822
2822
+
(end 3 1.6)
2823
2823
+
(stroke
2824
2824
+
(width 0.1)
2825
2825
+
(type solid)
2826
2826
+
)
2827
2827
+
(layer "F.Fab")
2828
2828
+
(uuid "97f5cb70-2b38-4f6c-8e1c-c2a4c0658346")
2829
2829
+
)
2830
2830
+
(fp_line
2831
2831
+
(start -2.2 -1.6)
2832
2832
+
(end -3 -0.8)
2833
2833
+
(stroke
2834
2834
+
(width 0.1)
2835
2835
+
(type solid)
2836
2836
+
)
2837
2837
+
(layer "F.Fab")
2838
2838
+
(uuid "9dd27d97-051c-432f-a8ad-c8d711d1479c")
2839
2839
+
)
2840
2840
+
(fp_line
2841
2841
+
(start 3 -1.6)
2842
2842
+
(end -2.2 -1.6)
2843
2843
+
(stroke
2844
2844
+
(width 0.1)
2845
2845
+
(type solid)
2846
2846
+
)
2847
2847
+
(layer "F.Fab")
2848
2848
+
(uuid "9c309a59-14d7-4df9-b9b1-c127ef5f0382")
2849
2849
+
)
2850
2850
+
(fp_line
2851
2851
+
(start 3 1.6)
2852
2852
+
(end 3 -1.6)
2853
2853
+
(stroke
2854
2854
+
(width 0.1)
2855
2855
+
(type solid)
2856
2856
+
)
2857
2857
+
(layer "F.Fab")
2858
2858
+
(uuid "0170e5dd-6c5b-476a-bd5d-1f6b9de5faa4")
2859
2859
+
)
2860
2860
+
(fp_text user "${REFERENCE}"
2861
2861
+
(at 0 0 0)
2862
2862
+
(layer "F.Fab")
2863
2863
+
(uuid "2f3f5ef4-d99b-4188-a1a6-7a0d59a98662")
2864
2864
+
(effects
2865
2865
+
(font
2866
2866
+
(size 1 1)
2867
2867
+
(thickness 0.15)
2868
2868
+
)
2869
2869
+
)
2870
2870
+
)
2871
2871
+
(pad "1" smd roundrect
2872
2872
+
(at -2.47 0)
2873
2873
+
(size 2.07 2.39)
2874
2874
+
(layers "F.Cu" "F.Mask" "F.Paste")
2875
2875
+
(roundrect_rratio 0.120773)
2876
2876
+
(net 3 "Net-(C2-Pad1)")
2877
2877
+
(pintype "passive")
2878
2878
+
(uuid "b4563628-432e-4c4d-80ae-d657de61308c")
2879
2879
+
)
2880
2880
+
(pad "2" smd roundrect
2881
2881
+
(at 2.47 0)
2882
2882
+
(size 2.07 2.39)
2883
2883
+
(layers "F.Cu" "F.Mask" "F.Paste")
2884
2884
+
(roundrect_rratio 0.120773)
2885
2885
+
(net 2 "GND")
2886
2886
+
(pintype "passive")
2887
2887
+
(uuid "7e6b2a07-5b0f-4cb8-afe7-b168a2958a47")
2888
2888
+
)
2889
2889
+
(embedded_fonts no)
2890
2890
+
(model "${KICAD9_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-6032-20_AVX-F.step"
2891
2891
+
(offset
2892
2892
+
(xyz 0 0 0)
2893
2893
+
)
2894
2894
+
(scale
2895
2895
+
(xyz 1 1 1)
2896
2896
+
)
2897
2897
+
(rotate
2898
2898
+
(xyz 0 0 0)
2899
2899
+
)
2900
2900
+
)
2901
2901
+
)
2902
2902
+
(footprint "Connector_JST:JST_PH_S3B-PH-K_1x03_P2.00mm_Horizontal"
2903
2903
+
(layer "F.Cu")
2904
2904
+
(uuid "8b61318f-c557-483c-8732-7e1622c2db68")
2905
2905
+
(at 152 96 90)
2906
2906
+
(descr "JST PH series connector, S3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator")
2907
2907
+
(tags "connector JST PH horizontal")
2908
2908
+
(property "Reference" "J1"
2909
2909
+
(at -3.5 -1 0)
2910
2910
+
(layer "F.SilkS")
2911
2911
+
(uuid "2cdeb2ec-22eb-421a-a9eb-19f532660212")
2912
2912
+
(effects
2913
2913
+
(font
2914
2914
+
(size 1 1)
2915
2915
+
(thickness 0.15)
2916
2916
+
)
2917
2917
+
)
2918
2918
+
)
2919
2919
+
(property "Value" "Conn_01x03_Socket"
2920
2920
+
(at 2 7.45 90)
2921
2921
+
(layer "F.Fab")
2922
2922
+
(uuid "90a2fe48-0d73-46b1-b3f2-d317e920bf83")
2923
2923
+
(effects
2924
2924
+
(font
2925
2925
+
(size 1 1)
2926
2926
+
(thickness 0.15)
2927
2927
+
)
2928
2928
+
)
2929
2929
+
)
2930
2930
+
(property "Datasheet" "~"
2931
2931
+
(at 0 0 90)
2932
2932
+
(layer "F.Fab")
2933
2933
+
(hide yes)
2934
2934
+
(uuid "b8bb254c-a16e-414f-a269-db8d956eb9b7")
2935
2935
+
(effects
2936
2936
+
(font
2937
2937
+
(size 1.27 1.27)
2938
2938
+
(thickness 0.15)
2939
2939
+
)
2940
2940
+
)
2941
2941
+
)
2942
2942
+
(property "Description" "Generic connector, single row, 01x03, script generated"
2943
2943
+
(at 0 0 90)
2944
2944
+
(layer "F.Fab")
2945
2945
+
(hide yes)
2946
2946
+
(uuid "986c1b7d-d3bc-451c-9fe5-eac41b839f3b")
2947
2947
+
(effects
2948
2948
+
(font
2949
2949
+
(size 1.27 1.27)
2950
2950
+
(thickness 0.15)
2951
2951
+
)
2952
2952
+
)
2953
2953
+
)
2954
2954
+
(property ki_fp_filters "Connector*:*_1x??_*")
2955
2955
+
(path "/0e386ad0-e4b8-4e12-a169-43d1e88648ca")
2956
2956
+
(sheetname "/")
2957
2957
+
(sheetfile "strike-sensor.kicad_sch")
2958
2958
+
(attr through_hole)
2959
2959
+
(fp_line
2960
2960
+
(start 6.06 -1.46)
2961
2961
+
(end 5.14 -1.46)
2962
2962
+
(stroke
2963
2963
+
(width 0.12)
2964
2964
+
(type solid)
2965
2965
+
)
2966
2966
+
(layer "F.SilkS")
2967
2967
+
(uuid "4d9e3c66-64c7-48ad-a7f9-072032f2965d")
2968
2968
+
)
2969
2969
+
(fp_line
2970
2970
+
(start 5.14 -1.46)
2971
2971
+
(end 5.14 0.14)
2972
2972
+
(stroke
2973
2973
+
(width 0.12)
2974
2974
+
(type solid)
2975
2975
+
)
2976
2976
+
(layer "F.SilkS")
2977
2977
+
(uuid "a2803c49-6f2d-479e-8f05-53cca658d62e")
2978
2978
+
)
2979
2979
+
(fp_line
2980
2980
+
(start -1.14 -1.46)
2981
2981
+
(end -2.06 -1.46)
2982
2982
+
(stroke
2983
2983
+
(width 0.12)
2984
2984
+
(type solid)
2985
2985
+
)
2986
2986
+
(layer "F.SilkS")
2987
2987
+
(uuid "e074bd4e-0e4d-4eb1-9132-8bb0a3081a0f")
2988
2988
+
)
2989
2989
+
(fp_line
2990
2990
+
(start -2.06 -1.46)
2991
2991
+
(end -2.06 6.36)
2992
2992
+
(stroke
2993
2993
+
(width 0.12)
2994
2994
+
(type solid)
2995
2995
+
)
2996
2996
+
(layer "F.SilkS")
2997
2997
+
(uuid "ea991f90-2f21-4590-98d9-93f6550f9d45")
2998
2998
+
)
2999
2999
+
(fp_line
3000
3000
+
(start 6.06 0.14)
3001
3001
+
(end 5.14 0.14)
3002
3002
+
(stroke
3003
3003
+
(width 0.12)
3004
3004
+
(type solid)
3005
3005
+
)
3006
3006
+
(layer "F.SilkS")
3007
3007
+
(uuid "81090f5c-5076-44e4-9c8f-9324b6484260")
3008
3008
+
)
3009
3009
+
(fp_line
3010
3010
+
(start 5.14 0.14)
3011
3011
+
(end 4.86 0.14)
3012
3012
+
(stroke
3013
3013
+
(width 0.12)
3014
3014
+
(type solid)
3015
3015
+
)
3016
3016
+
(layer "F.SilkS")
3017
3017
+
(uuid "a00ca592-b25a-42f9-aaa3-58c9c0fc3abe")
3018
3018
+
)
3019
3019
+
(fp_line
3020
3020
+
(start -0.86 0.14)
3021
3021
+
(end -0.86 -1.075)
3022
3022
+
(stroke
3023
3023
+
(width 0.12)
3024
3024
+
(type solid)
3025
3025
+
)
3026
3026
+
(layer "F.SilkS")
3027
3027
+
(uuid "29da0a4f-0238-4d8a-83a1-697708068a61")
3028
3028
+
)
3029
3029
+
(fp_line
3030
3030
+
(start -0.86 0.14)
3031
3031
+
(end -1.14 0.14)
3032
3032
+
(stroke
3033
3033
+
(width 0.12)
3034
3034
+
(type solid)
3035
3035
+
)
3036
3036
+
(layer "F.SilkS")
3037
3037
+
(uuid "5588f0dd-28c9-401b-8130-5af3565d29fa")
3038
3038
+
)
3039
3039
+
(fp_line
3040
3040
+
(start -1.14 0.14)
3041
3041
+
(end -1.14 -1.46)
3042
3042
+
(stroke
3043
3043
+
(width 0.12)
3044
3044
+
(type solid)
3045
3045
+
)
3046
3046
+
(layer "F.SilkS")
3047
3047
+
(uuid "030e6507-ed4c-46dd-81e7-9878accfcc59")
3048
3048
+
)
3049
3049
+
(fp_line
3050
3050
+
(start -2.06 0.14)
3051
3051
+
(end -1.14 0.14)
3052
3052
+
(stroke
3053
3053
+
(width 0.12)
3054
3054
+
(type solid)
3055
3055
+
)
3056
3056
+
(layer "F.SilkS")
3057
3057
+
(uuid "3a2cca2f-0048-4baf-9817-a3198154bd09")
3058
3058
+
)
3059
3059
+
(fp_line
3060
3060
+
(start 3.5 2)
3061
3061
+
(end 3.5 6.36)
3062
3062
+
(stroke
3063
3063
+
(width 0.12)
3064
3064
+
(type solid)
3065
3065
+
)
3066
3066
+
(layer "F.SilkS")
3067
3067
+
(uuid "2eaa8b78-6e00-4358-afd3-d1838247ab5f")
3068
3068
+
)
3069
3069
+
(fp_line
3070
3070
+
(start 0.5 2)
3071
3071
+
(end 3.5 2)
3072
3072
+
(stroke
3073
3073
+
(width 0.12)
3074
3074
+
(type solid)
3075
3075
+
)
3076
3076
+
(layer "F.SilkS")
3077
3077
+
(uuid "c9b32e00-9bfe-4015-b8fe-04ed71badb23")
3078
3078
+
)
3079
3079
+
(fp_line
3080
3080
+
(start -0.3 4.1)
3081
3081
+
(end -0.3 6.36)
3082
3082
+
(stroke
3083
3083
+
(width 0.12)
3084
3084
+
(type solid)
3085
3085
+
)
3086
3086
+
(layer "F.SilkS")
3087
3087
+
(uuid "2e54ce3a-f134-477d-9b01-141c89c8df08")
3088
3088
+
)
3089
3089
+
(fp_line
3090
3090
+
(start -0.8 4.1)
3091
3091
+
(end -0.8 6.36)
3092
3092
+
(stroke
3093
3093
+
(width 0.12)
3094
3094
+
(type solid)
3095
3095
+
)
3096
3096
+
(layer "F.SilkS")
3097
3097
+
(uuid "ce489b38-6a3e-458b-ba31-5eb24eb6f4c8")
3098
3098
+
)
3099
3099
+
(fp_line
3100
3100
+
(start 6.06 6.36)
3101
3101
+
(end 6.06 -1.46)
3102
3102
+
(stroke
3103
3103
+
(width 0.12)
3104
3104
+
(type solid)
3105
3105
+
)
3106
3106
+
(layer "F.SilkS")
3107
3107
+
(uuid "3d26f4aa-68bd-416e-8647-86e96d8cd57f")
3108
3108
+
)
3109
3109
+
(fp_line
3110
3110
+
(start 0.5 6.36)
3111
3111
+
(end 0.5 2)
3112
3112
+
(stroke
3113
3113
+
(width 0.12)
3114
3114
+
(type solid)
3115
3115
+
)
3116
3116
+
(layer "F.SilkS")
3117
3117
+
(uuid "82e064ce-873a-4697-aea3-2f0b6c5149e1")
3118
3118
+
)
3119
3119
+
(fp_line
3120
3120
+
(start -2.06 6.36)
3121
3121
+
(end 6.06 6.36)
3122
3122
+
(stroke
3123
3123
+
(width 0.12)
3124
3124
+
(type solid)
3125
3125
+
)
3126
3126
+
(layer "F.SilkS")
3127
3127
+
(uuid "cfc07fcd-66aa-4e23-ab0e-4faf78688189")
3128
3128
+
)
3129
3129
+
(fp_rect
3130
3130
+
(start 4.3 2.5)
3131
3131
+
(end 5.3 4.1)
3132
3132
+
(stroke
3133
3133
+
(width 0.12)
3134
3134
+
(type solid)
3135
3135
+
)
3136
3136
+
(fill no)
3137
3137
+
(layer "F.SilkS")
3138
3138
+
(uuid "21e14c15-a317-4f7e-b09a-6586eda37a01")
3139
3139
+
)
3140
3140
+
(fp_rect
3141
3141
+
(start -1.3 2.5)
3142
3142
+
(end -0.3 4.1)
3143
3143
+
(stroke
3144
3144
+
(width 0.12)
3145
3145
+
(type solid)
3146
3146
+
)
3147
3147
+
(fill no)
3148
3148
+
(layer "F.SilkS")
3149
3149
+
(uuid "93597d37-d0b5-4414-b52e-d40d9c7282d4")
3150
3150
+
)
3151
3151
+
(fp_rect
3152
3152
+
(start -2.45 -1.85)
3153
3153
+
(end 6.45 6.75)
3154
3154
+
(stroke
3155
3155
+
(width 0.05)
3156
3156
+
(type solid)
3157
3157
+
)
3158
3158
+
(fill no)
3159
3159
+
(layer "F.CrtYd")
3160
3160
+
(uuid "099998ef-44ee-44cb-b05c-be73f9559c20")
3161
3161
+
)
3162
3162
+
(fp_line
3163
3163
+
(start 5.95 -1.35)
3164
3164
+
(end 5.25 -1.35)
3165
3165
+
(stroke
3166
3166
+
(width 0.1)
3167
3167
+
(type solid)
3168
3168
+
)
3169
3169
+
(layer "F.Fab")
3170
3170
+
(uuid "4449066c-70ea-4050-a3dd-4f8bf54669f3")
3171
3171
+
)
3172
3172
+
(fp_line
3173
3173
+
(start 5.25 -1.35)
3174
3174
+
(end 5.25 0.25)
3175
3175
+
(stroke
3176
3176
+
(width 0.1)
3177
3177
+
(type solid)
3178
3178
+
)
3179
3179
+
(layer "F.Fab")
3180
3180
+
(uuid "49389838-f5d3-4e67-bb04-c987327c9f44")
3181
3181
+
)
3182
3182
+
(fp_line
3183
3183
+
(start -1.25 -1.35)
3184
3184
+
(end -1.95 -1.35)
3185
3185
+
(stroke
3186
3186
+
(width 0.1)
3187
3187
+
(type solid)
3188
3188
+
)
3189
3189
+
(layer "F.Fab")
3190
3190
+
(uuid "65ec1bf9-6434-43da-814c-a86fb6e02c5f")
3191
3191
+
)
3192
3192
+
(fp_line
3193
3193
+
(start -1.95 -1.35)
3194
3194
+
(end -1.95 6.25)
3195
3195
+
(stroke
3196
3196
+
(width 0.1)
3197
3197
+
(type solid)
3198
3198
+
)
3199
3199
+
(layer "F.Fab")
3200
3200
+
(uuid "9eec3578-f307-4883-b9d8-a42888a20c2c")
3201
3201
+
)
3202
3202
+
(fp_line
3203
3203
+
(start 5.25 0.25)
3204
3204
+
(end -1.25 0.25)
3205
3205
+
(stroke
3206
3206
+
(width 0.1)
3207
3207
+
(type solid)
3208
3208
+
)
3209
3209
+
(layer "F.Fab")
3210
3210
+
(uuid "ed22b746-465f-40dd-8af6-79b277452152")
3211
3211
+
)
3212
3212
+
(fp_line
3213
3213
+
(start -1.25 0.25)
3214
3214
+
(end -1.25 -1.35)
3215
3215
+
(stroke
3216
3216
+
(width 0.1)
3217
3217
+
(type solid)
3218
3218
+
)
3219
3219
+
(layer "F.Fab")
3220
3220
+
(uuid "1df5be80-429b-48da-bc7f-ff687c6ccf54")
3221
3221
+
)
3222
3222
+
(fp_line
3223
3223
+
(start 0 0.875)
3224
3224
+
(end -0.5 1.375)
3225
3225
+
(stroke
3226
3226
+
(width 0.1)
3227
3227
+
(type solid)
3228
3228
+
)
3229
3229
+
(layer "F.Fab")
3230
3230
+
(uuid "90b14a73-eb09-4324-83d1-ae83d5eedcd8")
3231
3231
+
)
3232
3232
+
(fp_line
3233
3233
+
(start 0.5 1.375)
3234
3234
+
(end 0 0.875)
3235
3235
+
(stroke
3236
3236
+
(width 0.1)
3237
3237
+
(type solid)
3238
3238
+
)
3239
3239
+
(layer "F.Fab")
3240
3240
+
(uuid "f2e801dc-259d-491f-8e90-0bb3603ebb9d")
3241
3241
+
)
3242
3242
+
(fp_line
3243
3243
+
(start -0.5 1.375)
3244
3244
+
(end 0.5 1.375)
3245
3245
+
(stroke
3246
3246
+
(width 0.1)
3247
3247
+
(type solid)
3248
3248
+
)
3249
3249
+
(layer "F.Fab")
3250
3250
+
(uuid "6a91777f-47cc-4a49-af5a-a6ec052d4615")
3251
3251
+
)
3252
3252
+
(fp_line
3253
3253
+
(start 5.95 6.25)
3254
3254
+
(end 5.95 -1.35)
3255
3255
+
(stroke
3256
3256
+
(width 0.1)
3257
3257
+
(type solid)
3258
3258
+
)
3259
3259
+
(layer "F.Fab")
3260
3260
+
(uuid "792a7945-470f-48bf-a542-20ac436010d3")
3261
3261
+
)
3262
3262
+
(fp_line
3263
3263
+
(start -1.95 6.25)
3264
3264
+
(end 5.95 6.25)
3265
3265
+
(stroke
3266
3266
+
(width 0.1)
3267
3267
+
(type solid)
3268
3268
+
)
3269
3269
+
(layer "F.Fab")
3270
3270
+
(uuid "313809e3-ffcb-4bb0-bc28-a38ee19cf78a")
3271
3271
+
)
3272
3272
+
(fp_text user "${REFERENCE}"
3273
3273
+
(at 2 2.5 90)
3274
3274
+
(layer "F.Fab")
3275
3275
+
(uuid "e9423f10-39fb-4d43-824b-6f0a923ce61d")
3276
3276
+
(effects
3277
3277
+
(font
3278
3278
+
(size 1 1)
3279
3279
+
(thickness 0.15)
3280
3280
+
)
3281
3281
+
)
3282
3282
+
)
3283
3283
+
(pad "1" thru_hole roundrect
3284
3284
+
(at 0 0 90)
3285
3285
+
(size 1.2 1.75)
3286
3286
+
(drill 0.75)
3287
3287
+
(layers "*.Cu" "*.Mask")
3288
3288
+
(remove_unused_layers no)
3289
3289
+
(roundrect_rratio 0.208333)
3290
3290
+
(net 5 "OUT")
3291
3291
+
(pinfunction "Pin_1")
3292
3292
+
(pintype "passive")
3293
3293
+
(uuid "bc161e82-7b15-405e-af94-7f5ecfd76de9")
3294
3294
+
)
3295
3295
+
(pad "2" thru_hole oval
3296
3296
+
(at 2 0 90)
3297
3297
+
(size 1.2 1.75)
3298
3298
+
(drill 0.75)
3299
3299
+
(layers "*.Cu" "*.Mask")
3300
3300
+
(remove_unused_layers no)
3301
3301
+
(net 2 "GND")
3302
3302
+
(pinfunction "Pin_2")
3303
3303
+
(pintype "passive")
3304
3304
+
(uuid "1388043e-7103-4091-b59a-1b4bce9f5cbc")
3305
3305
+
)
3306
3306
+
(pad "3" thru_hole oval
3307
3307
+
(at 4 0 90)
3308
3308
+
(size 1.2 1.75)
3309
3309
+
(drill 0.75)
3310
3310
+
(layers "*.Cu" "*.Mask")
3311
3311
+
(remove_unused_layers no)
3312
3312
+
(net 7 "PWM")
3313
3313
+
(pinfunction "Pin_3")
3314
3314
+
(pintype "passive")
3315
3315
+
(uuid "93670215-c74d-49b7-b5ff-d20fcbed95ff")
3316
3316
+
)
3317
3317
+
(embedded_fonts no)
3318
3318
+
(model "${KICAD9_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_S3B-PH-K_1x03_P2.00mm_Horizontal.step"
3319
3319
+
(offset
3320
3320
+
(xyz 0 0 0)
3321
3321
+
)
3322
3322
+
(scale
3323
3323
+
(xyz 1 1 1)
3324
3324
+
)
3325
3325
+
(rotate
3326
3326
+
(xyz 0 0 0)
3327
3327
+
)
3328
3328
+
)
3329
3329
+
)
3330
3330
+
(footprint "MountingHole:MountingHole_2.5mm"
3331
3331
+
(layer "F.Cu")
3332
3332
+
(uuid "d7a54f3b-3f25-4138-bffb-b3371ec8e68f")
3333
3333
+
(at 155.5 103)
3334
3334
+
(descr "Mounting Hole 2.5mm, no annular, generated by kicad-footprint-generator mountinghole.py")
3335
3335
+
(tags "mountinghole")
3336
3336
+
(property "Reference" "REF3"
3337
3337
+
(at 0 -3.5 0)
3338
3338
+
(layer "F.SilkS")
3339
3339
+
(uuid "56c01a61-2fcc-447e-b744-e77616882502")
3340
3340
+
(effects
3341
3341
+
(font
3342
3342
+
(size 1 1)
3343
3343
+
(thickness 0.15)
3344
3344
+
)
3345
3345
+
)
3346
3346
+
)
3347
3347
+
(property "Value" "MountingHole_2.5mm"
3348
3348
+
(at 0 3.45 0)
3349
3349
+
(layer "F.Fab")
3350
3350
+
(uuid "d07ecbb3-6ea4-4fca-b5c0-0dd249665fbe")
3351
3351
+
(effects
3352
3352
+
(font
3353
3353
+
(size 1 1)
3354
3354
+
(thickness 0.15)
3355
3355
+
)
3356
3356
+
)
3357
3357
+
)
3358
3358
+
(property "Datasheet" ""
3359
3359
+
(at 0 0 0)
3360
3360
+
(layer "F.Fab")
3361
3361
+
(hide yes)
3362
3362
+
(uuid "808d8a4a-c748-45c1-bd22-0e1cf4b29094")
3363
3363
+
(effects
3364
3364
+
(font
3365
3365
+
(size 1.27 1.27)
3366
3366
+
(thickness 0.15)
3367
3367
+
)
3368
3368
+
)
3369
3369
+
)
3370
3370
+
(property "Description" ""
3371
3371
+
(at 0 0 0)
3372
3372
+
(layer "F.Fab")
3373
3373
+
(hide yes)
3374
3374
+
(uuid "6d5bbd24-76e4-43e8-a7e8-e5abaf1cf189")
3375
3375
+
(effects
3376
3376
+
(font
3377
3377
+
(size 1.27 1.27)
3378
3378
+
(thickness 0.15)
3379
3379
+
)
3380
3380
+
)
3381
3381
+
)
3382
3382
+
(attr exclude_from_pos_files exclude_from_bom)
3383
3383
+
(fp_circle
3384
3384
+
(center 0 0)
3385
3385
+
(end 2.5 0)
3386
3386
+
(stroke
3387
3387
+
(width 0.15)
3388
3388
+
(type solid)
3389
3389
+
)
3390
3390
+
(fill no)
3391
3391
+
(layer "Cmts.User")
3392
3392
+
(uuid "48898356-c932-4361-a866-c67d08513e00")
3393
3393
+
)
3394
3394
+
(fp_circle
3395
3395
+
(center 0 0)
3396
3396
+
(end 2.75 0)
3397
3397
+
(stroke
3398
3398
+
(width 0.05)
3399
3399
+
(type solid)
3400
3400
+
)
3401
3401
+
(fill no)
3402
3402
+
(layer "F.CrtYd")
3403
3403
+
(uuid "d500db94-196a-445e-8f50-0559abcf502d")
3404
3404
+
)
3405
3405
+
(fp_text user "${REFERENCE}"
3406
3406
+
(at 0 0 0)
3407
3407
+
(layer "F.Fab")
3408
3408
+
(uuid "80b4a938-5100-4924-801d-066de378ce38")
3409
3409
+
(effects
3410
3410
+
(font
3411
3411
+
(size 1 1)
3412
3412
+
(thickness 0.15)
3413
3413
+
)
3414
3414
+
)
3415
3415
+
)
3416
3416
+
(pad "" np_thru_hole circle
3417
3417
+
(at 0 0)
3418
3418
+
(size 2.5 2.5)
3419
3419
+
(drill 2.5)
3420
3420
+
(layers "*.Cu" "*.Mask")
3421
3421
+
(uuid "953efab1-3ca7-4bd1-b268-6cdf863e65fd")
3422
3422
+
)
3423
3423
+
(embedded_fonts no)
3424
3424
+
)
3425
3425
+
(footprint "Diode_SMD:D_SOD-323"
3426
3426
+
(layer "F.Cu")
3427
3427
+
(uuid "e8fe8955-3f0d-404b-82ab-ed391552ddc8")
3428
3428
+
(at 150.5 87.5)
3429
3429
+
(descr "SOD-323")
3430
3430
+
(tags "SOD-323")
3431
3431
+
(property "Reference" "D1"
3432
3432
+
(at -2.5 0 90)
3433
3433
+
(layer "F.SilkS")
3434
3434
+
(uuid "9ce7c928-896a-4ffc-9f1c-61ae9c9742cf")
3435
3435
+
(effects
3436
3436
+
(font
3437
3437
+
(size 1 1)
3438
3438
+
(thickness 0.15)
3439
3439
+
)
3440
3440
+
)
3441
3441
+
)
3442
3442
+
(property "Value" "1N4148WS"
3443
3443
+
(at 0.1 1.9 0)
3444
3444
+
(layer "F.Fab")
3445
3445
+
(uuid "2715b676-3860-4e3f-be33-567ac241fcb2")
3446
3446
+
(effects
3447
3447
+
(font
3448
3448
+
(size 1 1)
3449
3449
+
(thickness 0.15)
3450
3450
+
)
3451
3451
+
)
3452
3452
+
)
3453
3453
+
(property "Datasheet" "https://www.vishay.com/docs/85751/1n4148ws.pdf"
3454
3454
+
(at 0 0 0)
3455
3455
+
(unlocked yes)
3456
3456
+
(layer "F.Fab")
3457
3457
+
(hide yes)
3458
3458
+
(uuid "14524903-ed07-44fd-8e32-24a96bd9a476")
3459
3459
+
(effects
3460
3460
+
(font
3461
3461
+
(size 1.27 1.27)
3462
3462
+
(thickness 0.15)
3463
3463
+
)
3464
3464
+
)
3465
3465
+
)
3466
3466
+
(property "Description" "75V 0.15A Fast switching Diode, SOD-323"
3467
3467
+
(at 0 0 0)
3468
3468
+
(unlocked yes)
3469
3469
+
(layer "F.Fab")
3470
3470
+
(hide yes)
3471
3471
+
(uuid "c7e4216a-ec6a-4f6c-9712-9fb1e88b8f4f")
3472
3472
+
(effects
3473
3473
+
(font
3474
3474
+
(size 1.27 1.27)
3475
3475
+
(thickness 0.15)
3476
3476
+
)
3477
3477
+
)
3478
3478
+
)
3479
3479
+
(property "Sim.Device" "D"
3480
3480
+
(at 0 0 0)
3481
3481
+
(unlocked yes)
3482
3482
+
(layer "F.Fab")
3483
3483
+
(hide yes)
3484
3484
+
(uuid "a24c87bb-f7e2-4483-85c0-a19546d0bea6")
3485
3485
+
(effects
3486
3486
+
(font
3487
3487
+
(size 1 1)
3488
3488
+
(thickness 0.15)
3489
3489
+
)
3490
3490
+
)
3491
3491
+
)
3492
3492
+
(property "Sim.Pins" "1=K 2=A"
3493
3493
+
(at 0 0 0)
3494
3494
+
(unlocked yes)
3495
3495
+
(layer "F.Fab")
3496
3496
+
(hide yes)
3497
3497
+
(uuid "f300c17e-3d15-4c57-ac6c-345800add506")
3498
3498
+
(effects
3499
3499
+
(font
3500
3500
+
(size 1 1)
3501
3501
+
(thickness 0.15)
3502
3502
+
)
3503
3503
+
)
3504
3504
+
)
3505
3505
+
(property ki_fp_filters "D*SOD?323*")
3506
3506
+
(path "/f90688a6-e112-415e-8ebd-f0143cb29546")
3507
3507
+
(sheetname "/")
3508
3508
+
(sheetfile "strike-sensor.kicad_sch")
3509
3509
+
(attr smd)
3510
3510
+
(fp_line
3511
3511
+
(start -1.61 -0.85)
3512
3512
+
(end -1.61 0.85)
3513
3513
+
(stroke
3514
3514
+
(width 0.12)
3515
3515
+
(type solid)
3516
3516
+
)
3517
3517
+
(layer "F.SilkS")
3518
3518
+
(uuid "50d169c6-0193-4ac0-849b-1b26c55fad5c")
3519
3519
+
)
3520
3520
+
(fp_line
3521
3521
+
(start -1.61 -0.85)
3522
3522
+
(end 1.05 -0.85)
3523
3523
+
(stroke
3524
3524
+
(width 0.12)
3525
3525
+
(type solid)
3526
3526
+
)
3527
3527
+
(layer "F.SilkS")
3528
3528
+
(uuid "4bd3f704-4f99-4b8d-bf53-e2cf762b6ff9")
3529
3529
+
)
3530
3530
+
(fp_line
3531
3531
+
(start -1.61 0.85)
3532
3532
+
(end 1.05 0.85)
3533
3533
+
(stroke
3534
3534
+
(width 0.12)
3535
3535
+
(type solid)
3536
3536
+
)
3537
3537
+
(layer "F.SilkS")
3538
3538
+
(uuid "79e181ba-8fa0-46de-a017-9493c0eeddad")
3539
3539
+
)
3540
3540
+
(fp_line
3541
3541
+
(start -1.6 -0.95)
3542
3542
+
(end -1.6 0.95)
3543
3543
+
(stroke
3544
3544
+
(width 0.05)
3545
3545
+
(type solid)
3546
3546
+
)
3547
3547
+
(layer "F.CrtYd")
3548
3548
+
(uuid "9396f389-c036-4ff1-8588-d7c8b17d617a")
3549
3549
+
)
3550
3550
+
(fp_line
3551
3551
+
(start -1.6 -0.95)
3552
3552
+
(end 1.6 -0.95)
3553
3553
+
(stroke
3554
3554
+
(width 0.05)
3555
3555
+
(type solid)
3556
3556
+
)
3557
3557
+
(layer "F.CrtYd")
3558
3558
+
(uuid "0292e302-cdde-469a-8184-15e7e3dc0a5b")
3559
3559
+
)
3560
3560
+
(fp_line
3561
3561
+
(start -1.6 0.95)
3562
3562
+
(end 1.6 0.95)
3563
3563
+
(stroke
3564
3564
+
(width 0.05)
3565
3565
+
(type solid)
3566
3566
+
)
3567
3567
+
(layer "F.CrtYd")
3568
3568
+
(uuid "5655d239-eb87-4376-8875-4fbf6f981989")
3569
3569
+
)
3570
3570
+
(fp_line
3571
3571
+
(start 1.6 -0.95)
3572
3572
+
(end 1.6 0.95)
3573
3573
+
(stroke
3574
3574
+
(width 0.05)
3575
3575
+
(type solid)
3576
3576
+
)
3577
3577
+
(layer "F.CrtYd")
3578
3578
+
(uuid "2d672bc2-bad0-4a1d-94d6-65944e038547")
3579
3579
+
)
3580
3580
+
(fp_line
3581
3581
+
(start -0.9 -0.7)
3582
3582
+
(end 0.9 -0.7)
3583
3583
+
(stroke
3584
3584
+
(width 0.1)
3585
3585
+
(type solid)
3586
3586
+
)
3587
3587
+
(layer "F.Fab")
3588
3588
+
(uuid "82c142de-8d2e-4b8b-9a3d-e86a2e627775")
3589
3589
+
)
3590
3590
+
(fp_line
3591
3591
+
(start -0.9 0.7)
3592
3592
+
(end -0.9 -0.7)
3593
3593
+
(stroke
3594
3594
+
(width 0.1)
3595
3595
+
(type solid)
3596
3596
+
)
3597
3597
+
(layer "F.Fab")
3598
3598
+
(uuid "16b5fca2-ea2f-49c9-be89-2b372abffad9")
3599
3599
+
)
3600
3600
+
(fp_line
3601
3601
+
(start -0.3 -0.35)
3602
3602
+
(end -0.3 0.35)
3603
3603
+
(stroke
3604
3604
+
(width 0.1)
3605
3605
+
(type solid)
3606
3606
+
)
3607
3607
+
(layer "F.Fab")
3608
3608
+
(uuid "bb68d299-85b8-4c23-ad20-0e3ea01359d0")
3609
3609
+
)
3610
3610
+
(fp_line
3611
3611
+
(start -0.3 0)
3612
3612
+
(end -0.5 0)
3613
3613
+
(stroke
3614
3614
+
(width 0.1)
3615
3615
+
(type solid)
3616
3616
+
)
3617
3617
+
(layer "F.Fab")
3618
3618
+
(uuid "51ef7f3c-98ff-4745-ae84-2cdb0dc0d040")
3619
3619
+
)
3620
3620
+
(fp_line
3621
3621
+
(start -0.3 0)
3622
3622
+
(end 0.2 -0.35)
3623
3623
+
(stroke
3624
3624
+
(width 0.1)
3625
3625
+
(type solid)
3626
3626
+
)
3627
3627
+
(layer "F.Fab")
3628
3628
+
(uuid "f366ead2-2594-4ae9-8b2c-9e6468564f3d")
3629
3629
+
)
3630
3630
+
(fp_line
3631
3631
+
(start 0.2 -0.35)
3632
3632
+
(end 0.2 0.35)
3633
3633
+
(stroke
3634
3634
+
(width 0.1)
3635
3635
+
(type solid)
3636
3636
+
)
3637
3637
+
(layer "F.Fab")
3638
3638
+
(uuid "e24eb6f3-4451-4b88-9c93-ca877b566b7f")
3639
3639
+
)
3640
3640
+
(fp_line
3641
3641
+
(start 0.2 0)
3642
3642
+
(end 0.45 0)
3643
3643
+
(stroke
3644
3644
+
(width 0.1)
3645
3645
+
(type solid)
3646
3646
+
)
3647
3647
+
(layer "F.Fab")
3648
3648
+
(uuid "6bbe40c2-44e2-4bf1-8727-9c894daf7ef4")
3649
3649
+
)
3650
3650
+
(fp_line
3651
3651
+
(start 0.2 0.35)
3652
3652
+
(end -0.3 0)
3653
3653
+
(stroke
3654
3654
+
(width 0.1)
3655
3655
+
(type solid)
3656
3656
+
)
3657
3657
+
(layer "F.Fab")
3658
3658
+
(uuid "a457a574-40bb-4824-a657-7ab8a1c266fc")
3659
3659
+
)
3660
3660
+
(fp_line
3661
3661
+
(start 0.9 -0.7)
3662
3662
+
(end 0.9 0.7)
3663
3663
+
(stroke
3664
3664
+
(width 0.1)
3665
3665
+
(type solid)
3666
3666
+
)
3667
3667
+
(layer "F.Fab")
3668
3668
+
(uuid "8a699df2-c5e4-4523-b219-e6e9059b4255")
3669
3669
+
)
3670
3670
+
(fp_line
3671
3671
+
(start 0.9 0.7)
3672
3672
+
(end -0.9 0.7)
3673
3673
+
(stroke
3674
3674
+
(width 0.1)
3675
3675
+
(type solid)
3676
3676
+
)
3677
3677
+
(layer "F.Fab")
3678
3678
+
(uuid "2a4dd735-dccc-45f8-ab91-9cde956d2805")
3679
3679
+
)
3680
3680
+
(fp_text user "${REFERENCE}"
3681
3681
+
(at 0 0 0)
3682
3682
+
(layer "F.Fab")
3683
3683
+
(uuid "dbe60846-73f1-48a0-b8e9-5f8e3e463867")
3684
3684
+
(effects
3685
3685
+
(font
3686
3686
+
(size 1 1)
3687
3687
+
(thickness 0.15)
3688
3688
+
)
3689
3689
+
)
3690
3690
+
)
3691
3691
+
(pad "1" smd roundrect
3692
3692
+
(at -1.05 0)
3693
3693
+
(size 0.6 0.45)
3694
3694
+
(layers "F.Cu" "F.Mask" "F.Paste")
3695
3695
+
(roundrect_rratio 0.25)
3696
3696
+
(net 8 "Net-(D1-K)")
3697
3697
+
(pinfunction "K")
3698
3698
+
(pintype "passive")
3699
3699
+
(uuid "4838cbf8-ac39-4f1e-8f9d-4d51ec039b1e")
3700
3700
+
)
3701
3701
+
(pad "2" smd roundrect
3702
3702
+
(at 1.05 0)
3703
3703
+
(size 0.6 0.45)
3704
3704
+
(layers "F.Cu" "F.Mask" "F.Paste")
3705
3705
+
(roundrect_rratio 0.25)
3706
3706
+
(net 7 "PWM")
3707
3707
+
(pinfunction "A")
3708
3708
+
(pintype "passive")
3709
3709
+
(uuid "1da25790-5dff-4b6e-b66c-c783cc86a643")
3710
3710
+
)
3711
3711
+
(embedded_fonts no)
3712
3712
+
(model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.step"
3713
3713
+
(offset
3714
3714
+
(xyz 0 0 0)
3715
3715
+
)
3716
3716
+
(scale
3717
3717
+
(xyz 1 1 1)
3718
3718
+
)
3719
3719
+
(rotate
3720
3720
+
(xyz 0 0 0)
3721
3721
+
)
3722
3722
+
)
3723
3723
+
)
3724
3724
+
(footprint "Symbol:OSHW-Symbol_6.7x6mm_SilkScreen"
3725
3725
+
(layer "F.Cu")
3726
3726
+
(uuid "ef897060-5595-4619-9a35-52a1b1248e3f")
3727
3727
+
(at 143.5 103)
3728
3728
+
(descr "Open Source Hardware Symbol")
3729
3729
+
(tags "Logo Symbol OSHW")
3730
3730
+
(property "Reference" "LOGO"
3731
3731
+
(at 0 0 0)
3732
3732
+
(layer "F.SilkS")
3733
3733
+
(hide yes)
3734
3734
+
(uuid "5fca7c72-2ddd-4112-b657-f555882869f3")
3735
3735
+
(effects
3736
3736
+
(font
3737
3737
+
(size 1 1)
3738
3738
+
(thickness 0.15)
3739
3739
+
)
3740
3740
+
)
3741
3741
+
)
3742
3742
+
(property "Value" "OSHW-Symbol_6.7x6mm_SilkScreen"
3743
3743
+
(at 0.75 0 0)
3744
3744
+
(layer "F.Fab")
3745
3745
+
(hide yes)
3746
3746
+
(uuid "3916514c-185e-4c37-956d-1c51fb639324")
3747
3747
+
(effects
3748
3748
+
(font
3749
3749
+
(size 1 1)
3750
3750
+
(thickness 0.15)
3751
3751
+
)
3752
3752
+
)
3753
3753
+
)
3754
3754
+
(property "Datasheet" ""
3755
3755
+
(at 0 0 0)
3756
3756
+
(unlocked yes)
3757
3757
+
(layer "F.Fab")
3758
3758
+
(hide yes)
3759
3759
+
(uuid "84e048e3-954d-4e46-89a7-7201f136cb49")
3760
3760
+
(effects
3761
3761
+
(font
3762
3762
+
(size 1.27 1.27)
3763
3763
+
(thickness 0.15)
3764
3764
+
)
3765
3765
+
)
3766
3766
+
)
3767
3767
+
(property "Description" ""
3768
3768
+
(at 0 0 0)
3769
3769
+
(unlocked yes)
3770
3770
+
(layer "F.Fab")
3771
3771
+
(hide yes)
3772
3772
+
(uuid "9dd6bf7f-39ac-41a6-a7ce-63c67802f74d")
3773
3773
+
(effects
3774
3774
+
(font
3775
3775
+
(size 1.27 1.27)
3776
3776
+
(thickness 0.15)
3777
3777
+
)
3778
3778
+
)
3779
3779
+
)
3780
3780
+
(attr exclude_from_pos_files exclude_from_bom allow_missing_courtyard)
3781
3781
+
(fp_poly
3782
3782
+
(pts
3783
3783
+
(xy 0.555814 -2.531069) (xy 0.639635 -2.086445) (xy 0.94892 -1.958947) (xy 1.258206 -1.831449) (xy 1.629246 -2.083754)
3784
3784
+
(xy 1.733157 -2.154004) (xy 1.827087 -2.216728) (xy 1.906652 -2.269062) (xy 1.96747 -2.308143) (xy 2.005157 -2.331107)
3785
3785
+
(xy 2.015421 -2.336058) (xy 2.03391 -2.323324) (xy 2.07342 -2.288118) (xy 2.129522 -2.234938) (xy 2.197787 -2.168282)
3786
3786
+
(xy 2.273786 -2.092646) (xy 2.353092 -2.012528) (xy 2.431275 -1.932426) (xy 2.503907 -1.856836)
3787
3787
+
(xy 2.566559 -1.790255) (xy 2.614803 -1.737182) (xy 2.64421 -1.702113) (xy 2.651241 -1.690377) (xy 2.641123 -1.66874)
3788
3788
+
(xy 2.612759 -1.621338) (xy 2.569129 -1.552807) (xy 2.513218 -1.467785) (xy 2.448006 -1.370907)
3789
3789
+
(xy 2.410219 -1.31565) (xy 2.341343 -1.214752) (xy 2.28014 -1.123701) (xy 2.229578 -1.04703) (xy 2.192628 -0.989272)
3790
3790
+
(xy 2.172258 -0.954957) (xy 2.169197 -0.947746) (xy 2.176136 -0.927252) (xy 2.195051 -0.879487)
3791
3791
+
(xy 2.223087 -0.811168) (xy 2.257391 -0.729011) (xy 2.295109 -0.63973) (xy 2.333387 -0.550042) (xy 2.36937 -0.466662)
3792
3792
+
(xy 2.400206 -0.396306) (xy 2.423039 -0.34569) (xy 2.435017 -0.321529) (xy 2.435724 -0.320578) (xy 2.454531 -0.315964)
3793
3793
+
(xy 2.504618 -0.305672) (xy 2.580793 -0.290713) (xy 2.677865 -0.272099) (xy 2.790643 -0.250841)
3794
3794
+
(xy 2.856442 -0.238582) (xy 2.97695 -0.215638) (xy 3.085797 -0.193805) (xy 3.177476 -0.174278) (xy 3.246481 -0.158252)
3795
3795
+
(xy 3.287304 -0.146921) (xy 3.295511 -0.143326) (xy 3.303548 -0.118994) (xy 3.310033 -0.064041)
3796
3796
+
(xy 3.31497 0.015108) (xy 3.318364 0.112026) (xy 3.320218 0.220287) (xy 3.320538 0.333465) (xy 3.319327 0.445135)
3797
3797
+
(xy 3.31659 0.548868) (xy 3.312331 0.638241) (xy 3.306555 0.706826) (xy 3.299267 0.748197) (xy 3.294895 0.75681)
3798
3798
+
(xy 3.268764 0.767133) (xy 3.213393 0.781892) (xy 3.136107 0.799352) (xy 3.04423 0.81778) (xy 3.012158 0.823741)
3799
3799
+
(xy 2.857524 0.852066) (xy 2.735375 0.874876) (xy 2.641673 0.89308) (xy 2.572384 0.907583) (xy 2.523471 0.919292)
3800
3800
+
(xy 2.490897 0.929115) (xy 2.470628 0.937956) (xy 2.458626 0.946724) (xy 2.456947 0.948457) (xy 2.440184 0.976371)
3801
3801
+
(xy 2.414614 1.030695) (xy 2.382788 1.104777) (xy 2.34726 1.191965) (xy 2.310583 1.285608) (xy 2.275311 1.379052)
3802
3802
+
(xy 2.243996 1.465647) (xy 2.219193 1.53874) (xy 2.203454 1.591678) (xy 2.199332 1.617811) (xy 2.199676 1.618726)
3803
3803
+
(xy 2.213641 1.640086) (xy 2.245322 1.687084) (xy 2.291391 1.754827) (xy 2.348518 1.838423) (xy 2.413373 1.932982)
3804
3804
+
(xy 2.431843 1.959854) (xy 2.497699 2.057275) (xy 2.55565 2.146163) (xy 2.602538 2.221412) (xy 2.635207 2.27792)
3805
3805
+
(xy 2.6505 2.310581) (xy 2.651241 2.314593) (xy 2.638392 2.335684) (xy 2.602888 2.377464) (xy 2.549293 2.435445)
3806
3806
+
(xy 2.482171 2.505135) (xy 2.406087 2.582045) (xy 2.325604 2.661683) (xy 2.245287 2.739561) (xy 2.169699 2.811186)
3807
3807
+
(xy 2.103405 2.87207) (xy 2.050969 2.917721) (xy 2.016955 2.94365) (xy 2.007545 2.947883) (xy 1.985643 2.937912)
3808
3808
+
(xy 1.9408 2.91102) (xy 1.880321 2.871736) (xy 1.833789 2.840117) (xy 1.749475 2.782098) (xy 1.649626 2.713784)
3809
3809
+
(xy 1.549473 2.645579) (xy 1.495627 2.609075) (xy 1.313371 2.4858) (xy 1.160381 2.56852) (xy 1.090682 2.604759)
3810
3810
+
(xy 1.031414 2.632926) (xy 0.991311 2.648991) (xy 0.981103 2.651226) (xy 0.968829 2.634722) (xy 0.944613 2.588082)
3811
3811
+
(xy 0.910263 2.515609) (xy 0.867588 2.421606) (xy 0.818394 2.310374) (xy 0.76449 2.186215) (xy 0.707684 2.053432)
3812
3812
+
(xy 0.649782 1.916327) (xy 0.592593 1.779202) (xy 0.537924 1.646358) (xy 0.487584 1.522098) (xy 0.44338 1.410725)
3813
3813
+
(xy 0.407119 1.316539) (xy 0.380609 1.243844) (xy 0.365658 1.196941) (xy 0.363254 1.180833) (xy 0.382311 1.160286)
3814
3814
+
(xy 0.424036 1.126933) (xy 0.479706 1.087702) (xy 0.484378 1.084599) (xy 0.628264 0.969423) (xy 0.744283 0.835053)
3815
3815
+
(xy 0.83143 0.685784) (xy 0.888699 0.525913) (xy 0.915086 0.359737) (xy 0.909585 0.191552) (xy 0.87119 0.025655)
3816
3816
+
(xy 0.798895 -0.133658) (xy 0.777626 -0.168513) (xy 0.666996 -0.309263) (xy 0.536302 -0.422286)
3817
3817
+
(xy 0.390064 -0.506997) (xy 0.232808 -0.562806) (xy 0.069057 -0.589126) (xy -0.096667 -0.58537)
3818
3818
+
(xy -0.259838 -0.55095) (xy -0.415935 -0.485277) (xy -0.560433 -0.387765) (xy -0.605131 -0.348187)
3819
3819
+
(xy -0.718888 -0.224297) (xy -0.801782 -0.093876) (xy -0.858644 0.052315) (xy -0.890313 0.197088)
3820
3820
+
(xy -0.898131 0.35986) (xy -0.872062 0.52344) (xy -0.814755 0.682298) (xy -0.728856 0.830906) (xy -0.617014 0.963735)
3821
3821
+
(xy -0.481877 1.075256) (xy -0.464117 1.087011) (xy -0.40785 1.125508) (xy -0.365077 1.158863) (xy -0.344628 1.18016)
3822
3822
+
(xy -0.344331 1.180833) (xy -0.348721 1.203871) (xy -0.366124 1.256157) (xy -0.394732 1.33339) (xy -0.432735 1.431268)
3823
3823
+
(xy -0.478326 1.545491) (xy -0.529697 1.671758) (xy -0.585038 1.805767) (xy -0.642542 1.943218)
3824
3824
+
(xy -0.700399 2.079808) (xy -0.756802 2.211237) (xy -0.809942 2.333205) (xy -0.85801 2.441409) (xy -0.899199 2.531549)
3825
3825
+
(xy -0.931699 2.599323) (xy -0.953703 2.64043) (xy -0.962564 2.651226) (xy -0.98964 2.642819) (xy -1.040303 2.620272)
3826
3826
+
(xy -1.105817 2.587613) (xy -1.141841 2.56852) (xy -1.294832 2.4858) (xy -1.477088 2.609075) (xy -1.570125 2.672228)
3827
3827
+
(xy -1.671985 2.741727) (xy -1.767438 2.807165) (xy -1.81525 2.840117) (xy -1.882495 2.885273) (xy -1.939436 2.921057)
3828
3828
+
(xy -1.978646 2.942938) (xy -1.991381 2.947563) (xy -2.009917 2.935085) (xy -2.050941 2.900252)
3829
3829
+
(xy -2.110475 2.846678) (xy -2.184542 2.777983) (xy -2.269165 2.697781) (xy -2.322685 2.646286)
3830
3830
+
(xy -2.416319 2.554286) (xy -2.497241 2.471999) (xy -2.562177 2.402945) (xy -2.607858 2.350644)
3831
3831
+
(xy -2.631011 2.318616) (xy -2.633232 2.312116) (xy -2.622924 2.287394) (xy -2.594439 2.237405)
3832
3832
+
(xy -2.550937 2.167212) (xy -2.495577 2.081875) (xy -2.43152 1.986456) (xy -2.413303 1.959854) (xy -2.346927 1.863167)
3833
3833
+
(xy -2.287378 1.776117) (xy -2.237984 1.703595) (xy -2.202075 1.650493) (xy -2.182981 1.621703)
3834
3834
+
(xy -2.181136 1.618726) (xy -2.183895 1.595782) (xy -2.198538 1.545336) (xy -2.222513 1.474041)
3835
3835
+
(xy -2.253266 1.388547) (xy -2.288244 1.295507) (xy -2.324893 1.201574) (xy -2.360661 1.113399)
3836
3836
+
(xy -2.392994 1.037634) (xy -2.419338 0.980931) (xy -2.437142 0.949943) (xy -2.438407 0.948457)
3837
3837
+
(xy -2.449294 0.939601) (xy -2.467682 0.930843) (xy -2.497606 0.921277) (xy -2.543103 0.909996)
3838
3838
+
(xy -2.608209 0.896093) (xy -2.696961 0.878663) (xy -2.813393 0.856798) (xy -2.961542 0.829591)
3839
3839
+
(xy -2.993618 0.823741) (xy -3.088686 0.805374) (xy -3.171565 0.787405) (xy -3.23493 0.771569) (xy -3.271458 0.7596)
3840
3840
+
(xy -3.276356 0.75681) (xy -3.284427 0.732072) (xy -3.290987 0.67679) (xy -3.296033 0.597389) (xy -3.299559 0.500296)
3841
3841
+
(xy -3.301561 0.391938) (xy -3.302036 0.27874) (xy -3.300977 0.167128) (xy -3.298382 0.063529) (xy -3.294246 -0.025632)
3842
3842
+
(xy -3.288563 -0.093928) (xy -3.281331 -0.134934) (xy -3.276971 -0.143326) (xy -3.252698 -0.151792)
3843
3843
+
(xy -3.197426 -0.165565) (xy -3.116662 -0.18345) (xy -3.015912 -0.204252) (xy -2.900683 -0.226777)
3844
3844
+
(xy -2.837902 -0.238582) (xy -2.718787 -0.260849) (xy -2.612565 -0.281021) (xy -2.524427 -0.298085)
3845
3845
+
(xy -2.459566 -0.311031) (xy -2.423174 -0.318845) (xy -2.417184 -0.320578) (xy -2.407061 -0.34011)
3846
3846
+
(xy -2.385662 -0.387157) (xy -2.355839 -0.454997) (xy -2.320445 -0.536909) (xy -2.282332 -0.626172)
3847
3847
+
(xy -2.244353 -0.716065) (xy -2.20936 -0.799865) (xy -2.180206 -0.870853) (xy -2.159743 -0.922306)
3848
3848
+
(xy -2.150823 -0.947503) (xy -2.150657 -0.948604) (xy -2.160769 -0.968481) (xy -2.189117 -1.014223)
3849
3849
+
(xy -2.232723 -1.081283) (xy -2.288606 -1.165116) (xy -2.353787 -1.261174) (xy -2.391679 -1.31635)
3850
3850
+
(xy -2.460725 -1.417519) (xy -2.52205 -1.50937) (xy -2.572663 -1.587256) (xy -2.609571 -1.646531)
3851
3851
+
(xy -2.629782 -1.682549) (xy -2.632701 -1.690623) (xy -2.620153 -1.709416) (xy -2.585463 -1.749543)
3852
3852
+
(xy -2.533063 -1.806507) (xy -2.467384 -1.875815) (xy -2.392856 -1.952969) (xy -2.313913 -2.033475)
3853
3853
+
(xy -2.234983 -2.112837) (xy -2.1605 -2.18656) (xy -2.094894 -2.250148) (xy -2.042596 -2.299106)
3854
3854
+
(xy -2.008039 -2.328939) (xy -1.996478 -2.336058) (xy -1.977654 -2.326047) (xy -1.932631 -2.297922)
3855
3855
+
(xy -1.865787 -2.254546) (xy -1.781499 -2.198782) (xy -1.684144 -2.133494) (xy -1.610707 -2.083754)
3856
3856
+
(xy -1.239667 -1.831449) (xy -0.621095 -2.086445) (xy -0.537275 -2.531069) (xy -0.453454 -2.975693)
3857
3857
+
(xy 0.471994 -2.975693) (xy 0.555814 -2.531069)
3858
3858
+
)
3859
3859
+
(stroke
3860
3860
+
(width 0.01)
3861
3861
+
(type solid)
3862
3862
+
)
3863
3863
+
(fill yes)
3864
3864
+
(layer "F.SilkS")
3865
3865
+
(uuid "2846eff7-68f5-435f-ac55-7ef67810a20d")
3866
3866
+
)
3867
3867
+
(embedded_fonts no)
3868
3868
+
)
3869
3869
+
(footprint "Resistor_SMD:R_0603_1608Metric"
3870
3870
+
(layer "F.Cu")
3871
3871
+
(uuid "f84409d1-700c-4a8e-8408-98b7c4b9d84d")
3872
3872
+
(at 138 88 -90)
3873
3873
+
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
3874
3874
+
(tags "resistor")
3875
3875
+
(property "Reference" "R2"
3876
3876
+
(at 2.5 0 0)
3877
3877
+
(layer "F.SilkS")
3878
3878
+
(uuid "88b9fe87-cc95-4c2b-bcc6-a1153658daec")
3879
3879
+
(effects
3880
3880
+
(font
3881
3881
+
(size 1 1)
3882
3882
+
(thickness 0.15)
3883
3883
+
)
3884
3884
+
)
3885
3885
+
)
3886
3886
+
(property "Value" "1k"
3887
3887
+
(at 0 1.43 90)
3888
3888
+
(layer "F.Fab")
3889
3889
+
(uuid "97f9e3b6-3a15-4f40-8ec6-8c5b1e5b6ee2")
3890
3890
+
(effects
3891
3891
+
(font
3892
3892
+
(size 1 1)
3893
3893
+
(thickness 0.15)
3894
3894
+
)
3895
3895
+
)
3896
3896
+
)
3897
3897
+
(property "Datasheet" "~"
3898
3898
+
(at 0 0 90)
3899
3899
+
(layer "F.Fab")
3900
3900
+
(hide yes)
3901
3901
+
(uuid "bfebdcc9-97d3-486d-85cf-47d7b10e6764")
3902
3902
+
(effects
3903
3903
+
(font
3904
3904
+
(size 1.27 1.27)
3905
3905
+
(thickness 0.15)
3906
3906
+
)
3907
3907
+
)
3908
3908
+
)
3909
3909
+
(property "Description" "Resistor"
3910
3910
+
(at 0 0 90)
3911
3911
+
(layer "F.Fab")
3912
3912
+
(hide yes)
3913
3913
+
(uuid "cf7af504-6beb-4818-bb88-c06ea16eba7e")
3914
3914
+
(effects
3915
3915
+
(font
3916
3916
+
(size 1.27 1.27)
3917
3917
+
(thickness 0.15)
3918
3918
+
)
3919
3919
+
)
3920
3920
+
)
3921
3921
+
(property ki_fp_filters "R_*")
3922
3922
+
(path "/fc041f17-d109-4630-bbbd-e29478e38c42")
3923
3923
+
(sheetname "/")
3924
3924
+
(sheetfile "strike-sensor.kicad_sch")
3925
3925
+
(attr smd)
3926
3926
+
(fp_line
3927
3927
+
(start -0.237258 0.5225)
3928
3928
+
(end 0.237258 0.5225)
3929
3929
+
(stroke
3930
3930
+
(width 0.12)
3931
3931
+
(type solid)
3932
3932
+
)
3933
3933
+
(layer "F.SilkS")
3934
3934
+
(uuid "1259bd01-aaa3-4d71-8f84-21b533520e43")
3935
3935
+
)
3936
3936
+
(fp_line
3937
3937
+
(start -0.237258 -0.5225)
3938
3938
+
(end 0.237258 -0.5225)
3939
3939
+
(stroke
3940
3940
+
(width 0.12)
3941
3941
+
(type solid)
3942
3942
+
)
3943
3943
+
(layer "F.SilkS")
3944
3944
+
(uuid "f976347c-7de6-4f22-bd7a-1049fa1eca9d")
3945
3945
+
)
3946
3946
+
(fp_rect
3947
3947
+
(start -1.48 -0.73)
3948
3948
+
(end 1.48 0.73)
3949
3949
+
(stroke
3950
3950
+
(width 0.05)
3951
3951
+
(type solid)
3952
3952
+
)
3953
3953
+
(fill no)
3954
3954
+
(layer "F.CrtYd")
3955
3955
+
(uuid "ac458193-5d8e-4710-b765-66168f133f55")
3956
3956
+
)
3957
3957
+
(fp_rect
3958
3958
+
(start -0.8 -0.4125)
3959
3959
+
(end 0.8 0.4125)
3960
3960
+
(stroke
3961
3961
+
(width 0.1)
3962
3962
+
(type solid)
3963
3963
+
)
3964
3964
+
(fill no)
3965
3965
+
(layer "F.Fab")
3966
3966
+
(uuid "1aa61c3e-b2e8-4529-a039-ad4344cad2b8")
3967
3967
+
)
3968
3968
+
(fp_text user "${REFERENCE}"
3969
3969
+
(at 0 0 90)
3970
3970
+
(layer "F.Fab")
3971
3971
+
(uuid "4c2fd972-4163-4d4d-b2f0-964341bc35d6")
3972
3972
+
(effects
3973
3973
+
(font
3974
3974
+
(size 0.4 0.4)
3975
3975
+
(thickness 0.06)
3976
3976
+
)
3977
3977
+
)
3978
3978
+
)
3979
3979
+
(pad "1" smd roundrect
3980
3980
+
(at -0.825 0 270)
3981
3981
+
(size 0.8 0.95)
3982
3982
+
(layers "F.Cu" "F.Mask" "F.Paste")
3983
3983
+
(roundrect_rratio 0.25)
3984
3984
+
(net 1 "Net-(C1-Pad1)")
3985
3985
+
(pintype "passive")
3986
3986
+
(uuid "6be7c53c-bd75-411a-ad3f-3ae213592123")
3987
3987
+
)
3988
3988
+
(pad "2" smd roundrect
3989
3989
+
(at 0.825 0 270)
3990
3990
+
(size 0.8 0.95)
3991
3991
+
(layers "F.Cu" "F.Mask" "F.Paste")
3992
3992
+
(roundrect_rratio 0.25)
3993
3993
+
(net 3 "Net-(C2-Pad1)")
3994
3994
+
(pintype "passive")
3995
3995
+
(uuid "b63fbe53-f4d6-4585-94f3-efe73e98d8d8")
3996
3996
+
)
3997
3997
+
(embedded_fonts no)
3998
3998
+
(model "${KICAD9_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
3999
3999
+
(offset
4000
4000
+
(xyz 0 0 0)
4001
4001
+
)
4002
4002
+
(scale
4003
4003
+
(xyz 1 1 1)
4004
4004
+
)
4005
4005
+
(rotate
4006
4006
+
(xyz 0 0 0)
4007
4007
+
)
4008
4008
+
)
4009
4009
+
)
4010
4010
+
(gr_arc
4011
4011
+
(start 126.5 85)
4012
4012
+
(mid 127.671573 82.171573)
4013
4013
+
(end 130.5 81)
4014
4014
+
(stroke
4015
4015
+
(width 0.2)
4016
4016
+
(type default)
4017
4017
+
)
4018
4018
+
(layer "Edge.Cuts")
4019
4019
+
(uuid "0a1bdaa3-2561-4f11-9508-136640710e59")
4020
4020
+
)
4021
4021
+
(gr_line
4022
4022
+
(start 130.5 81)
4023
4023
+
(end 155.5 81)
4024
4024
+
(stroke
4025
4025
+
(width 0.2)
4026
4026
+
(type default)
4027
4027
+
)
4028
4028
+
(layer "Edge.Cuts")
4029
4029
+
(uuid "4a9c119e-ec32-4878-a1a9-9f1c0098f426")
4030
4030
+
)
4031
4031
+
(gr_arc
4032
4032
+
(start 155.5 81)
4033
4033
+
(mid 158.328427 82.171573)
4034
4034
+
(end 159.5 85)
4035
4035
+
(stroke
4036
4036
+
(width 0.2)
4037
4037
+
(type default)
4038
4038
+
)
4039
4039
+
(layer "Edge.Cuts")
4040
4040
+
(uuid "587dd16b-eb78-4bbe-9054-e9ad311f7176")
4041
4041
+
)
4042
4042
+
(gr_arc
4043
4043
+
(start 159.5 103)
4044
4044
+
(mid 158.328427 105.828427)
4045
4045
+
(end 155.5 107)
4046
4046
+
(stroke
4047
4047
+
(width 0.2)
4048
4048
+
(type default)
4049
4049
+
)
4050
4050
+
(layer "Edge.Cuts")
4051
4051
+
(uuid "80febacd-17c4-469d-9cea-21bbbb6bf770")
4052
4052
+
)
4053
4053
+
(gr_line
4054
4054
+
(start 155.5 107)
4055
4055
+
(end 130.5 107)
4056
4056
+
(stroke
4057
4057
+
(width 0.2)
4058
4058
+
(type default)
4059
4059
+
)
4060
4060
+
(layer "Edge.Cuts")
4061
4061
+
(uuid "888d0f74-e535-4423-9ace-761166112697")
4062
4062
+
)
4063
4063
+
(gr_line
4064
4064
+
(start 159.5 85)
4065
4065
+
(end 159.5 103)
4066
4066
+
(stroke
4067
4067
+
(width 0.2)
4068
4068
+
(type default)
4069
4069
+
)
4070
4070
+
(layer "Edge.Cuts")
4071
4071
+
(uuid "b1c82679-d0e6-4e72-94fa-98136d4efee9")
4072
4072
+
)
4073
4073
+
(gr_line
4074
4074
+
(start 126.5 103)
4075
4075
+
(end 126.5 85)
4076
4076
+
(stroke
4077
4077
+
(width 0.2)
4078
4078
+
(type default)
4079
4079
+
)
4080
4080
+
(layer "Edge.Cuts")
4081
4081
+
(uuid "cf28652b-b465-4d94-955a-b5a5cc46cb30")
4082
4082
+
)
4083
4083
+
(gr_arc
4084
4084
+
(start 130.5 107)
4085
4085
+
(mid 127.671573 105.828427)
4086
4086
+
(end 126.5 103)
4087
4087
+
(stroke
4088
4088
+
(width 0.2)
4089
4089
+
(type default)
4090
4090
+
)
4091
4091
+
(layer "Edge.Cuts")
4092
4092
+
(uuid "ecf06ae7-7e3c-4466-bd54-d85de9afb710")
4093
4093
+
)
4094
4094
+
(segment
4095
4095
+
(start 145.97 85)
4096
4096
+
(end 145.47 84.5)
4097
4097
+
(width 0.2)
4098
4098
+
(layer "F.Cu")
4099
4099
+
(net 1)
4100
4100
+
(uuid "004d8cb2-d22f-476a-b787-75e8e4597005")
4101
4101
+
)
4102
4102
+
(segment
4103
4103
+
(start 138 87.175)
4104
4104
+
(end 142.795 87.175)
4105
4105
+
(width 0.2)
4106
4106
+
(layer "F.Cu")
4107
4107
+
(net 1)
4108
4108
+
(uuid "7f0a5694-ed5b-4bc9-82e4-0610e184fa4b")
4109
4109
+
)
4110
4110
+
(segment
4111
4111
+
(start 142.795 87.175)
4112
4112
+
(end 145.47 84.5)
4113
4113
+
(width 0.2)
4114
4114
+
(layer "F.Cu")
4115
4115
+
(net 1)
4116
4116
+
(uuid "e0d32eec-62a1-4624-a7b1-5a224b85ee5a")
4117
4117
+
)
4118
4118
+
(segment
4119
4119
+
(start 149.675 85)
4120
4120
+
(end 145.97 85)
4121
4121
+
(width 0.2)
4122
4122
+
(layer "F.Cu")
4123
4123
+
(net 1)
4124
4124
+
(uuid "e3867271-a670-4946-a509-9fca064576d2")
4125
4125
+
)
4126
4126
+
(segment
4127
4127
+
(start 139.855 88.825)
4128
4128
+
(end 140.53 89.5)
4129
4129
+
(width 0.2)
4130
4130
+
(layer "F.Cu")
4131
4131
+
(net 3)
4132
4132
+
(uuid "4c5168ac-0728-44f5-b39b-9cadb1a65935")
4133
4133
+
)
4134
4134
+
(segment
4135
4135
+
(start 136.276 85.951)
4136
4136
+
(end 135.5 85.175)
4137
4137
+
(width 0.2)
4138
4138
+
(layer "F.Cu")
4139
4139
+
(net 3)
4140
4140
+
(uuid "78924eea-a3df-42e8-b590-84534337007b")
4141
4141
+
)
4142
4142
+
(segment
4143
4143
+
(start 136.276 87.101)
4144
4144
+
(end 136.276 85.951)
4145
4145
+
(width 0.2)
4146
4146
+
(layer "F.Cu")
4147
4147
+
(net 3)
4148
4148
+
(uuid "88a17682-1323-4941-9a87-c0d30f62ff2b")
4149
4149
+
)
4150
4150
+
(segment
4151
4151
+
(start 138 88.825)
4152
4152
+
(end 139.855 88.825)
4153
4153
+
(width 0.2)
4154
4154
+
(layer "F.Cu")
4155
4155
+
(net 3)
4156
4156
+
(uuid "97c47a47-0dad-4b3e-a4ae-abb9a0c4a979")
4157
4157
+
)
4158
4158
+
(segment
4159
4159
+
(start 138 88.825)
4160
4160
+
(end 136.276 87.101)
4161
4161
+
(width 0.2)
4162
4162
+
(layer "F.Cu")
4163
4163
+
(net 3)
4164
4164
+
(uuid "acc39a34-d228-455a-ab26-b1ccee4a99e7")
4165
4165
+
)
4166
4166
+
(segment
4167
4167
+
(start 145.04 96.5)
4168
4168
+
(end 143 98.54)
4169
4169
+
(width 0.2)
4170
4170
+
(layer "F.Cu")
4171
4171
+
(net 4)
4172
4172
+
(uuid "01befe7d-aade-4aa8-9797-e0604f501a25")
4173
4173
+
)
4174
4174
+
(segment
4175
4175
+
(start 143 98.54)
4176
4176
+
(end 145.49 98.54)
4177
4177
+
(width 0.2)
4178
4178
+
(layer "F.Cu")
4179
4179
+
(net 4)
4180
4180
+
(uuid "2d351f74-ad44-4308-a199-13617e152111")
4181
4181
+
)
4182
4182
+
(segment
4183
4183
+
(start 146.225 96.5)
4184
4184
+
(end 145.04 96.5)
4185
4185
+
(width 0.2)
4186
4186
+
(layer "F.Cu")
4187
4187
+
(net 4)
4188
4188
+
(uuid "2f293b39-8d70-49a8-b71c-49d8965800bb")
4189
4189
+
)
4190
4190
+
(segment
4191
4191
+
(start 138.815 98.54)
4192
4192
+
(end 138.775 98.5)
4193
4193
+
(width 0.2)
4194
4194
+
(layer "F.Cu")
4195
4195
+
(net 4)
4196
4196
+
(uuid "4bc7ec69-af2d-4ab6-8646-525449a85209")
4197
4197
+
)
4198
4198
+
(segment
4199
4199
+
(start 138.775 98.5)
4200
4200
+
(end 138.775 100.7125)
4201
4201
+
(width 0.2)
4202
4202
+
(layer "F.Cu")
4203
4203
+
(net 4)
4204
4204
+
(uuid "619f1bee-47b4-48bc-967a-3c3134585af3")
4205
4205
+
)
4206
4206
+
(segment
4207
4207
+
(start 138.775 100.7125)
4208
4208
+
(end 139.0625 101)
4209
4209
+
(width 0.2)
4210
4210
+
(layer "F.Cu")
4211
4211
+
(net 4)
4212
4212
+
(uuid "8d230bce-73d9-4c7b-ab94-508adcb18191")
4213
4213
+
)
4214
4214
+
(segment
4215
4215
+
(start 145.49 98.54)
4216
4216
+
(end 145.95 99)
4217
4217
+
(width 0.2)
4218
4218
+
(layer "F.Cu")
4219
4219
+
(net 4)
4220
4220
+
(uuid "bf1eeae5-3c88-4a8e-a714-34deafec00ca")
4221
4221
+
)
4222
4222
+
(segment
4223
4223
+
(start 143 98.54)
4224
4224
+
(end 138.815 98.54)
4225
4225
+
(width 0.2)
4226
4226
+
(layer "F.Cu")
4227
4227
+
(net 4)
4228
4228
+
(uuid "f9e2948e-ebd6-4647-af90-edf07c29a1c2")
4229
4229
+
)
4230
4230
+
(segment
4231
4231
+
(start 144.735 93.46)
4232
4232
+
(end 147.775 96.5)
4233
4233
+
(width 0.2)
4234
4234
+
(layer "F.Cu")
4235
4235
+
(net 5)
4236
4236
+
(uuid "0630d967-6c2a-4ce8-9ea8-0adfbaa61194")
4237
4237
+
)
4238
4238
+
(segment
4239
4239
+
(start 135.5 89.175)
4240
4240
+
(end 136 89.175)
4241
4241
+
(width 0.2)
4242
4242
+
(layer "F.Cu")
4243
4243
+
(net 5)
4244
4244
+
(uuid "344f8156-dfeb-430d-b3ea-8d0db2752e65")
4245
4245
+
)
4246
4246
+
(segment
4247
4247
+
(start 147.775 96.5)
4248
4248
+
(end 151.5 96.5)
4249
4249
+
(width 0.2)
4250
4250
+
(layer "F.Cu")
4251
4251
+
(net 5)
4252
4252
+
(uuid "45bd0ec9-2700-4732-a8ab-83bd13a2acb5")
4253
4253
+
)
4254
4254
+
(segment
4255
4255
+
(start 135.5 86.825)
4256
4256
+
(end 135.5 89.175)
4257
4257
+
(width 0.2)
4258
4258
+
(layer "F.Cu")
4259
4259
+
(net 5)
4260
4260
+
(uuid "66795cb4-1fe2-4d61-8fa9-81b21ff8a4b1")
4261
4261
+
)
4262
4262
+
(segment
4263
4263
+
(start 143 93.46)
4264
4264
+
(end 144.735 93.46)
4265
4265
+
(width 0.2)
4266
4266
+
(layer "F.Cu")
4267
4267
+
(net 5)
4268
4268
+
(uuid "710741dd-1cd0-4dc7-8d1b-2ebc6fc4b071")
4269
4269
+
)
4270
4270
+
(segment
4271
4271
+
(start 136 89.175)
4272
4272
+
(end 140.285 93.46)
4273
4273
+
(width 0.2)
4274
4274
+
(layer "F.Cu")
4275
4275
+
(net 5)
4276
4276
+
(uuid "77725f0a-a194-405c-b406-d8443fc1103a")
4277
4277
+
)
4278
4278
+
(segment
4279
4279
+
(start 151.5 96.5)
4280
4280
+
(end 152 96)
4281
4281
+
(width 0.2)
4282
4282
+
(layer "F.Cu")
4283
4283
+
(net 5)
4284
4284
+
(uuid "b3295905-4a39-4a2e-93c4-8e9d62d5a5fc")
4285
4285
+
)
4286
4286
+
(segment
4287
4287
+
(start 140.285 93.46)
4288
4288
+
(end 143 93.46)
4289
4289
+
(width 0.2)
4290
4290
+
(layer "F.Cu")
4291
4291
+
(net 5)
4292
4292
+
(uuid "e0ad1f09-6258-4a9d-8e73-72d74e962d44")
4293
4293
+
)
4294
4294
+
(segment
4295
4295
+
(start 135.5 91.725)
4296
4296
+
(end 138.775 95)
4297
4297
+
(width 0.2)
4298
4298
+
(layer "F.Cu")
4299
4299
+
(net 6)
4300
4300
+
(uuid "2d5ff101-1cda-4c8f-8469-dcf7457d225b")
4301
4301
+
)
4302
4302
+
(segment
4303
4303
+
(start 142 95)
4304
4304
+
(end 143 96)
4305
4305
+
(width 0.2)
4306
4306
+
(layer "F.Cu")
4307
4307
+
(net 6)
4308
4308
+
(uuid "970cf5a5-1c36-48a4-88d0-160b876cb5ef")
4309
4309
+
)
4310
4310
+
(segment
4311
4311
+
(start 138.775 95)
4312
4312
+
(end 142 95)
4313
4313
+
(width 0.2)
4314
4314
+
(layer "F.Cu")
4315
4315
+
(net 6)
4316
4316
+
(uuid "ef838ae1-b75f-4bd5-b055-51c77a4c3c3e")
4317
4317
+
)
4318
4318
+
(segment
4319
4319
+
(start 135.5 90.825)
4320
4320
+
(end 135.5 91.725)
4321
4321
+
(width 0.2)
4322
4322
+
(layer "F.Cu")
4323
4323
+
(net 6)
4324
4324
+
(uuid "f6c961d1-609c-4db5-9700-70ee9a49b479")
4325
4325
+
)
4326
4326
+
(segment
4327
4327
+
(start 152 87.95)
4328
4328
+
(end 151.55 87.5)
4329
4329
+
(width 0.2)
4330
4330
+
(layer "F.Cu")
4331
4331
+
(net 7)
4332
4332
+
(uuid "a85c0530-35fd-4fa6-8700-21ce0c121fbd")
4333
4333
+
)
4334
4334
+
(segment
4335
4335
+
(start 152 92)
4336
4336
+
(end 152 87.95)
4337
4337
+
(width 0.2)
4338
4338
+
(layer "F.Cu")
4339
4339
+
(net 7)
4340
4340
+
(uuid "e9c3632b-dac0-4946-9da1-ae42705e1cc0")
4341
4341
+
)
4342
4342
+
(segment
4343
4343
+
(start 149.45 86.875)
4344
4344
+
(end 151.325 85)
4345
4345
+
(width 0.2)
4346
4346
+
(layer "F.Cu")
4347
4347
+
(net 8)
4348
4348
+
(uuid "8c4671d2-0cf8-40a7-b149-d167edafefd2")
4349
4349
+
)
4350
4350
+
(segment
4351
4351
+
(start 149.45 89.225)
4352
4352
+
(end 148.5 90.175)
4353
4353
+
(width 0.2)
4354
4354
+
(layer "F.Cu")
4355
4355
+
(net 8)
4356
4356
+
(uuid "b219d4eb-4e94-4b88-90e3-a3fcdb0b4ac8")
4357
4357
+
)
4358
4358
+
(segment
4359
4359
+
(start 149.45 86.875)
4360
4360
+
(end 149.45 87.5)
4361
4361
+
(width 0.2)
4362
4362
+
(layer "F.Cu")
4363
4363
+
(net 8)
4364
4364
+
(uuid "b6d65dc1-3a63-4d5c-95c6-4498bc69fc24")
4365
4365
+
)
4366
4366
+
(segment
4367
4367
+
(start 149.45 87.5)
4368
4368
+
(end 149.45 89.225)
4369
4369
+
(width 0.2)
4370
4370
+
(layer "F.Cu")
4371
4371
+
(net 8)
4372
4372
+
(uuid "d4d3a09b-403b-435d-ae5f-9fc884c0f044")
4373
4373
+
)
4374
4374
+
(segment
4375
4375
+
(start 137.225 95)
4376
4376
+
(end 132.5575 95)
4377
4377
+
(width 0.2)
4378
4378
+
(layer "F.Cu")
4379
4379
+
(net 9)
4380
4380
+
(uuid "3d8bc9ae-6e46-4bb6-96e5-f35d9d76a28f")
4381
4381
+
)
4382
4382
+
(segment
4383
4383
+
(start 132.5575 95)
4384
4384
+
(end 131.7825 94.225)
4385
4385
+
(width 0.2)
4386
4386
+
(layer "F.Cu")
4387
4387
+
(net 9)
4388
4388
+
(uuid "5721094a-fb30-4e76-850f-be94faaa9e8d")
4389
4389
+
)
4390
4390
+
(segment
4391
4391
+
(start 137.225 98.5)
4392
4392
+
(end 137.225 95)
4393
4393
+
(width 0.2)
4394
4394
+
(layer "F.Cu")
4395
4395
+
(net 9)
4396
4396
+
(uuid "f8c9394d-79eb-40eb-af1a-35c32f93d58b")
4397
4397
+
)
4398
4398
+
(segment
4399
4399
+
(start 131.7825 96.765)
4400
4400
+
(end 136.0175 101)
4401
4401
+
(width 0.2)
4402
4402
+
(layer "F.Cu")
4403
4403
+
(net 10)
4404
4404
+
(uuid "001d49cd-cd8f-4e48-bec4-1c6b958f85d8")
4405
4405
+
)
4406
4406
+
(segment
4407
4407
+
(start 136.0175 101)
4408
4408
+
(end 136.9375 101)
4409
4409
+
(width 0.2)
4410
4410
+
(layer "F.Cu")
4411
4411
+
(net 10)
4412
4412
+
(uuid "d2b99a3d-21ea-403e-acc1-f0ba2f4efd69")
4413
4413
+
)
4414
4414
+
(zone
4415
4415
+
(net 2)
4416
4416
+
(net_name "GND")
4417
4417
+
(layer "F.Cu")
4418
4418
+
(uuid "2c319176-0f3e-489f-992a-7e444b6417e3")
4419
4419
+
(hatch edge 0.5)
4420
4420
+
(connect_pads
4421
4421
+
(clearance 0.5)
4422
4422
+
)
4423
4423
+
(min_thickness 0.25)
4424
4424
+
(filled_areas_thickness no)
4425
4425
+
(fill yes
4426
4426
+
(thermal_gap 0.5)
4427
4427
+
(thermal_bridge_width 0.5)
4428
4428
+
)
4429
4429
+
(polygon
4430
4430
+
(pts
4431
4431
+
(xy 150 81.5) (xy 159 81.5) (xy 159 106.5) (xy 127 106.5) (xy 127 81.5)
4432
4432
+
)
4433
4433
+
)
4434
4434
+
(filled_polygon
4435
4435
+
(layer "F.Cu")
4436
4436
+
(pts
4437
4437
+
(xy 155.503032 81.500648) (xy 155.836929 81.517052) (xy 155.849037 81.518245) (xy 155.952146 81.533539)
4438
4438
+
(xy 156.176699 81.566849) (xy 156.188617 81.569219) (xy 156.509951 81.649709) (xy 156.521588 81.65324)
4439
4439
+
(xy 156.592806 81.678722) (xy 156.833467 81.764832) (xy 156.844688 81.769479) (xy 157.144163 81.91112)
4440
4440
+
(xy 157.154871 81.916844) (xy 157.438988 82.087137) (xy 157.449106 82.093897) (xy 157.71517 82.291224)
4441
4441
+
(xy 157.724576 82.298944) (xy 157.970013 82.521395) (xy 157.978604 82.529986) (xy 158.165755 82.736475)
4442
4442
+
(xy 158.201055 82.775423) (xy 158.208775 82.784829) (xy 158.406102 83.050893) (xy 158.412862 83.061011)
4443
4443
+
(xy 158.541776 83.276092) (xy 158.583148 83.345116) (xy 158.588883 83.355844) (xy 158.674301 83.536446)
4444
4444
+
(xy 158.730514 83.655297) (xy 158.73517 83.66654) (xy 158.846759 83.978411) (xy 158.850292 83.990055)
4445
4445
+
(xy 158.930777 84.311369) (xy 158.933151 84.323305) (xy 158.981754 84.650962) (xy 158.982947 84.663071)
4446
4446
+
(xy 158.999351 84.996966) (xy 158.9995 85.003051) (xy 158.9995 102.996948) (xy 158.999351 103.003033)
4447
4447
+
(xy 158.982947 103.336928) (xy 158.981754 103.349037) (xy 158.933151 103.676694) (xy 158.930777 103.68863)
4448
4448
+
(xy 158.850292 104.009944) (xy 158.846759 104.021588) (xy 158.73517 104.333459) (xy 158.730514 104.344702)
4449
4449
+
(xy 158.588885 104.644151) (xy 158.583148 104.654883) (xy 158.412862 104.938988) (xy 158.406102 104.949106)
4450
4450
+
(xy 158.208775 105.21517) (xy 158.201055 105.224576) (xy 157.978611 105.470006) (xy 157.970006 105.478611)
4451
4451
+
(xy 157.724576 105.701055) (xy 157.71517 105.708775) (xy 157.449106 105.906102) (xy 157.438988 105.912862)
4452
4452
+
(xy 157.154883 106.083148) (xy 157.144151 106.088885) (xy 156.844702 106.230514) (xy 156.833459 106.23517)
4453
4453
+
(xy 156.521588 106.346759) (xy 156.509944 106.350292) (xy 156.18863 106.430777) (xy 156.176694 106.433151)
4454
4454
+
(xy 155.849037 106.481754) (xy 155.836928 106.482947) (xy 155.521989 106.498419) (xy 155.503031 106.499351)
4455
4455
+
(xy 155.496949 106.4995) (xy 130.503051 106.4995) (xy 130.496968 106.499351) (xy 130.4769 106.498365)
4456
4456
+
(xy 130.163071 106.482947) (xy 130.150962 106.481754) (xy 129.823305 106.433151) (xy 129.811369 106.430777)
4457
4457
+
(xy 129.490055 106.350292) (xy 129.478411 106.346759) (xy 129.16654 106.23517) (xy 129.155301 106.230515)
4458
4458
+
(xy 128.855844 106.088883) (xy 128.845121 106.08315) (xy 128.561011 105.912862) (xy 128.550893 105.906102)
4459
4459
+
(xy 128.284829 105.708775) (xy 128.275423 105.701055) (xy 128.236475 105.665755) (xy 128.029986 105.478604)
4460
4460
+
(xy 128.021395 105.470013) (xy 127.798944 105.224576) (xy 127.791224 105.21517) (xy 127.593897 104.949106)
4461
4461
+
(xy 127.587137 104.938988) (xy 127.416844 104.654871) (xy 127.41112 104.644163) (xy 127.269479 104.344688)
4462
4462
+
(xy 127.264829 104.333459) (xy 127.246897 104.283343) (xy 127.15324 104.021588) (xy 127.149707 104.009944)
4463
4463
+
(xy 127.069219 103.688617) (xy 127.066848 103.676694) (xy 127.05191 103.575992) (xy 127.018245 103.349037)
4464
4464
+
(xy 127.017052 103.336927) (xy 127.000649 103.003032) (xy 127.0005 102.996948) (xy 127.0005 102.881902)
4465
4465
+
(xy 128.9995 102.881902) (xy 128.9995 103.118097) (xy 129.036446 103.351368) (xy 129.109433 103.575996)
4466
4466
+
(xy 129.216657 103.786433) (xy 129.355483 103.97751) (xy 129.52249 104.144517) (xy 129.713567 104.283343)
4467
4467
+
(xy 129.811925 104.333459) (xy 129.924003 104.390566) (xy 129.924005 104.390566) (xy 129.924008 104.390568)
4468
4468
+
(xy 130.044412 104.429689) (xy 130.148631 104.463553) (xy 130.381903 104.5005) (xy 130.381908 104.5005)
4469
4469
+
(xy 130.618097 104.5005) (xy 130.851368 104.463553) (xy 131.075992 104.390568) (xy 131.286433 104.283343)
4470
4470
+
(xy 131.47751 104.144517) (xy 131.644517 103.97751) (xy 131.783343 103.786433) (xy 131.890568 103.575992)
4471
4471
+
(xy 131.963553 103.351368) (xy 131.96584 103.336927) (xy 132.0005 103.118097) (xy 132.0005 102.881902)
4472
4472
+
(xy 153.9995 102.881902) (xy 153.9995 103.118097) (xy 154.036446 103.351368) (xy 154.109433 103.575996)
4473
4473
+
(xy 154.216657 103.786433) (xy 154.355483 103.97751) (xy 154.52249 104.144517) (xy 154.713567 104.283343)
4474
4474
+
(xy 154.811925 104.333459) (xy 154.924003 104.390566) (xy 154.924005 104.390566) (xy 154.924008 104.390568)
4475
4475
+
(xy 155.044412 104.429689) (xy 155.148631 104.463553) (xy 155.381903 104.5005) (xy 155.381908 104.5005)
4476
4476
+
(xy 155.618097 104.5005) (xy 155.851368 104.463553) (xy 156.075992 104.390568) (xy 156.286433 104.283343)
4477
4477
+
(xy 156.47751 104.144517) (xy 156.644517 103.97751) (xy 156.783343 103.786433) (xy 156.890568 103.575992)
4478
4478
+
(xy 156.963553 103.351368) (xy 156.96584 103.336927) (xy 157.0005 103.118097) (xy 157.0005 102.881902)
4479
4479
+
(xy 156.963553 102.648631) (xy 156.890566 102.424003) (xy 156.783342 102.213566) (xy 156.644517 102.02249)
4480
4480
+
(xy 156.47751 101.855483) (xy 156.286433 101.716657) (xy 156.228807 101.687295) (xy 156.075996 101.609433)
4481
4481
+
(xy 155.851368 101.536446) (xy 155.618097 101.4995) (xy 155.618092 101.4995) (xy 155.381908 101.4995)
4482
4482
+
(xy 155.381903 101.4995) (xy 155.148631 101.536446) (xy 154.924003 101.609433) (xy 154.713566 101.716657)
4483
4483
+
(xy 154.60455 101.795862) (xy 154.52249 101.855483) (xy 154.522488 101.855485) (xy 154.522487 101.855485)
4484
4484
+
(xy 154.355485 102.022487) (xy 154.355485 102.022488) (xy 154.355483 102.02249) (xy 154.344546 102.037544)
4485
4485
+
(xy 154.216657 102.213566) (xy 154.109433 102.424003) (xy 154.036446 102.648631) (xy 153.9995 102.881902)
4486
4486
+
(xy 132.0005 102.881902) (xy 131.963553 102.648631) (xy 131.890566 102.424003) (xy 131.783342 102.213566)
4487
4487
+
(xy 131.644517 102.02249) (xy 131.47751 101.855483) (xy 131.286433 101.716657) (xy 131.228807 101.687295)
4488
4488
+
(xy 131.075996 101.609433) (xy 130.851368 101.536446) (xy 130.618097 101.4995) (xy 130.618092 101.4995)
4489
4489
+
(xy 130.381908 101.4995) (xy 130.381903 101.4995) (xy 130.148631 101.536446) (xy 129.924003 101.609433)
4490
4490
+
(xy 129.713566 101.716657) (xy 129.60455 101.795862) (xy 129.52249 101.855483) (xy 129.522488 101.855485)
4491
4491
+
(xy 129.522487 101.855485) (xy 129.355485 102.022487) (xy 129.355485 102.022488) (xy 129.355483 102.02249)
4492
4492
+
(xy 129.344546 102.037544) (xy 129.216657 102.213566) (xy 129.109433 102.424003) (xy 129.036446 102.648631)
4493
4493
+
(xy 128.9995 102.881902) (xy 127.0005 102.881902) (xy 127.0005 93.421153) (xy 127.6595 93.421153)
4494
4494
+
(xy 127.6595 93.578846) (xy 127.690261 93.733489) (xy 127.690264 93.733501) (xy 127.750602 93.879172)
4495
4495
+
(xy 127.750609 93.879185) (xy 127.83821 94.010288) (xy 127.838213 94.010292) (xy 127.949707 94.121786)
4496
4496
+
(xy 127.949711 94.121789) (xy 128.080814 94.20939) (xy 128.080827 94.209397) (xy 128.223323 94.26842)
4497
4497
+
(xy 128.226503 94.269737) (xy 128.363341 94.296956) (xy 128.381153 94.300499) (xy 128.381156 94.3005)
4498
4498
+
(xy 128.381158 94.3005) (xy 128.538844 94.3005) (xy 128.538845 94.300499) (xy 128.693497 94.269737)
4499
4499
+
(xy 128.806166 94.223067) (xy 128.839172 94.209397) (xy 128.839172 94.209396) (xy 128.839179 94.209394)
4500
4500
+
(xy 128.970289 94.121789) (xy 129.081789 94.010289) (xy 129.169394 93.879179) (xy 129.172398 93.874684)
4501
4501
+
(xy 129.22601 93.829879) (xy 129.295335 93.821172) (xy 129.358363 93.851326) (xy 129.395082 93.91077)
4502
4502
+
(xy 129.3995 93.943575) (xy 129.3995 94.400017) (xy 129.41 94.502796) (xy 129.465185 94.669332)
4503
4503
+
(xy 129.465187 94.669337) (xy 129.557289 94.818657) (xy 129.686128 94.947496) (xy 129.719613 95.008819)
4504
4504
+
(xy 129.714629 95.078511) (xy 129.698767 95.108058) (xy 129.63113 95.201155) (xy 129.631128 95.201158)
4505
4505
+
(xy 129.51676 95.425616) (xy 129.43891 95.665211) (xy 129.433642 95.698472) (xy 129.403711 95.761606)
4506
4506
+
(xy 129.344398 95.798536) (xy 129.274536 95.797536) (xy 129.216304 95.758925) (xy 129.19661 95.726527)
4507
4507
+
(xy 129.169394 95.660821) (xy 129.16939 95.660814) (xy 129.081789 95.529711) (xy 129.081786 95.529707)
4508
4508
+
(xy 128.970292 95.418213) (xy 128.970288 95.41821) (xy 128.839185 95.330609) (xy 128.839172 95.330602)
4509
4509
+
(xy 128.693501 95.270264) (xy 128.693489 95.270261) (xy 128.538845 95.2395) (xy 128.538842 95.2395)
4510
4510
+
(xy 128.381158 95.2395) (xy 128.381155 95.2395) (xy 128.22651 95.270261) (xy 128.226498 95.270264)
4511
4511
+
(xy 128.080827 95.330602) (xy 128.080814 95.330609) (xy 127.949711 95.41821) (xy 127.949707 95.418213)
4512
4512
+
(xy 127.838213 95.529707) (xy 127.83821 95.529711) (xy 127.750609 95.660814) (xy 127.750602 95.660827)
4513
4513
+
(xy 127.690264 95.806498) (xy 127.690261 95.80651) (xy 127.6595 95.961153) (xy 127.6595 96.118846)
4514
4514
+
(xy 127.690261 96.273489) (xy 127.690264 96.273501) (xy 127.750602 96.419172) (xy 127.750609 96.419185)
4515
4515
+
(xy 127.83821 96.550288) (xy 127.838213 96.550292) (xy 127.949707 96.661786) (xy 127.949711 96.661789)
4516
4516
+
(xy 128.080814 96.74939) (xy 128.080827 96.749397) (xy 128.226498 96.809735) (xy 128.226503 96.809737)
4517
4517
+
(xy 128.381153 96.840499) (xy 128.381156 96.8405) (xy 128.381158 96.8405) (xy 128.538844 96.8405)
4518
4518
+
(xy 128.538845 96.840499) (xy 128.693497 96.809737) (xy 128.806166 96.763067) (xy 128.839172 96.749397)
4519
4519
+
(xy 128.839172 96.749396) (xy 128.839179 96.749394) (xy 128.970289 96.661789) (xy 129.081789 96.550289)
4520
4520
+
(xy 129.169394 96.419179) (xy 129.196609 96.353475) (xy 129.240447 96.299073) (xy 129.306741 96.277007)
4521
4521
+
(xy 129.37444 96.294285) (xy 129.422052 96.345421) (xy 129.433642 96.381528) (xy 129.43891 96.414787)
4522
4522
+
(xy 129.51676 96.654383) (xy 129.631132 96.878848) (xy 129.779201 97.082649) (xy 129.779205 97.082654)
4523
4523
+
(xy 129.957345 97.260794) (xy 129.95735 97.260798) (xy 130.100584 97.364863) (xy 130.161155 97.40887)
4524
4524
+
(xy 130.29192 97.475498) (xy 130.385616 97.523239) (xy 130.385618 97.523239) (xy 130.385621 97.523241)
4525
4525
+
(xy 130.625215 97.60109) (xy 130.874038 97.6405) (xy 130.874039 97.6405) (xy 131.125961 97.6405)
4526
4526
+
(xy 131.125962 97.6405) (xy 131.374785 97.60109) (xy 131.600326 97.527806) (xy 131.670163 97.525812)
4527
4527
+
(xy 131.726322 97.558057) (xy 135.532639 101.364374) (xy 135.532649 101.364385) (xy 135.536979 101.368715)
4528
4528
+
(xy 135.53698 101.368716) (xy 135.648784 101.48052) (xy 135.648786 101.480521) (xy 135.64879 101.480524)
4529
4529
+
(xy 135.745653 101.536447) (xy 135.785716 101.559577) (xy 135.897519 101.589534) (xy 135.938442 101.6005)
4530
4530
+
(xy 135.938443 101.6005) (xy 135.956008 101.6005) (xy 135.967647 101.602746) (xy 135.988587 101.613547)
4531
4531
+
(xy 136.011191 101.620185) (xy 136.01906 101.629267) (xy 136.029742 101.634777) (xy 136.041517 101.655183)
4532
4532
+
(xy 136.056946 101.672989) (xy 136.061858 101.685496) (xy 136.06245 101.687284) (xy 136.062455 101.687295)
4533
4533
+
(xy 136.150716 101.830387) (xy 136.150719 101.830391) (xy 136.269608 101.94928) (xy 136.269612 101.949283)
4534
4534
+
(xy 136.412704 102.037544) (xy 136.412707 102.037545) (xy 136.412713 102.037549) (xy 136.572315 102.090436)
4535
4535
+
(xy 136.670826 102.1005) (xy 136.670831 102.1005) (xy 137.204169 102.1005) (xy 137.204174 102.1005)
4536
4536
+
(xy 137.302685 102.090436) (xy 137.462287 102.037549) (xy 137.605391 101.949281) (xy 137.724281 101.830391)
4537
4537
+
(xy 137.812549 101.687287) (xy 137.865436 101.527685) (xy 137.8755 101.429174) (xy 137.8755 100.570826)
4538
4538
+
(xy 137.865436 100.472315) (xy 137.812549 100.312713) (xy 137.812545 100.312707) (xy 137.812544 100.312704)
4539
4539
+
(xy 137.724283 100.169612) (xy 137.72428 100.169608) (xy 137.605391 100.050719) (xy 137.605387 100.050716)
4540
4540
+
(xy 137.462295 99.962455) (xy 137.462289 99.962452) (xy 137.462287 99.962451) (xy 137.302685 99.909564)
4541
4541
+
(xy 137.302683 99.909563) (xy 137.204181 99.8995) (xy 137.204174 99.8995) (xy 136.670826 99.8995)
4542
4542
+
(xy 136.670818 99.8995) (xy 136.572316 99.909563) (xy 136.572315 99.909564) (xy 136.539506 99.920436)
4543
4543
+
(xy 136.412715 99.96245) (xy 136.412704 99.962455) (xy 136.269612 100.050716) (xy 136.181212 100.139116)
4544
4544
+
(xy 136.119888 100.1726) (xy 136.050197 100.167616) (xy 136.00585 100.139115) (xy 132.546259 96.679524)
4545
4545
+
(xy 132.512774 96.618201) (xy 132.516008 96.553527) (xy 132.56109 96.414785) (xy 132.6005 96.165962)
4546
4546
+
(xy 132.6005 95.914038) (xy 132.573552 95.743897) (xy 132.582506 95.674605) (xy 132.627503 95.621153)
4547
4547
+
(xy 132.694254 95.600513) (xy 132.696025 95.6005) (xy 136.294575 95.6005) (xy 136.361614 95.620185)
4548
4548
+
(xy 136.400113 95.659402) (xy 136.410987 95.677032) (xy 136.427032 95.703044) (xy 136.546956 95.822968)
4549
4549
+
(xy 136.565596 95.834465) (xy 136.612321 95.886412) (xy 136.6245 95.940004) (xy 136.6245 97.559995)
4550
4550
+
(xy 136.604815 97.627034) (xy 136.5656 97.665532) (xy 136.546954 97.677033) (xy 136.427029 97.796959)
4551
4551
+
(xy 136.338001 97.941294) (xy 136.337996 97.941305) (xy 136.284651 98.10229) (xy 136.2745 98.201647)
4552
4552
+
(xy 136.2745 98.798337) (xy 136.274501 98.798355) (xy 136.28465 98.897707) (xy 136.284651 98.89771)
4553
4553
+
(xy 136.337996 99.058694) (xy 136.338001 99.058705) (xy 136.427029 99.20304) (xy 136.427032 99.203044)
4554
4554
+
(xy 136.546955 99.322967) (xy 136.546959 99.32297) (xy 136.691294 99.411998) (xy 136.691297 99.411999)
4555
4555
+
(xy 136.691303 99.412003) (xy 136.852292 99.465349) (xy 136.951655 99.4755) (xy 137.498344 99.475499)
4556
4556
+
(xy 137.498352 99.475498) (xy 137.498355 99.475498) (xy 137.55276 99.46994) (xy 137.597708 99.465349)
4557
4557
+
(xy 137.758697 99.412003) (xy 137.903044 99.322968) (xy 137.912319 99.313693) (xy 137.912907 99.313371)
4558
4558
+
(xy 137.913236 99.312785) (xy 137.943555 99.296636) (xy 137.973642 99.280208) (xy 137.97431 99.280255)
4559
4559
+
(xy 137.974904 99.27994) (xy 138.009124 99.282745) (xy 138.043334 99.285192) (xy 138.044094 99.285612)
4560
4560
+
(xy 138.04454 99.285649) (xy 138.046696 99.28705) (xy 138.075339 99.302885) (xy 138.081865 99.307877)
4561
4561
+
(xy 138.096956 99.322968) (xy 138.1209 99.337736) (xy 138.125839 99.341515) (xy 138.142952 99.364879)
4562
4562
+
(xy 138.162321 99.386412) (xy 138.163938 99.393529) (xy 138.167126 99.397881) (xy 138.167933 99.411111)
4563
4563
+
(xy 138.1745 99.440004) (xy 138.1745 100.331786) (xy 138.168206 100.370789) (xy 138.134565 100.472311)
4564
4564
+
(xy 138.134563 100.472321) (xy 138.1245 100.570818) (xy 138.1245 101.429181) (xy 138.134563 101.527683)
4565
4565
+
(xy 138.18745 101.687284) (xy 138.187455 101.687295) (xy 138.275716 101.830387) (xy 138.275719 101.830391)
4566
4566
+
(xy 138.394608 101.94928) (xy 138.394612 101.949283) (xy 138.537704 102.037544) (xy 138.537707 102.037545)
4567
4567
+
(xy 138.537713 102.037549) (xy 138.697315 102.090436) (xy 138.795826 102.1005) (xy 138.795831 102.1005)
4568
4568
+
(xy 139.329169 102.1005) (xy 139.329174 102.1005) (xy 139.427685 102.090436) (xy 139.587287 102.037549)
4569
4569
+
(xy 139.730391 101.949281) (xy 139.849281 101.830391) (xy 139.937549 101.687287) (xy 139.990436 101.527685)
4570
4570
+
(xy 140.0005 101.429174) (xy 140.0005 100.570826) (xy 139.990436 100.472315) (xy 139.937549 100.312713)
4571
4571
+
(xy 139.937545 100.312707) (xy 139.937544 100.312704) (xy 139.849283 100.169612) (xy 139.84928 100.169608)
4572
4572
+
(xy 139.730391 100.050719) (xy 139.730387 100.050716) (xy 139.587295 99.962455) (xy 139.587289 99.962452)
4573
4573
+
(xy 139.587287 99.962451) (xy 139.50592 99.935488) (xy 139.460495 99.920436) (xy 139.403051 99.880663)
4574
4574
+
(xy 139.376228 99.816147) (xy 139.3755 99.80273) (xy 139.3755 99.440004) (xy 139.395185 99.372965)
4575
4575
+
(xy 139.434403 99.334465) (xy 139.453044 99.322968) (xy 139.572968 99.203044) (xy 139.575213 99.199403)
4576
4576
+
(xy 139.577405 99.197431) (xy 139.577449 99.197377) (xy 139.577458 99.197384) (xy 139.627159 99.15268)
4577
4577
+
(xy 139.680752 99.1405) (xy 141.938156 99.1405) (xy 142.005195 99.160185) (xy 142.038473 99.191613)
4578
4578
+
(xy 142.114515 99.296276) (xy 142.243724 99.425485) (xy 142.391556 99.532891) (xy 142.554369 99.615848)
4579
4579
+
(xy 142.728155 99.672315) (xy 142.795835 99.683034) (xy 142.90863 99.7009) (xy 142.908635 99.7009)
4580
4580
+
(xy 143.09137 99.7009) (xy 143.191631 99.685019) (xy 143.271845 99.672315) (xy 143.445631 99.615848)
4581
4581
+
(xy 143.608444 99.532891) (xy 143.756276 99.425485) (xy 143.885485 99.296276) (xy 143.961526 99.191613)
4582
4582
+
(xy 144.016856 99.148949) (xy 144.061844 99.1405) (xy 145.039187 99.1405) (xy 145.106226 99.160185)
4583
4583
+
(xy 145.151981 99.212989) (xy 145.158261 99.229898) (xy 145.177546 99.296278) (xy 145.195445 99.357887)
4584
4584
+
(xy 145.274282 99.491194) (xy 145.274289 99.491203) (xy 145.383796 99.60071) (xy 145.3838 99.600713)
4585
4585
+
(xy 145.383802 99.600715) (xy 145.517113 99.679555) (xy 145.665844 99.722765) (xy 145.700595 99.7255)
4586
4586
+
(xy 146.199404 99.725499) (xy 146.234156 99.722765) (xy 146.382887 99.679555) (xy 146.516198 99.600715)
4587
4587
+
(xy 146.625715 99.491198) (xy 146.704555 99.357887) (xy 146.743162 99.225001) (xy 147.257358 99.225001)
4588
4588
+
(xy 147.295906 99.357681) (xy 147.295907 99.357684) (xy 147.374682 99.490885) (xy 147.374688 99.490894)
4589
4589
+
(xy 147.484105 99.600311) (xy 147.484114 99.600317) (xy 147.617315 99.679092) (xy 147.617318 99.679093)
4590
4590
+
(xy 147.765915 99.722265) (xy 147.765927 99.722267) (xy 147.800646 99.724999) (xy 148.275 99.724999)
4591
4591
+
(xy 148.299342 99.724999) (xy 148.299363 99.724998) (xy 148.334078 99.722266) (xy 148.482681 99.679093)
4592
4592
+
(xy 148.482684 99.679092) (xy 148.615885 99.600317) (xy 148.615894 99.600311) (xy 148.725311 99.490894)
4593
4593
+
(xy 148.725317 99.490885) (xy 148.804092 99.357684) (xy 148.804093 99.357681) (xy 148.842641 99.225001)
4594
4594
+
(xy 148.84264 99.225) (xy 148.275 99.225) (xy 148.275 99.724999) (xy 147.800646 99.724999) (xy 147.825 99.724998)
4595
4595
+
(xy 147.825 99.225) (xy 147.25736 99.225) (xy 147.257358 99.225001) (xy 146.743162 99.225001) (xy 146.747765 99.209156)
4596
4596
+
(xy 146.7505 99.174405) (xy 146.750499 98.825596) (xy 146.747765 98.790844) (xy 146.743161 98.774998)
4597
4597
+
(xy 147.257358 98.774998) (xy 147.25736 98.775) (xy 147.825 98.775) (xy 148.275 98.775) (xy 148.84264 98.775)
4598
4598
+
(xy 148.842641 98.774998) (xy 148.804093 98.642318) (xy 148.804092 98.642315) (xy 148.725317 98.509114)
4599
4599
+
(xy 148.725311 98.509105) (xy 148.615894 98.399688) (xy 148.615885 98.399682) (xy 148.482684 98.320907)
4600
4600
+
(xy 148.482681 98.320906) (xy 148.334084 98.277734) (xy 148.334073 98.277732) (xy 148.299359 98.275)
4601
4601
+
(xy 148.275 98.275) (xy 148.275 98.775) (xy 147.825 98.775) (xy 147.825 98.274999) (xy 147.800647 98.275)
4602
4602
+
(xy 147.765921 98.277733) (xy 147.617318 98.320906) (xy 147.617315 98.320907) (xy 147.484114 98.399682)
4603
4603
+
(xy 147.484105 98.399688) (xy 147.374688 98.509105) (xy 147.374682 98.509114) (xy 147.295907 98.642315)
4604
4604
+
(xy 147.295906 98.642318) (xy 147.257358 98.774998) (xy 146.743161 98.774998) (xy 146.704555 98.642113)
4605
4605
+
(xy 146.625715 98.508802) (xy 146.625713 98.5088) (xy 146.62571 98.508796) (xy 146.516203 98.399289)
4606
4606
+
(xy 146.516194 98.399282) (xy 146.383668 98.320907) (xy 146.382887 98.320445) (xy 146.234156 98.277235)
4607
4607
+
(xy 146.234153 98.277234) (xy 146.234151 98.277234) (xy 146.19941 98.2745) (xy 146.199405 98.2745)
4608
4608
+
(xy 146.125097 98.2745) (xy 146.095656 98.265855) (xy 146.06567 98.259332) (xy 146.060654 98.255577)
4609
4609
+
(xy 146.058058 98.254815) (xy 146.037416 98.238181) (xy 145.97759 98.178355) (xy 145.977588 98.178352)
4610
4610
+
(xy 145.858717 98.059481) (xy 145.858716 98.05948) (xy 145.771904 98.00936) (xy 145.771904 98.009359)
4611
4611
+
(xy 145.7719 98.009358) (xy 145.721785 97.980423) (xy 145.569057 97.939499) (xy 145.410943 97.939499)
4612
4612
+
(xy 145.403347 97.939499) (xy 145.403331 97.9395) (xy 144.749098 97.9395) (xy 144.682059 97.919815)
4613
4613
+
(xy 144.636304 97.867011) (xy 144.62636 97.797853) (xy 144.655385 97.734297) (xy 144.661417 97.727819)
4614
4614
+
(xy 144.925084 97.464152) (xy 145.224263 97.164972) (xy 145.285584 97.131489) (xy 145.355275 97.136473)
4615
4615
+
(xy 145.411209 97.178344) (xy 145.417481 97.187559) (xy 145.427031 97.203043) (xy 145.546955 97.322967)
4616
4616
+
(xy 145.546959 97.32297) (xy 145.691294 97.411998) (xy 145.691297 97.411999) (xy 145.691303 97.412003)
4617
4617
+
(xy 145.852292 97.465349) (xy 145.951655 97.4755) (xy 146.498344 97.475499) (xy 146.498352 97.475498)
4618
4618
+
(xy 146.498355 97.475498) (xy 146.55276 97.46994) (xy 146.597708 97.465349) (xy 146.758697 97.412003)
4619
4619
+
(xy 146.903044 97.322968) (xy 146.912319 97.313693) (xy 146.973642 97.280208) (xy 147.043334 97.285192)
4620
4620
+
(xy 147.087681 97.313693) (xy 147.096955 97.322967) (xy 147.096959 97.32297) (xy 147.241294 97.411998)
4621
4621
+
(xy 147.241297 97.411999) (xy 147.241303 97.412003) (xy 147.402292 97.465349) (xy 147.501655 97.4755)
4622
4622
+
(xy 148.048344 97.475499) (xy 148.048352 97.475498) (xy 148.048355 97.475498) (xy 148.10276 97.46994)
4623
4623
+
(xy 148.147708 97.465349) (xy 148.308697 97.412003) (xy 148.453044 97.322968) (xy 148.572968 97.203044)
4624
4624
+
(xy 148.599887 97.159402) (xy 148.651835 97.112678) (xy 148.705425 97.1005) (xy 151.324991 97.1005)
4625
4625
+
(xy 151.420939 97.1005) (xy 151.420943 97.100501) (xy 151.579057 97.100501) (xy 151.57906 97.100499)
4626
4626
+
(xy 151.593502 97.100499) (xy 152.675002 97.100499) (xy 152.675008 97.100499) (xy 152.777797 97.089999)
4627
4627
+
(xy 152.944334 97.034814) (xy 153.093656 96.942712) (xy 153.217712 96.818656) (xy 153.309814 96.669334)
4628
4628
+
(xy 153.364999 96.502797) (xy 153.3755 96.400009) (xy 153.375499 95.599992) (xy 153.364999 95.497203)
4629
4629
+
(xy 153.309814 95.330666) (xy 153.217712 95.181344) (xy 153.093656 95.057288) (xy 153.093655 95.057287)
4630
4630
+
(xy 153.029019 95.01742) (xy 152.982294 94.965472) (xy 152.971071 94.89651) (xy 152.998914 94.832428)
4631
4631
+
(xy 153.006434 94.824199) (xy 153.114035 94.716598) (xy 153.215804 94.576524) (xy 153.294408 94.422255)
4632
4632
+
(xy 153.347914 94.257584) (xy 153.349115 94.25) (xy 152.28033 94.25) (xy 152.300075 94.230255) (xy 152.349444 94.144745)
4633
4633
+
(xy 152.375 94.04937) (xy 152.375 93.95063) (xy 152.349444 93.855255) (xy 152.300075 93.769745)
4634
4634
+
(xy 152.28033 93.75) (xy 153.349115 93.75) (xy 153.349115 93.749999) (xy 153.347914 93.742415) (xy 153.294408 93.577744)
4635
4635
+
(xy 153.215804 93.423475) (xy 153.114032 93.283397) (xy 152.991602 93.160967) (xy 152.908551 93.100628)
4636
4636
+
(xy 152.865885 93.045298) (xy 152.859906 92.975685) (xy 152.892511 92.913889) (xy 152.908551 92.899991)
4637
4637
+
(xy 152.991928 92.839414) (xy 153.114414 92.716928) (xy 153.216232 92.576788) (xy 153.294873 92.422445)
4638
4638
+
(xy 153.348402 92.257701) (xy 153.3755 92.086611) (xy 153.3755 91.913389) (xy 153.348402 91.742299)
4639
4639
+
(xy 153.294873 91.577555) (xy 153.216232 91.423212) (xy 153.114414 91.283072) (xy 152.991928 91.160586)
4640
4640
+
(xy 152.851788 91.058768) (xy 152.697445 90.980127) (xy 152.697444 90.980126) (xy 152.697445 90.980126)
4641
4641
+
(xy 152.686177 90.976465) (xy 152.628503 90.937025) (xy 152.601308 90.872666) (xy 152.6005 90.858536)
4642
4642
+
(xy 152.6005 87.870944) (xy 152.600499 87.87094) (xy 152.597002 87.857887) (xy 152.559577 87.718215)
4643
4643
+
(xy 152.530639 87.668095) (xy 152.48052 87.581284) (xy 152.386817 87.487581) (xy 152.353333 87.426257)
4644
4644
+
(xy 152.350499 87.3999) (xy 152.350499 87.325606) (xy 152.350498 87.325584) (xy 152.347765 87.290847)
4645
4645
+
(xy 152.347765 87.290844) (xy 152.304555 87.142113) (xy 152.225715 87.008802) (xy 152.225713 87.0088)
4646
4646
+
(xy 152.22571 87.008796) (xy 152.116203 86.899289) (xy 152.116194 86.899282) (xy 152.029148 86.847804)
4647
4647
+
(xy 151.982887 86.820445) (xy 151.834156 86.777235) (xy 151.834153 86.777234) (xy 151.834151 86.777234)
4648
4648
+
(xy 151.803395 86.774814) (xy 151.799405 86.7745) (xy 151.799404 86.7745) (xy 151.300606 86.7745)
4649
4649
+
(xy 151.300584 86.774501) (xy 151.265847 86.777234) (xy 151.265844 86.777235) (xy 151.117113 86.820445)
4650
4650
+
(xy 151.117111 86.820445) (xy 151.117111 86.820446) (xy 150.983805 86.899282) (xy 150.983796 86.899289)
4651
4651
+
(xy 150.874289 87.008796) (xy 150.874282 87.008805) (xy 150.795446 87.142111) (xy 150.752234 87.290847)
4652
4652
+
(xy 150.752234 87.290849) (xy 150.7495 87.325589) (xy 150.7495 87.674393) (xy 150.749501 87.674415)
4653
4653
+
(xy 150.752234 87.709152) (xy 150.752234 87.709155) (xy 150.752235 87.709156) (xy 150.795445 87.857887)
4654
4654
+
(xy 150.803167 87.870944) (xy 150.874282 87.991194) (xy 150.874289 87.991203) (xy 150.983796 88.10071)
4655
4655
+
(xy 150.9838 88.100713) (xy 150.983802 88.100715) (xy 151.117113 88.179555) (xy 151.265844 88.222765)
4656
4656
+
(xy 151.285227 88.22429) (xy 151.350515 88.249172) (xy 151.391987 88.305402) (xy 151.3995 88.347908)
4657
4657
+
(xy 151.3995 90.858536) (xy 151.379815 90.925575) (xy 151.327011 90.97133) (xy 151.313823 90.976465)
4658
4658
+
(xy 151.302555 90.980126) (xy 151.148211 91.058768) (xy 151.068256 91.116859) (xy 151.008072 91.160586)
4659
4659
+
(xy 151.00807 91.160588) (xy 151.008069 91.160588) (xy 150.885588 91.283069) (xy 150.885588 91.28307)
4660
4660
+
(xy 150.885586 91.283072) (xy 150.862675 91.314606) (xy 150.783768 91.423211) (xy 150.705128 91.577552)
4661
4661
+
(xy 150.651597 91.742302) (xy 150.641817 91.804054) (xy 150.6245 91.913389) (xy 150.6245 92.086611)
4662
4662
+
(xy 150.651598 92.257701) (xy 150.705127 92.422445) (xy 150.783768 92.576788) (xy 150.885586 92.716928)
4663
4663
+
(xy 151.008072 92.839414) (xy 151.061474 92.878213) (xy 151.091449 92.899991) (xy 151.134114 92.955322)
4664
4664
+
(xy 151.140093 93.024935) (xy 151.107487 93.08673) (xy 151.091448 93.100627) (xy 151.008404 93.160961)
4665
4665
+
(xy 151.008399 93.160965) (xy 150.885967 93.283397) (xy 150.784195 93.423475) (xy 150.705591 93.577744)
4666
4666
+
(xy 150.652085 93.742415) (xy 150.650884 93.749999) (xy 150.650885 93.75) (xy 151.71967 93.75) (xy 151.699925 93.769745)
4667
4667
+
(xy 151.650556 93.855255) (xy 151.625 93.95063) (xy 151.625 94.04937) (xy 151.650556 94.144745)
4668
4668
+
(xy 151.699925 94.230255) (xy 151.71967 94.25) (xy 150.650885 94.25) (xy 150.652085 94.257584) (xy 150.705591 94.422255)
4669
4669
+
(xy 150.784195 94.576524) (xy 150.885967 94.716602) (xy 150.993565 94.8242) (xy 151.02705 94.885523)
4670
4670
+
(xy 151.022066 94.955215) (xy 150.980194 95.011148) (xy 150.970981 95.01742) (xy 150.906342 95.057289)
4671
4671
+
(xy 150.782289 95.181342) (xy 150.690187 95.330663) (xy 150.690186 95.330666) (xy 150.635001 95.497203)
4672
4672
+
(xy 150.635001 95.497204) (xy 150.635 95.497204) (xy 150.6245 95.599983) (xy 150.6245 95.7755) (xy 150.604815 95.842539)
4673
4673
+
(xy 150.552011 95.888294) (xy 150.5005 95.8995) (xy 148.705425 95.8995) (xy 148.638386 95.879815)
4674
4674
+
(xy 148.599887 95.840598) (xy 148.572968 95.796956) (xy 148.453044 95.677032) (xy 148.45304 95.677029)
4675
4675
+
(xy 148.308705 95.588001) (xy 148.308699 95.587998) (xy 148.308697 95.587997) (xy 148.207214 95.554369)
4676
4676
+
(xy 148.147709 95.534651) (xy 148.048352 95.5245) (xy 148.048345 95.5245) (xy 147.700097 95.5245)
4677
4677
+
(xy 147.633058 95.504815) (xy 147.612416 95.488181) (xy 145.22259 93.098355) (xy 145.222588 93.098352)
4678
4678
+
(xy 145.103717 92.979481) (xy 145.103716 92.97948) (xy 145.016904 92.92936) (xy 145.016904 92.929359)
4679
4679
+
(xy 145.0169 92.929358) (xy 144.966785 92.900423) (xy 144.814057 92.859499) (xy 144.655943 92.859499)
4680
4680
+
(xy 144.648347 92.859499) (xy 144.648331 92.8595) (xy 144.061844 92.8595) (xy 143.994805 92.839815)
4681
4681
+
(xy 143.961526 92.808386) (xy 143.885485 92.703724) (xy 143.756276 92.574515) (xy 143.608444 92.467109)
4682
4682
+
(xy 143.445631 92.384152) (xy 143.271845 92.327685) (xy 143.271843 92.327684) (xy 143.271841 92.327684)
4683
4683
+
(xy 143.09137 92.2991) (xy 143.091365 92.2991) (xy 142.908635 92.2991) (xy 142.90863 92.2991) (xy 142.728158 92.327684)
4684
4684
+
(xy 142.554366 92.384153) (xy 142.391555 92.467109) (xy 142.243721 92.574517) (xy 142.114517 92.703721)
4685
4685
+
(xy 142.099058 92.724999) (xy 142.05139 92.790609) (xy 142.038474 92.808386) (xy 141.983144 92.851051)
4686
4686
+
(xy 141.938156 92.8595) (xy 140.585097 92.8595) (xy 140.518058 92.839815) (xy 140.497416 92.823181)
4687
4687
+
(xy 139.755817 92.081582) (xy 147.525001 92.081582) (xy 147.531408 92.152102) (xy 147.531409 92.152107)
4688
4688
+
(xy 147.581981 92.314396) (xy 147.669927 92.459877) (xy 147.790122 92.580072) (xy 147.935604 92.668019)
4689
4689
+
(xy 147.935603 92.668019) (xy 148.097894 92.71859) (xy 148.097892 92.71859) (xy 148.168418 92.724999)
4690
4690
+
(xy 148.75 92.724999) (xy 148.831581 92.724999) (xy 148.902102 92.718591) (xy 148.902107 92.71859)
4691
4691
+
(xy 149.064396 92.668018) (xy 149.209877 92.580072) (xy 149.330072 92.459877) (xy 149.418019 92.314395)
4692
4692
+
(xy 149.46859 92.152106) (xy 149.475 92.081572) (xy 149.475 92.075) (xy 148.75 92.075) (xy 148.75 92.724999)
4693
4693
+
(xy 148.168418 92.724999) (xy 148.249999 92.724998) (xy 148.25 92.724998) (xy 148.25 92.075) (xy 147.525001 92.075)
4694
4694
+
(xy 147.525001 92.081582) (xy 139.755817 92.081582) (xy 137.611416 89.937181) (xy 137.577931 89.875858)
4695
4695
+
(xy 137.582915 89.806166) (xy 137.624787 89.750233) (xy 137.690251 89.725816) (xy 137.699097 89.7255)
4696
4696
+
(xy 138.331613 89.7255) (xy 138.331616 89.7255) (xy 138.402196 89.719086) (xy 138.564606 89.668478)
4697
4697
+
(xy 138.710185 89.580472) (xy 138.78282 89.507836) (xy 138.844141 89.474353) (xy 138.913833 89.479337)
4698
4698
+
(xy 138.969767 89.521208) (xy 138.994184 89.586672) (xy 138.9945 89.595519) (xy 138.9945 90.495001)
4699
4699
+
(xy 138.994501 90.495019) (xy 139.005 90.597796) (xy 139.005001 90.597799) (xy 139.049491 90.732058)
4700
4700
+
(xy 139.060186 90.764334) (xy 139.152288 90.913656) (xy 139.276344 91.037712) (xy 139.425666 91.129814)
4701
4701
+
(xy 139.592203 91.184999) (xy 139.694991 91.1955) (xy 141.365008 91.195499) (xy 141.467797 91.184999)
4702
4702
+
(xy 141.634334 91.129814) (xy 141.783656 91.037712) (xy 141.907712 90.913656) (xy 141.999814 90.764334)
4703
4703
+
(xy 142.054999 90.597797) (xy 142.0655 90.495009) (xy 142.0655 90.494986) (xy 143.935001 90.494986)
4704
4704
+
(xy 143.945494 90.597697) (xy 144.000641 90.764119) (xy 144.000643 90.764124) (xy 144.092684 90.913345)
4705
4705
+
(xy 144.216654 91.037315) (xy 144.365875 91.129356) (xy 144.36588 91.129358) (xy 144.532302 91.184505)
4706
4706
+
(xy 144.532309 91.184506) (xy 144.635019 91.194999) (xy 145.219999 91.194999) (xy 145.72 91.194999)
4707
4707
+
(xy 146.304972 91.194999) (xy 146.304986 91.194998) (xy 146.407697 91.184505) (xy 146.574119 91.129358)
4708
4708
+
(xy 146.574124 91.129356) (xy 146.723345 91.037315) (xy 146.847315 90.913345) (xy 146.939356 90.764124)
4709
4709
+
(xy 146.939358 90.764119) (xy 146.994505 90.597697) (xy 146.994506 90.59769) (xy 147.004999 90.494986)
4710
4710
+
(xy 147.005 90.494973) (xy 147.005 89.75) (xy 145.72 89.75) (xy 145.72 91.194999) (xy 145.219999 91.194999)
4711
4711
+
(xy 145.22 91.194998) (xy 145.22 89.75) (xy 143.935001 89.75) (xy 143.935001 90.494986) (xy 142.0655 90.494986)
4712
4712
+
(xy 142.065499 89.479337) (xy 142.065499 88.505013) (xy 143.935 88.505013) (xy 143.935 89.25) (xy 145.22 89.25)
4713
4713
+
(xy 145.72 89.25) (xy 147.004999 89.25) (xy 147.004999 88.505028) (xy 147.004998 88.505013) (xy 146.994505 88.402302)
4714
4714
+
(xy 146.939358 88.23588) (xy 146.939356 88.235875) (xy 146.847315 88.086654) (xy 146.723345 87.962684)
4715
4715
+
(xy 146.574124 87.870643) (xy 146.574119 87.870641) (xy 146.407697 87.815494) (xy 146.40769 87.815493)
4716
4716
+
(xy 146.304986 87.805) (xy 145.72 87.805) (xy 145.72 89.25) (xy 145.22 89.25) (xy 145.22 87.805)
4717
4717
+
(xy 144.635028 87.805) (xy 144.635012 87.805001) (xy 144.532302 87.815494) (xy 144.36588 87.870641)
4718
4718
+
(xy 144.365875 87.870643) (xy 144.216654 87.962684) (xy 144.092684 88.086654) (xy 144.000643 88.235875)
4719
4719
+
(xy 144.000641 88.23588) (xy 143.945494 88.402302) (xy 143.945493 88.402309) (xy 143.935 88.505013)
4720
4720
+
(xy 142.065499 88.505013) (xy 142.065499 88.504998) (xy 142.065498 88.504981) (xy 142.054999 88.402203)
4721
4721
+
(xy 142.054998 88.4022) (xy 142.050756 88.3894) (xy 141.999814 88.235666) (xy 141.907712 88.086344)
4722
4722
+
(xy 141.808549 87.987181) (xy 141.775064 87.925858) (xy 141.780048 87.856166) (xy 141.82192 87.800233)
4723
4723
+
(xy 141.887384 87.775816) (xy 141.89623 87.7755) (xy 142.708331 87.7755) (xy 142.708347 87.775501)
4724
4724
+
(xy 142.715943 87.775501) (xy 142.874054 87.775501) (xy 142.874057 87.775501) (xy 143.026785 87.734577)
4725
4725
+
(xy 143.076904 87.705639) (xy 143.163716 87.65552) (xy 143.27552 87.543716) (xy 143.27552 87.543714)
4726
4726
+
(xy 143.285728 87.533507) (xy 143.28573 87.533504) (xy 144.587417 86.231816) (xy 144.648738 86.198333)
4727
4727
+
(xy 144.675086 86.195499) (xy 146.305008 86.195499) (xy 146.407797 86.184999) (xy 146.574334 86.129814)
4728
4728
+
(xy 146.723656 86.037712) (xy 146.847712 85.913656) (xy 146.939814 85.764334) (xy 146.965938 85.685495)
4729
4729
+
(xy 147.005711 85.628051) (xy 147.070227 85.601228) (xy 147.083644 85.6005) (xy 148.783285 85.6005)
4730
4730
+
(xy 148.850324 85.620185) (xy 148.889401 85.660349) (xy 148.904603 85.685496) (xy 148.91953 85.710188)
4731
4731
+
(xy 149.039811 85.830469) (xy 149.039813 85.83047) (xy 149.039815 85.830472) (xy 149.185394 85.918478)
4732
4732
+
(xy 149.273101 85.945808) (xy 149.331246 85.984543) (xy 149.359221 86.048568) (xy 149.34814 86.117553)
4733
4733
+
(xy 149.32389 86.151873) (xy 149.081286 86.394478) (xy 148.969481 86.506282) (xy 148.969479 86.506284)
4734
4734
+
(xy 148.950121 86.539815) (xy 148.933627 86.568384) (xy 148.890423 86.643215) (xy 148.849499 86.795943)
4735
4735
+
(xy 148.849499 86.795945) (xy 148.849499 86.882225) (xy 148.829814 86.949264) (xy 148.81318 86.969906)
4736
4736
+
(xy 148.774289 87.008796) (xy 148.774282 87.008805) (xy 148.695446 87.142111) (xy 148.652234 87.290847)
4737
4737
+
(xy 148.652234 87.290849) (xy 148.6495 87.325589) (xy 148.6495 87.674393) (xy 148.649501 87.674415)
4738
4738
+
(xy 148.652234 87.709152) (xy 148.652234 87.709155) (xy 148.652235 87.709156) (xy 148.695445 87.857887)
4739
4739
+
(xy 148.703167 87.870944) (xy 148.774282 87.991194) (xy 148.774289 87.991203) (xy 148.81318 88.030093)
4740
4740
+
(xy 148.846666 88.091416) (xy 148.8495 88.117775) (xy 148.8495 88.924903) (xy 148.829815 88.991942)
4741
4741
+
(xy 148.813181 89.012584) (xy 148.587584 89.238181) (xy 148.526261 89.271666) (xy 148.499903 89.2745)
4742
4742
+
(xy 148.168384 89.2745) (xy 148.149145 89.276248) (xy 148.097807 89.280913) (xy 147.935393 89.331522)
4743
4743
+
(xy 147.789811 89.41953) (xy 147.66953 89.539811) (xy 147.581522 89.685393) (xy 147.530913 89.847807)
4744
4744
+
(xy 147.5245 89.918386) (xy 147.5245 90.431613) (xy 147.530913 90.502192) (xy 147.581522 90.664606)
4745
4745
+
(xy 147.66953 90.810188) (xy 147.772015 90.912673) (xy 147.8055 90.973996) (xy 147.800516 91.043688)
4746
4746
+
(xy 147.772015 91.088035) (xy 147.669928 91.190121) (xy 147.669927 91.190122) (xy 147.58198 91.335604)
4747
4747
+
(xy 147.531409 91.497893) (xy 147.525 91.568427) (xy 147.525 91.575) (xy 149.474999 91.575) (xy 149.474999 91.568417)
4748
4748
+
(xy 149.468591 91.497897) (xy 149.46859 91.497892) (xy 149.418018 91.335603) (xy 149.330072 91.190122)
4749
4749
+
(xy 149.227984 91.088034) (xy 149.194499 91.026711) (xy 149.199483 90.957019) (xy 149.227983 90.912673)
4750
4750
+
(xy 149.330472 90.810185) (xy 149.418478 90.664606) (xy 149.469086 90.502196) (xy 149.4755 90.431616)
4751
4751
+
(xy 149.4755 90.100096) (xy 149.495185 90.033057) (xy 149.511815 90.012419) (xy 149.808506 89.715727)
4752
4752
+
(xy 149.808511 89.715724) (xy 149.818714 89.70552) (xy 149.818716 89.70552) (xy 149.93052 89.593716)
4753
4753
+
(xy 149.983359 89.502196) (xy 150.009577 89.456785) (xy 150.050501 89.304057) (xy 150.050501 89.145943)
4754
4754
+
(xy 150.050501 89.138348) (xy 150.0505 89.13833) (xy 150.0505 88.117775) (xy 150.070185 88.050736)
4755
4755
+
(xy 150.08682 88.030093) (xy 150.12571 87.991203) (xy 150.125715 87.991198) (xy 150.204555 87.857887)
4756
4756
+
(xy 150.247765 87.709156) (xy 150.2505 87.674405) (xy 150.250499 87.325596) (xy 150.247765 87.290844)
4757
4757
+
(xy 150.204555 87.142113) (xy 150.189434 87.116545) (xy 150.172253 87.048823) (xy 150.194413 86.982561)
4758
4758
+
(xy 150.208481 86.965752) (xy 151.162416 86.011819) (xy 151.223739 85.978334) (xy 151.250097 85.9755)
4759
4759
+
(xy 151.581613 85.9755) (xy 151.581616 85.9755) (xy 151.652196 85.969086) (xy 151.814606 85.918478)
4760
4760
+
(xy 151.960185 85.830472) (xy 152.080472 85.710185) (xy 152.168478 85.564606) (xy 152.219086 85.402196)
4761
4761
+
(xy 152.2255 85.331616) (xy 152.2255 84.881902) (xy 153.9995 84.881902) (xy 153.9995 85.118097)
4762
4762
+
(xy 154.036446 85.351368) (xy 154.109433 85.575996) (xy 154.182407 85.719214) (xy 154.216657 85.786433)
4763
4763
+
(xy 154.355483 85.97751) (xy 154.52249 86.144517) (xy 154.713567 86.283343) (xy 154.808124 86.331522)
4764
4764
+
(xy 154.924003 86.390566) (xy 154.924005 86.390566) (xy 154.924008 86.390568) (xy 155.013144 86.41953)
4765
4765
+
(xy 155.148631 86.463553) (xy 155.381903 86.5005) (xy 155.381908 86.5005) (xy 155.618097 86.5005)
4766
4766
+
(xy 155.851368 86.463553) (xy 156.075992 86.390568) (xy 156.286433 86.283343) (xy 156.47751 86.144517)
4767
4767
+
(xy 156.644517 85.97751) (xy 156.783343 85.786433) (xy 156.890568 85.575992) (xy 156.963553 85.351368)
4768
4768
+
(xy 156.979624 85.249902) (xy 157.0005 85.118097) (xy 157.0005 84.881902) (xy 156.963553 84.648631)
4769
4769
+
(xy 156.928195 84.539811) (xy 156.890568 84.424008) (xy 156.890566 84.424005) (xy 156.890566 84.424003)
4770
4770
+
(xy 156.812943 84.271661) (xy 156.783343 84.213567) (xy 156.644517 84.02249) (xy 156.47751 83.855483)
4771
4771
+
(xy 156.286433 83.716657) (xy 156.075996 83.609433) (xy 155.851368 83.536446) (xy 155.618097 83.4995)
4772
4772
+
(xy 155.618092 83.4995) (xy 155.381908 83.4995) (xy 155.381903 83.4995) (xy 155.148631 83.536446)
4773
4773
+
(xy 154.924003 83.609433) (xy 154.713566 83.716657) (xy 154.60455 83.795862) (xy 154.52249 83.855483)
4774
4774
+
(xy 154.522488 83.855485) (xy 154.522487 83.855485) (xy 154.355485 84.022487) (xy 154.355485 84.022488)
4775
4775
+
(xy 154.355483 84.02249) (xy 154.349363 84.030914) (xy 154.216657 84.213566) (xy 154.109433 84.424003)
4776
4776
+
(xy 154.036446 84.648631) (xy 153.9995 84.881902) (xy 152.2255 84.881902) (xy 152.2255 84.668384)
4777
4777
+
(xy 152.219086 84.597804) (xy 152.168478 84.435394) (xy 152.080472 84.289815) (xy 152.08047 84.289813)
4778
4778
+
(xy 152.080469 84.289811) (xy 151.960188 84.16953) (xy 151.814606 84.081522) (xy 151.652196 84.030914)
4779
4779
+
(xy 151.652194 84.030913) (xy 151.652192 84.030913) (xy 151.602778 84.026423) (xy 151.581616 84.0245)
4780
4780
+
(xy 151.068384 84.0245) (xy 151.049145 84.026248) (xy 150.997807 84.030913) (xy 150.835393 84.081522)
4781
4781
+
(xy 150.689811 84.16953) (xy 150.68981 84.169531) (xy 150.587681 84.271661) (xy 150.526358 84.305146)
4782
4782
+
(xy 150.456666 84.300162) (xy 150.412319 84.271661) (xy 150.310188 84.16953) (xy 150.164606 84.081522)
4783
4783
+
(xy 150.002196 84.030914) (xy 150.002194 84.030913) (xy 150.002192 84.030913) (xy 149.952778 84.026423)
4784
4784
+
(xy 149.931616 84.0245) (xy 149.418384 84.0245) (xy 149.399145 84.026248) (xy 149.347807 84.030913)
4785
4785
+
(xy 149.185393 84.081522) (xy 149.039811 84.16953) (xy 148.91953 84.289811) (xy 148.889402 84.33965)
4786
4786
+
(xy 148.837874 84.386838) (xy 148.783285 84.3995) (xy 147.129499 84.3995) (xy 147.06246 84.379815)
4787
4787
+
(xy 147.016705 84.327011) (xy 147.005499 84.2755) (xy 147.005499 83.504998) (xy 147.005498 83.504981)
4788
4788
+
(xy 146.994999 83.402203) (xy 146.994998 83.4022) (xy 146.979638 83.355848) (xy 146.939814 83.235666)
4789
4789
+
(xy 146.847712 83.086344) (xy 146.723656 82.962288) (xy 146.574334 82.870186) (xy 146.407797 82.815001)
4790
4790
+
(xy 146.407795 82.815) (xy 146.30501 82.8045) (xy 144.634998 82.8045) (xy 144.634981 82.804501)
4791
4791
+
(xy 144.532203 82.815) (xy 144.5322 82.815001) (xy 144.365668 82.870185) (xy 144.365663 82.870187)
4792
4792
+
(xy 144.216342 82.962289) (xy 144.092289 83.086342) (xy 144.000187 83.235663) (xy 144.000185 83.235668)
4793
4793
+
(xy 144.000115 83.23588) (xy 143.945001 83.402203) (xy 143.945001 83.402204) (xy 143.945 83.402204)
4794
4794
+
(xy 143.9345 83.504983) (xy 143.9345 85.134902) (xy 143.914815 85.201941) (xy 143.898181 85.222583)
4795
4795
+
(xy 142.582584 86.538181) (xy 142.521261 86.571666) (xy 142.494903 86.5745) (xy 138.91652 86.5745)
4796
4796
+
(xy 138.849481 86.554815) (xy 138.828839 86.538181) (xy 138.710188 86.41953) (xy 138.662279 86.390568)
4797
4797
+
(xy 138.564606 86.331522) (xy 138.402196 86.280914) (xy 138.402194 86.280913) (xy 138.402192 86.280913)
4798
4798
+
(xy 138.352778 86.276423) (xy 138.331616 86.2745) (xy 137.668384 86.2745) (xy 137.649145 86.276248)
4799
4799
+
(xy 137.597807 86.280913) (xy 137.435393 86.331522) (xy 137.289811 86.41953) (xy 137.169532 86.539809)
4800
4800
+
(xy 137.169528 86.539814) (xy 137.169528 86.539815) (xy 137.106615 86.643884) (xy 137.055088 86.69107)
4801
4801
+
(xy 136.986229 86.702908) (xy 136.9219 86.675639) (xy 136.882527 86.61792) (xy 136.8765 86.579732)
4802
4802
+
(xy 136.8765 86.04006) (xy 136.876501 86.040047) (xy 136.876501 85.871944) (xy 136.876501 85.871943)
4803
4803
+
(xy 136.835577 85.719216) (xy 136.801591 85.66035) (xy 136.756524 85.58229) (xy 136.756518 85.582282)
4804
4804
+
(xy 136.669222 85.494986) (xy 138.995001 85.494986) (xy 139.005494 85.597697) (xy 139.060641 85.764119)
4805
4805
+
(xy 139.060643 85.764124) (xy 139.152684 85.913345) (xy 139.276654 86.037315) (xy 139.425875 86.129356)
4806
4806
+
(xy 139.42588 86.129358) (xy 139.592302 86.184505) (xy 139.592309 86.184506) (xy 139.695019 86.194999)
4807
4807
+
(xy 140.279999 86.194999) (xy 140.78 86.194999) (xy 141.364972 86.194999) (xy 141.364986 86.194998)
4808
4808
+
(xy 141.467697 86.184505) (xy 141.634119 86.129358) (xy 141.634124 86.129356) (xy 141.783345 86.037315)
4809
4809
+
(xy 141.907315 85.913345) (xy 141.999356 85.764124) (xy 141.999358 85.764119) (xy 142.054505 85.597697)
4810
4810
+
(xy 142.054506 85.59769) (xy 142.064999 85.494986) (xy 142.065 85.494973) (xy 142.065 84.75) (xy 140.78 84.75)
4811
4811
+
(xy 140.78 86.194999) (xy 140.279999 86.194999) (xy 140.28 86.194998) (xy 140.28 84.75) (xy 138.995001 84.75)
4812
4812
+
(xy 138.995001 85.494986) (xy 136.669222 85.494986) (xy 136.511819 85.337583) (xy 136.478334 85.27626)
4813
4813
+
(xy 136.4755 85.249902) (xy 136.4755 84.918386) (xy 136.472185 84.881908) (xy 136.469086 84.847804)
4814
4814
+
(xy 136.418478 84.685394) (xy 136.330472 84.539815) (xy 136.33047 84.539813) (xy 136.330469 84.539811)
4815
4815
+
(xy 136.210188 84.41953) (xy 136.185866 84.404827) (xy 136.064606 84.331522) (xy 135.902196 84.280914)
4816
4816
+
(xy 135.902194 84.280913) (xy 135.902192 84.280913) (xy 135.852778 84.276423) (xy 135.831616 84.2745)
4817
4817
+
(xy 135.168384 84.2745) (xy 135.149145 84.276248) (xy 135.097807 84.280913) (xy 134.935393 84.331522)
4818
4818
+
(xy 134.789811 84.41953) (xy 134.66953 84.539811) (xy 134.581522 84.685393) (xy 134.530913 84.847807)
4819
4819
+
(xy 134.5245 84.918386) (xy 134.5245 85.431613) (xy 134.530913 85.502192) (xy 134.530913 85.502194)
4820
4820
+
(xy 134.530914 85.502196) (xy 134.581522 85.664606) (xy 134.655169 85.786433) (xy 134.66953 85.810188)
4821
4821
+
(xy 134.771661 85.912319) (xy 134.805146 85.973642) (xy 134.800162 86.043334) (xy 134.771661 86.087681)
4822
4822
+
(xy 134.669531 86.18981) (xy 134.66953 86.189811) (xy 134.581522 86.335393) (xy 134.530913 86.497807)
4823
4823
+
(xy 134.5245 86.568383) (xy 134.5245 87.081613) (xy 134.530913 87.152192) (xy 134.530913 87.152194)
4824
4824
+
(xy 134.530914 87.152196) (xy 134.581522 87.314606) (xy 134.588161 87.325589) (xy 134.66953 87.460188)
4825
4825
+
(xy 134.789811 87.580469) (xy 134.789813 87.58047) (xy 134.789815 87.580472) (xy 134.83965 87.610598)
4826
4826
+
(xy 134.886838 87.662126) (xy 134.8995 87.716715) (xy 134.8995 88.283284) (xy 134.879815 88.350323)
4827
4827
+
(xy 134.839652 88.3894) (xy 134.789811 88.41953) (xy 134.66953 88.539811) (xy 134.581522 88.685393)
4828
4828
+
(xy 134.530913 88.847807) (xy 134.5245 88.918386) (xy 134.5245 89.431613) (xy 134.530913 89.502192)
4829
4829
+
(xy 134.530913 89.502194) (xy 134.530914 89.502196) (xy 134.581522 89.664606) (xy 134.667098 89.806166)
4830
4830
+
(xy 134.66953 89.810188) (xy 134.771661 89.912319) (xy 134.805146 89.973642) (xy 134.800162 90.043334)
4831
4831
+
(xy 134.771661 90.087681) (xy 134.669531 90.18981) (xy 134.66953 90.189811) (xy 134.581522 90.335393)
4832
4832
+
(xy 134.530913 90.497807) (xy 134.525782 90.554275) (xy 134.5245 90.568384) (xy 134.5245 91.081616)
4833
4833
+
(xy 134.526423 91.102778) (xy 134.530913 91.152192) (xy 134.530913 91.152194) (xy 134.530914 91.152196)
4834
4834
+
(xy 134.581522 91.314606) (xy 134.669528 91.460185) (xy 134.789815 91.580472) (xy 134.789817 91.580473)
4835
4835
+
(xy 134.789818 91.580474) (xy 134.806737 91.590702) (xy 134.839647 91.610596) (xy 134.886836 91.662123)
4836
4836
+
(xy 134.899499 91.716714) (xy 134.899499 91.804054) (xy 134.899498 91.804054) (xy 134.899499 91.804057)
4837
4837
+
(xy 134.940423 91.956785) (xy 134.945273 91.965186) (xy 134.969358 92.0069) (xy 134.969359 92.006904)
4838
4838
+
(xy 134.96936 92.006904) (xy 135.015377 92.08661) (xy 135.019479 92.093714) (xy 135.019481 92.093717)
4839
4839
+
(xy 135.138349 92.212585) (xy 135.138355 92.21259) (xy 136.791352 93.865587) (xy 136.824837 93.92691)
4840
4840
+
(xy 136.819853 93.996602) (xy 136.777981 94.052535) (xy 136.742676 94.070973) (xy 136.691306 94.087996)
4841
4841
+
(xy 136.691303 94.087997) (xy 136.691294 94.088001) (xy 136.546959 94.177029) (xy 136.546955 94.177032)
4842
4842
+
(xy 136.427031 94.296956) (xy 136.400113 94.340598) (xy 136.348165 94.387322) (xy 136.294575 94.3995)
4843
4843
+
(xy 132.857598 94.3995) (xy 132.828157 94.390855) (xy 132.798171 94.384332) (xy 132.793155 94.380577)
4844
4844
+
(xy 132.790559 94.379815) (xy 132.769917 94.363181) (xy 132.636819 94.230083) (xy 132.603334 94.16876)
4845
4845
+
(xy 132.6005 94.142402) (xy 132.6005 92.599995) (xy 132.600499 92.599982) (xy 132.598129 92.576788)
4846
4846
+
(xy 132.589999 92.497202) (xy 132.534814 92.330665) (xy 132.442712 92.181344) (xy 132.318656 92.057288)
4847
4847
+
(xy 132.169335 91.965186) (xy 132.002798 91.910001) (xy 132.002796 91.91) (xy 131.900017 91.8995)
4848
4848
+
(xy 131.90001 91.8995) (xy 130.09999 91.8995) (xy 130.099982 91.8995) (xy 129.997203 91.91) (xy 129.997202 91.910001)
4849
4849
+
(xy 129.914669 91.937349) (xy 129.830667 91.965185) (xy 129.830662 91.965187) (xy 129.681342 92.057289)
4850
4850
+
(xy 129.557289 92.181342) (xy 129.465187 92.330662) (xy 129.465186 92.330665) (xy 129.410001 92.497202)
4851
4851
+
(xy 129.410001 92.497203) (xy 129.41 92.497203) (xy 129.3995 92.599982) (xy 129.3995 93.056424)
4852
4852
+
(xy 129.379815 93.123463) (xy 129.327011 93.169218) (xy 129.257853 93.179162) (xy 129.194297 93.150137)
4853
4853
+
(xy 129.172398 93.125315) (xy 129.081789 92.989711) (xy 129.081786 92.989707) (xy 128.970292 92.878213)
4854
4854
+
(xy 128.970288 92.87821) (xy 128.839185 92.790609) (xy 128.839172 92.790602) (xy 128.693501 92.730264)
4855
4855
+
(xy 128.693489 92.730261) (xy 128.538845 92.6995) (xy 128.538842 92.6995) (xy 128.381158 92.6995)
4856
4856
+
(xy 128.381155 92.6995) (xy 128.22651 92.730261) (xy 128.226498 92.730264) (xy 128.080827 92.790602)
4857
4857
+
(xy 128.080814 92.790609) (xy 127.949711 92.87821) (xy 127.949707 92.878213) (xy 127.838213 92.989707)
4858
4858
+
(xy 127.83821 92.989711) (xy 127.750609 93.120814) (xy 127.750602 93.120827) (xy 127.690264 93.266498)
4859
4859
+
(xy 127.690261 93.26651) (xy 127.6595 93.421153) (xy 127.0005 93.421153) (xy 127.0005 85.003051)
4860
4860
+
(xy 127.000649 84.996966) (xy 127.006302 84.881902) (xy 128.9995 84.881902) (xy 128.9995 85.118097)
4861
4861
+
(xy 129.036446 85.351368) (xy 129.109433 85.575996) (xy 129.182407 85.719214) (xy 129.216657 85.786433)
4862
4862
+
(xy 129.355483 85.97751) (xy 129.52249 86.144517) (xy 129.713567 86.283343) (xy 129.808124 86.331522)
4863
4863
+
(xy 129.924003 86.390566) (xy 129.924005 86.390566) (xy 129.924008 86.390568) (xy 130.013144 86.41953)
4864
4864
+
(xy 130.148631 86.463553) (xy 130.381903 86.5005) (xy 130.381908 86.5005) (xy 130.618097 86.5005)
4865
4865
+
(xy 130.851368 86.463553) (xy 131.075992 86.390568) (xy 131.286433 86.283343) (xy 131.47751 86.144517)
4866
4866
+
(xy 131.644517 85.97751) (xy 131.783343 85.786433) (xy 131.890568 85.575992) (xy 131.963553 85.351368)
4867
4867
+
(xy 131.979624 85.249902) (xy 132.0005 85.118097) (xy 132.0005 84.881902) (xy 131.963553 84.648631)
4868
4868
+
(xy 131.928195 84.539811) (xy 131.890568 84.424008) (xy 131.890566 84.424005) (xy 131.890566 84.424003)
4869
4869
+
(xy 131.812943 84.271661) (xy 131.783343 84.213567) (xy 131.644517 84.02249) (xy 131.47751 83.855483)
4870
4870
+
(xy 131.286433 83.716657) (xy 131.081717 83.612349) (xy 131.081715 83.612347) (xy 131.075998 83.609434)
4871
4871
+
(xy 130.851368 83.536446) (xy 130.652905 83.505013) (xy 138.995 83.505013) (xy 138.995 84.25) (xy 140.28 84.25)
4872
4872
+
(xy 140.78 84.25) (xy 142.064999 84.25) (xy 142.064999 83.505028) (xy 142.064998 83.505013) (xy 142.054505 83.402302)
4873
4873
+
(xy 141.999358 83.23588) (xy 141.999356 83.235875) (xy 141.907315 83.086654) (xy 141.783345 82.962684)
4874
4874
+
(xy 141.634124 82.870643) (xy 141.634119 82.870641) (xy 141.467697 82.815494) (xy 141.46769 82.815493)
4875
4875
+
(xy 141.364986 82.805) (xy 140.78 82.805) (xy 140.78 84.25) (xy 140.28 84.25) (xy 140.28 82.805)
4876
4876
+
(xy 139.695028 82.805) (xy 139.695012 82.805001) (xy 139.592302 82.815494) (xy 139.42588 82.870641)
4877
4877
+
(xy 139.425875 82.870643) (xy 139.276654 82.962684) (xy 139.152684 83.086654) (xy 139.060643 83.235875)
4878
4878
+
(xy 139.060641 83.23588) (xy 139.005494 83.402302) (xy 139.005493 83.402309) (xy 138.995 83.505013)
4879
4879
+
(xy 130.652905 83.505013) (xy 130.618097 83.4995) (xy 130.618092 83.4995) (xy 130.381908 83.4995)
4880
4880
+
(xy 130.381903 83.4995) (xy 130.148631 83.536446) (xy 129.924003 83.609433) (xy 129.713566 83.716657)
4881
4881
+
(xy 129.60455 83.795862) (xy 129.52249 83.855483) (xy 129.522488 83.855485) (xy 129.522487 83.855485)
4882
4882
+
(xy 129.355485 84.022487) (xy 129.355485 84.022488) (xy 129.355483 84.02249) (xy 129.349363 84.030914)
4883
4883
+
(xy 129.216657 84.213566) (xy 129.109433 84.424003) (xy 129.036446 84.648631) (xy 128.9995 84.881902)
4884
4884
+
(xy 127.006302 84.881902) (xy 127.00684 84.870951) (xy 127.00684 84.87095) (xy 127.013493 84.735526)
4885
4885
+
(xy 127.017052 84.663068) (xy 127.018245 84.650962) (xy 127.034733 84.539811) (xy 127.066849 84.323296)
4886
4886
+
(xy 127.069218 84.311385) (xy 127.14971 83.990043) (xy 127.15324 83.978411) (xy 127.197224 83.855485)
4887
4887
+
(xy 127.264835 83.666525) (xy 127.269476 83.655318) (xy 127.411124 83.355828) (xy 127.41684 83.345136)
4888
4888
+
(xy 127.587145 83.060998) (xy 127.593888 83.050905) (xy 127.791232 82.784818) (xy 127.798935 82.775433)
4889
4889
+
(xy 128.021405 82.529975) (xy 128.029975 82.521405) (xy 128.275433 82.298935) (xy 128.284818 82.291232)
4890
4890
+
(xy 128.550905 82.093888) (xy 128.560998 82.087145) (xy 128.845136 81.91684) (xy 128.855828 81.911124)
4891
4891
+
(xy 129.155318 81.769476) (xy 129.166525 81.764835) (xy 129.478412 81.653239) (xy 129.490043 81.64971)
4892
4892
+
(xy 129.811385 81.569218) (xy 129.823296 81.566849) (xy 130.150962 81.518244) (xy 130.163068 81.517052)
4893
4893
+
(xy 130.496967 81.500648) (xy 130.503051 81.5005) (xy 130.565892 81.5005) (xy 155.434108 81.5005)
4894
4894
+
(xy 155.496949 81.5005)
4895
4895
+
)
4896
4896
+
)
4897
4897
+
)
4898
4898
+
(embedded_fonts no)
4899
4899
+
)
+682
kicad/strike-sensor.kicad_pro
···
1
1
+
{
2
2
+
"board": {
3
3
+
"3dviewports": [],
4
4
+
"design_settings": {
5
5
+
"defaults": {
6
6
+
"apply_defaults_to_fp_fields": false,
7
7
+
"apply_defaults_to_fp_shapes": false,
8
8
+
"apply_defaults_to_fp_text": false,
9
9
+
"board_outline_line_width": 0.05,
10
10
+
"copper_line_width": 0.2,
11
11
+
"copper_text_italic": false,
12
12
+
"copper_text_size_h": 1.5,
13
13
+
"copper_text_size_v": 1.5,
14
14
+
"copper_text_thickness": 0.3,
15
15
+
"copper_text_upright": false,
16
16
+
"courtyard_line_width": 0.05,
17
17
+
"dimension_precision": 4,
18
18
+
"dimension_units": 3,
19
19
+
"dimensions": {
20
20
+
"arrow_length": 1270000,
21
21
+
"extension_offset": 500000,
22
22
+
"keep_text_aligned": true,
23
23
+
"suppress_zeroes": true,
24
24
+
"text_position": 0,
25
25
+
"units_format": 0
26
26
+
},
27
27
+
"fab_line_width": 0.1,
28
28
+
"fab_text_italic": false,
29
29
+
"fab_text_size_h": 1.0,
30
30
+
"fab_text_size_v": 1.0,
31
31
+
"fab_text_thickness": 0.15,
32
32
+
"fab_text_upright": false,
33
33
+
"other_line_width": 0.1,
34
34
+
"other_text_italic": false,
35
35
+
"other_text_size_h": 1.0,
36
36
+
"other_text_size_v": 1.0,
37
37
+
"other_text_thickness": 0.15,
38
38
+
"other_text_upright": false,
39
39
+
"pads": {
40
40
+
"drill": 0.8,
41
41
+
"height": 1.27,
42
42
+
"width": 2.54
43
43
+
},
44
44
+
"silk_line_width": 0.1,
45
45
+
"silk_text_italic": false,
46
46
+
"silk_text_size_h": 1.0,
47
47
+
"silk_text_size_v": 1.0,
48
48
+
"silk_text_thickness": 0.1,
49
49
+
"silk_text_upright": false,
50
50
+
"zones": {
51
51
+
"min_clearance": 0.5
52
52
+
}
53
53
+
},
54
54
+
"diff_pair_dimensions": [],
55
55
+
"drc_exclusions": [
56
56
+
[
57
57
+
"extra_footprint|130500000|103000000|561ef812-b792-45b9-a54e-8a6edc12a7d9|00000000-0000-0000-0000-000000000000",
58
58
+
""
59
59
+
],
60
60
+
[
61
61
+
"extra_footprint|130500000|85000000|0df1aa52-136b-463b-ae61-b58f35e6d34c|00000000-0000-0000-0000-000000000000",
62
62
+
""
63
63
+
],
64
64
+
[
65
65
+
"extra_footprint|143500000|103000000|ef897060-5595-4619-9a35-52a1b1248e3f|00000000-0000-0000-0000-000000000000",
66
66
+
""
67
67
+
],
68
68
+
[
69
69
+
"extra_footprint|155500000|103000000|d7a54f3b-3f25-4138-bffb-b3371ec8e68f|00000000-0000-0000-0000-000000000000",
70
70
+
""
71
71
+
],
72
72
+
[
73
73
+
"extra_footprint|155500000|85000000|85b3cbae-5d50-4a43-a9d2-4740c6bb5833|00000000-0000-0000-0000-000000000000",
74
74
+
""
75
75
+
],
76
76
+
[
77
77
+
"silk_over_copper|143254000|93746300|0271621a-972c-47d7-8db3-17ce5dfaeac0|00000000-0000-0000-0000-000000000000",
78
78
+
""
79
79
+
],
80
80
+
[
81
81
+
"silk_over_copper|143254000|96286300|d8be29d0-f007-435d-a5f2-fe60d230298f|00000000-0000-0000-0000-000000000000",
82
82
+
""
83
83
+
],
84
84
+
[
85
85
+
"silk_over_copper|143254000|98654900|69e376bf-021d-4db6-8369-2ed61fcd46df|00000000-0000-0000-0000-000000000000",
86
86
+
""
87
87
+
],
88
88
+
[
89
89
+
"silk_over_copper|143756712|93442658|aed47cd2-41d2-4412-8ebd-9a2a230ab778|00000000-0000-0000-0000-000000000000",
90
90
+
""
91
91
+
],
92
92
+
[
93
93
+
"silk_over_copper|143788085|98547953|deb927d2-daea-41c1-b64b-257b33d40996|00000000-0000-0000-0000-000000000000",
94
94
+
""
95
95
+
]
96
96
+
],
97
97
+
"meta": {
98
98
+
"version": 2
99
99
+
},
100
100
+
"rule_severities": {
101
101
+
"annular_width": "error",
102
102
+
"clearance": "error",
103
103
+
"connection_width": "warning",
104
104
+
"copper_edge_clearance": "error",
105
105
+
"copper_sliver": "warning",
106
106
+
"courtyards_overlap": "error",
107
107
+
"creepage": "error",
108
108
+
"diff_pair_gap_out_of_range": "error",
109
109
+
"diff_pair_uncoupled_length_too_long": "error",
110
110
+
"drill_out_of_range": "error",
111
111
+
"duplicate_footprints": "warning",
112
112
+
"extra_footprint": "warning",
113
113
+
"footprint": "error",
114
114
+
"footprint_filters_mismatch": "ignore",
115
115
+
"footprint_symbol_mismatch": "warning",
116
116
+
"footprint_type_mismatch": "ignore",
117
117
+
"hole_clearance": "error",
118
118
+
"hole_to_hole": "warning",
119
119
+
"holes_co_located": "warning",
120
120
+
"invalid_outline": "error",
121
121
+
"isolated_copper": "warning",
122
122
+
"item_on_disabled_layer": "error",
123
123
+
"items_not_allowed": "error",
124
124
+
"length_out_of_range": "error",
125
125
+
"lib_footprint_issues": "warning",
126
126
+
"lib_footprint_mismatch": "warning",
127
127
+
"malformed_courtyard": "error",
128
128
+
"microvia_drill_out_of_range": "error",
129
129
+
"mirrored_text_on_front_layer": "warning",
130
130
+
"missing_courtyard": "ignore",
131
131
+
"missing_footprint": "warning",
132
132
+
"net_conflict": "warning",
133
133
+
"nonmirrored_text_on_back_layer": "warning",
134
134
+
"npth_inside_courtyard": "ignore",
135
135
+
"padstack": "warning",
136
136
+
"pth_inside_courtyard": "ignore",
137
137
+
"shorting_items": "error",
138
138
+
"silk_edge_clearance": "warning",
139
139
+
"silk_over_copper": "warning",
140
140
+
"silk_overlap": "warning",
141
141
+
"skew_out_of_range": "error",
142
142
+
"solder_mask_bridge": "error",
143
143
+
"starved_thermal": "error",
144
144
+
"text_height": "warning",
145
145
+
"text_on_edge_cuts": "error",
146
146
+
"text_thickness": "warning",
147
147
+
"through_hole_pad_without_hole": "error",
148
148
+
"too_many_vias": "error",
149
149
+
"track_angle": "error",
150
150
+
"track_dangling": "warning",
151
151
+
"track_segment_length": "error",
152
152
+
"track_width": "error",
153
153
+
"tracks_crossing": "error",
154
154
+
"unconnected_items": "error",
155
155
+
"unresolved_variable": "error",
156
156
+
"via_dangling": "warning",
157
157
+
"zones_intersect": "error"
158
158
+
},
159
159
+
"rules": {
160
160
+
"max_error": 0.005,
161
161
+
"min_clearance": 0.0,
162
162
+
"min_connection": 0.0,
163
163
+
"min_copper_edge_clearance": 0.5,
164
164
+
"min_groove_width": 0.0,
165
165
+
"min_hole_clearance": 0.25,
166
166
+
"min_hole_to_hole": 0.25,
167
167
+
"min_microvia_diameter": 0.2,
168
168
+
"min_microvia_drill": 0.1,
169
169
+
"min_resolved_spokes": 2,
170
170
+
"min_silk_clearance": 0.0,
171
171
+
"min_text_height": 0.8,
172
172
+
"min_text_thickness": 0.08,
173
173
+
"min_through_hole_diameter": 0.3,
174
174
+
"min_track_width": 0.0,
175
175
+
"min_via_annular_width": 0.1,
176
176
+
"min_via_diameter": 0.5,
177
177
+
"solder_mask_to_copper_clearance": 0.0,
178
178
+
"use_height_for_length_calcs": true
179
179
+
},
180
180
+
"teardrop_options": [
181
181
+
{
182
182
+
"td_onpthpad": true,
183
183
+
"td_onroundshapesonly": false,
184
184
+
"td_onsmdpad": true,
185
185
+
"td_ontrackend": false,
186
186
+
"td_onvia": true
187
187
+
}
188
188
+
],
189
189
+
"teardrop_parameters": [
190
190
+
{
191
191
+
"td_allow_use_two_tracks": true,
192
192
+
"td_curve_segcount": 0,
193
193
+
"td_height_ratio": 1.0,
194
194
+
"td_length_ratio": 0.5,
195
195
+
"td_maxheight": 2.0,
196
196
+
"td_maxlen": 1.0,
197
197
+
"td_on_pad_in_zone": false,
198
198
+
"td_target_name": "td_round_shape",
199
199
+
"td_width_to_size_filter_ratio": 0.9
200
200
+
},
201
201
+
{
202
202
+
"td_allow_use_two_tracks": true,
203
203
+
"td_curve_segcount": 0,
204
204
+
"td_height_ratio": 1.0,
205
205
+
"td_length_ratio": 0.5,
206
206
+
"td_maxheight": 2.0,
207
207
+
"td_maxlen": 1.0,
208
208
+
"td_on_pad_in_zone": false,
209
209
+
"td_target_name": "td_rect_shape",
210
210
+
"td_width_to_size_filter_ratio": 0.9
211
211
+
},
212
212
+
{
213
213
+
"td_allow_use_two_tracks": true,
214
214
+
"td_curve_segcount": 0,
215
215
+
"td_height_ratio": 1.0,
216
216
+
"td_length_ratio": 0.5,
217
217
+
"td_maxheight": 2.0,
218
218
+
"td_maxlen": 1.0,
219
219
+
"td_on_pad_in_zone": false,
220
220
+
"td_target_name": "td_track_end",
221
221
+
"td_width_to_size_filter_ratio": 0.9
222
222
+
}
223
223
+
],
224
224
+
"track_widths": [],
225
225
+
"tuning_pattern_settings": {
226
226
+
"diff_pair_defaults": {
227
227
+
"corner_radius_percentage": 80,
228
228
+
"corner_style": 1,
229
229
+
"max_amplitude": 1.0,
230
230
+
"min_amplitude": 0.2,
231
231
+
"single_sided": false,
232
232
+
"spacing": 1.0
233
233
+
},
234
234
+
"diff_pair_skew_defaults": {
235
235
+
"corner_radius_percentage": 80,
236
236
+
"corner_style": 1,
237
237
+
"max_amplitude": 1.0,
238
238
+
"min_amplitude": 0.2,
239
239
+
"single_sided": false,
240
240
+
"spacing": 0.6
241
241
+
},
242
242
+
"single_track_defaults": {
243
243
+
"corner_radius_percentage": 80,
244
244
+
"corner_style": 1,
245
245
+
"max_amplitude": 1.0,
246
246
+
"min_amplitude": 0.2,
247
247
+
"single_sided": false,
248
248
+
"spacing": 0.6
249
249
+
}
250
250
+
},
251
251
+
"via_dimensions": [],
252
252
+
"zones_allow_external_fillets": false
253
253
+
},
254
254
+
"ipc2581": {
255
255
+
"dist": "",
256
256
+
"distpn": "",
257
257
+
"internal_id": "",
258
258
+
"mfg": "",
259
259
+
"mpn": ""
260
260
+
},
261
261
+
"layer_pairs": [],
262
262
+
"layer_presets": [],
263
263
+
"viewports": []
264
264
+
},
265
265
+
"boards": [],
266
266
+
"cvpcb": {
267
267
+
"equivalence_files": []
268
268
+
},
269
269
+
"erc": {
270
270
+
"erc_exclusions": [
271
271
+
[
272
272
+
"multiple_net_names|457200|1244600|ab65b72a-7a6b-4a82-ab46-029dfc1f2c3f|3320f8f6-5a21-4d36-b3d3-99ca50a7abd6|/1c3bd3d2-7727-450d-8523-9ee70b8d5813|/1c3bd3d2-7727-450d-8523-9ee70b8d5813|/1c3bd3d2-7727-450d-8523-9ee70b8d5813",
273
273
+
""
274
274
+
]
275
275
+
],
276
276
+
"meta": {
277
277
+
"version": 0
278
278
+
},
279
279
+
"pin_map": [
280
280
+
[
281
281
+
0,
282
282
+
0,
283
283
+
0,
284
284
+
0,
285
285
+
0,
286
286
+
0,
287
287
+
1,
288
288
+
0,
289
289
+
0,
290
290
+
0,
291
291
+
0,
292
292
+
2
293
293
+
],
294
294
+
[
295
295
+
0,
296
296
+
2,
297
297
+
0,
298
298
+
1,
299
299
+
0,
300
300
+
0,
301
301
+
1,
302
302
+
0,
303
303
+
2,
304
304
+
2,
305
305
+
2,
306
306
+
2
307
307
+
],
308
308
+
[
309
309
+
0,
310
310
+
0,
311
311
+
0,
312
312
+
0,
313
313
+
0,
314
314
+
0,
315
315
+
1,
316
316
+
0,
317
317
+
1,
318
318
+
0,
319
319
+
1,
320
320
+
2
321
321
+
],
322
322
+
[
323
323
+
0,
324
324
+
1,
325
325
+
0,
326
326
+
0,
327
327
+
0,
328
328
+
0,
329
329
+
1,
330
330
+
1,
331
331
+
2,
332
332
+
1,
333
333
+
1,
334
334
+
2
335
335
+
],
336
336
+
[
337
337
+
0,
338
338
+
0,
339
339
+
0,
340
340
+
0,
341
341
+
0,
342
342
+
0,
343
343
+
1,
344
344
+
0,
345
345
+
0,
346
346
+
0,
347
347
+
0,
348
348
+
2
349
349
+
],
350
350
+
[
351
351
+
0,
352
352
+
0,
353
353
+
0,
354
354
+
0,
355
355
+
0,
356
356
+
0,
357
357
+
0,
358
358
+
0,
359
359
+
0,
360
360
+
0,
361
361
+
0,
362
362
+
2
363
363
+
],
364
364
+
[
365
365
+
1,
366
366
+
1,
367
367
+
1,
368
368
+
1,
369
369
+
1,
370
370
+
0,
371
371
+
1,
372
372
+
1,
373
373
+
1,
374
374
+
1,
375
375
+
1,
376
376
+
2
377
377
+
],
378
378
+
[
379
379
+
0,
380
380
+
0,
381
381
+
0,
382
382
+
1,
383
383
+
0,
384
384
+
0,
385
385
+
1,
386
386
+
0,
387
387
+
0,
388
388
+
0,
389
389
+
0,
390
390
+
2
391
391
+
],
392
392
+
[
393
393
+
0,
394
394
+
2,
395
395
+
1,
396
396
+
2,
397
397
+
0,
398
398
+
0,
399
399
+
1,
400
400
+
0,
401
401
+
2,
402
402
+
2,
403
403
+
2,
404
404
+
2
405
405
+
],
406
406
+
[
407
407
+
0,
408
408
+
2,
409
409
+
0,
410
410
+
1,
411
411
+
0,
412
412
+
0,
413
413
+
1,
414
414
+
0,
415
415
+
2,
416
416
+
0,
417
417
+
0,
418
418
+
2
419
419
+
],
420
420
+
[
421
421
+
0,
422
422
+
2,
423
423
+
1,
424
424
+
1,
425
425
+
0,
426
426
+
0,
427
427
+
1,
428
428
+
0,
429
429
+
2,
430
430
+
0,
431
431
+
0,
432
432
+
2
433
433
+
],
434
434
+
[
435
435
+
2,
436
436
+
2,
437
437
+
2,
438
438
+
2,
439
439
+
2,
440
440
+
2,
441
441
+
2,
442
442
+
2,
443
443
+
2,
444
444
+
2,
445
445
+
2,
446
446
+
2
447
447
+
]
448
448
+
],
449
449
+
"rule_severities": {
450
450
+
"bus_definition_conflict": "error",
451
451
+
"bus_entry_needed": "error",
452
452
+
"bus_to_bus_conflict": "error",
453
453
+
"bus_to_net_conflict": "error",
454
454
+
"different_unit_footprint": "error",
455
455
+
"different_unit_net": "error",
456
456
+
"duplicate_reference": "error",
457
457
+
"duplicate_sheet_names": "error",
458
458
+
"endpoint_off_grid": "warning",
459
459
+
"extra_units": "error",
460
460
+
"footprint_filter": "ignore",
461
461
+
"footprint_link_issues": "warning",
462
462
+
"four_way_junction": "ignore",
463
463
+
"global_label_dangling": "warning",
464
464
+
"hier_label_mismatch": "error",
465
465
+
"label_dangling": "error",
466
466
+
"label_multiple_wires": "warning",
467
467
+
"lib_symbol_issues": "warning",
468
468
+
"lib_symbol_mismatch": "warning",
469
469
+
"missing_bidi_pin": "warning",
470
470
+
"missing_input_pin": "warning",
471
471
+
"missing_power_pin": "error",
472
472
+
"missing_unit": "warning",
473
473
+
"multiple_net_names": "warning",
474
474
+
"net_not_bus_member": "warning",
475
475
+
"no_connect_connected": "warning",
476
476
+
"no_connect_dangling": "warning",
477
477
+
"pin_not_connected": "error",
478
478
+
"pin_not_driven": "error",
479
479
+
"pin_to_pin": "warning",
480
480
+
"power_pin_not_driven": "error",
481
481
+
"same_local_global_label": "warning",
482
482
+
"similar_label_and_power": "warning",
483
483
+
"similar_labels": "warning",
484
484
+
"similar_power": "warning",
485
485
+
"simulation_model_issue": "ignore",
486
486
+
"single_global_label": "ignore",
487
487
+
"unannotated": "error",
488
488
+
"unconnected_wire_endpoint": "warning",
489
489
+
"undefined_netclass": "error",
490
490
+
"unit_value_mismatch": "error",
491
491
+
"unresolved_variable": "error",
492
492
+
"wire_dangling": "error"
493
493
+
}
494
494
+
},
495
495
+
"libraries": {
496
496
+
"pinned_footprint_libs": [],
497
497
+
"pinned_symbol_libs": []
498
498
+
},
499
499
+
"meta": {
500
500
+
"filename": "strike-sensor.kicad_pro",
501
501
+
"version": 3
502
502
+
},
503
503
+
"net_settings": {
504
504
+
"classes": [
505
505
+
{
506
506
+
"bus_width": 12,
507
507
+
"clearance": 0.2,
508
508
+
"diff_pair_gap": 0.25,
509
509
+
"diff_pair_via_gap": 0.25,
510
510
+
"diff_pair_width": 0.2,
511
511
+
"line_style": 0,
512
512
+
"microvia_diameter": 0.3,
513
513
+
"microvia_drill": 0.1,
514
514
+
"name": "Default",
515
515
+
"pcb_color": "rgba(0, 0, 0, 0.000)",
516
516
+
"priority": 2147483647,
517
517
+
"schematic_color": "rgba(0, 0, 0, 0.000)",
518
518
+
"track_width": 0.2,
519
519
+
"via_diameter": 0.6,
520
520
+
"via_drill": 0.3,
521
521
+
"wire_width": 6
522
522
+
}
523
523
+
],
524
524
+
"meta": {
525
525
+
"version": 4
526
526
+
},
527
527
+
"net_colors": null,
528
528
+
"netclass_assignments": null,
529
529
+
"netclass_patterns": [
530
530
+
{
531
531
+
"netclass": "Default",
532
532
+
"pattern": "VIN"
533
533
+
},
534
534
+
{
535
535
+
"netclass": "Default",
536
536
+
"pattern": "OUT"
537
537
+
}
538
538
+
]
539
539
+
},
540
540
+
"pcbnew": {
541
541
+
"last_paths": {
542
542
+
"gencad": "",
543
543
+
"idf": "",
544
544
+
"netlist": "",
545
545
+
"plot": "",
546
546
+
"pos_files": "",
547
547
+
"specctra_dsn": "",
548
548
+
"step": "",
549
549
+
"svg": "",
550
550
+
"vrml": ""
551
551
+
},
552
552
+
"page_layout_descr_file": ""
553
553
+
},
554
554
+
"schematic": {
555
555
+
"annotate_start_num": 0,
556
556
+
"bom_export_filename": "${PROJECTNAME}.csv",
557
557
+
"bom_fmt_presets": [],
558
558
+
"bom_fmt_settings": {
559
559
+
"field_delimiter": ",",
560
560
+
"keep_line_breaks": false,
561
561
+
"keep_tabs": false,
562
562
+
"name": "CSV",
563
563
+
"ref_delimiter": ",",
564
564
+
"ref_range_delimiter": "",
565
565
+
"string_delimiter": "\""
566
566
+
},
567
567
+
"bom_presets": [],
568
568
+
"bom_settings": {
569
569
+
"exclude_dnp": false,
570
570
+
"fields_ordered": [
571
571
+
{
572
572
+
"group_by": false,
573
573
+
"label": "Reference",
574
574
+
"name": "Reference",
575
575
+
"show": true
576
576
+
},
577
577
+
{
578
578
+
"group_by": false,
579
579
+
"label": "Qty",
580
580
+
"name": "${QUANTITY}",
581
581
+
"show": true
582
582
+
},
583
583
+
{
584
584
+
"group_by": true,
585
585
+
"label": "Value",
586
586
+
"name": "Value",
587
587
+
"show": true
588
588
+
},
589
589
+
{
590
590
+
"group_by": true,
591
591
+
"label": "DNP",
592
592
+
"name": "${DNP}",
593
593
+
"show": true
594
594
+
},
595
595
+
{
596
596
+
"group_by": true,
597
597
+
"label": "Exclude from BOM",
598
598
+
"name": "${EXCLUDE_FROM_BOM}",
599
599
+
"show": true
600
600
+
},
601
601
+
{
602
602
+
"group_by": true,
603
603
+
"label": "Exclude from Board",
604
604
+
"name": "${EXCLUDE_FROM_BOARD}",
605
605
+
"show": true
606
606
+
},
607
607
+
{
608
608
+
"group_by": true,
609
609
+
"label": "Footprint",
610
610
+
"name": "Footprint",
611
611
+
"show": true
612
612
+
},
613
613
+
{
614
614
+
"group_by": false,
615
615
+
"label": "Datasheet",
616
616
+
"name": "Datasheet",
617
617
+
"show": true
618
618
+
}
619
619
+
],
620
620
+
"filter_string": "",
621
621
+
"group_symbols": true,
622
622
+
"include_excluded_from_bom": true,
623
623
+
"name": "Default Editing",
624
624
+
"sort_asc": true,
625
625
+
"sort_field": "Reference"
626
626
+
},
627
627
+
"connection_grid_size": 50.0,
628
628
+
"drawing": {
629
629
+
"dashed_lines_dash_length_ratio": 12.0,
630
630
+
"dashed_lines_gap_length_ratio": 3.0,
631
631
+
"default_line_thickness": 6.0,
632
632
+
"default_text_size": 50.0,
633
633
+
"field_names": [],
634
634
+
"intersheets_ref_own_page": false,
635
635
+
"intersheets_ref_prefix": "",
636
636
+
"intersheets_ref_short": false,
637
637
+
"intersheets_ref_show": false,
638
638
+
"intersheets_ref_suffix": "",
639
639
+
"junction_size_choice": 3,
640
640
+
"label_size_ratio": 0.375,
641
641
+
"operating_point_overlay_i_precision": 3,
642
642
+
"operating_point_overlay_i_range": "~A",
643
643
+
"operating_point_overlay_v_precision": 3,
644
644
+
"operating_point_overlay_v_range": "~V",
645
645
+
"overbar_offset_ratio": 1.23,
646
646
+
"pin_symbol_size": 25.0,
647
647
+
"text_offset_ratio": 0.15
648
648
+
},
649
649
+
"legacy_lib_dir": "",
650
650
+
"legacy_lib_list": [],
651
651
+
"meta": {
652
652
+
"version": 1
653
653
+
},
654
654
+
"net_format_name": "",
655
655
+
"ngspice": {
656
656
+
"fix_include_paths": true,
657
657
+
"meta": {
658
658
+
"version": 0
659
659
+
},
660
660
+
"model_mode": 4,
661
661
+
"workbook_filename": ""
662
662
+
},
663
663
+
"page_layout_descr_file": "",
664
664
+
"plot_directory": "./",
665
665
+
"space_save_all_events": true,
666
666
+
"spice_current_sheet_as_root": false,
667
667
+
"spice_external_command": "spice \"%I\"",
668
668
+
"spice_model_current_sheet_as_root": true,
669
669
+
"spice_save_all_currents": false,
670
670
+
"spice_save_all_dissipations": false,
671
671
+
"spice_save_all_voltages": false,
672
672
+
"subpart_first_id": 65,
673
673
+
"subpart_id_separator": 0
674
674
+
},
675
675
+
"sheets": [
676
676
+
[
677
677
+
"1c3bd3d2-7727-450d-8523-9ee70b8d5813",
678
678
+
"Root"
679
679
+
]
680
680
+
],
681
681
+
"text_variables": {}
682
682
+
}
+4052
kicad/strike-sensor.kicad_sch
···
1
1
+
(kicad_sch
2
2
+
(version 20250114)
3
3
+
(generator "eeschema")
4
4
+
(generator_version "9.0")
5
5
+
(uuid "1c3bd3d2-7727-450d-8523-9ee70b8d5813")
6
6
+
(paper "A4")
7
7
+
(title_block
8
8
+
(title "Strike Sensor")
9
9
+
(date "2026-01-17")
10
10
+
(rev "v1.0.0")
11
11
+
(comment 1 "Sachy.dev")
12
12
+
)
13
13
+
(lib_symbols
14
14
+
(symbol "Connector:Conn_01x03_Socket"
15
15
+
(pin_names
16
16
+
(offset 1.016)
17
17
+
(hide yes)
18
18
+
)
19
19
+
(exclude_from_sim no)
20
20
+
(in_bom yes)
21
21
+
(on_board yes)
22
22
+
(property "Reference" "J"
23
23
+
(at 0 5.08 0)
24
24
+
(effects
25
25
+
(font
26
26
+
(size 1.27 1.27)
27
27
+
)
28
28
+
)
29
29
+
)
30
30
+
(property "Value" "Conn_01x03_Socket"
31
31
+
(at 0 -5.08 0)
32
32
+
(effects
33
33
+
(font
34
34
+
(size 1.27 1.27)
35
35
+
)
36
36
+
)
37
37
+
)
38
38
+
(property "Footprint" ""
39
39
+
(at 0 0 0)
40
40
+
(effects
41
41
+
(font
42
42
+
(size 1.27 1.27)
43
43
+
)
44
44
+
(hide yes)
45
45
+
)
46
46
+
)
47
47
+
(property "Datasheet" "~"
48
48
+
(at 0 0 0)
49
49
+
(effects
50
50
+
(font
51
51
+
(size 1.27 1.27)
52
52
+
)
53
53
+
(hide yes)
54
54
+
)
55
55
+
)
56
56
+
(property "Description" "Generic connector, single row, 01x03, script generated"
57
57
+
(at 0 0 0)
58
58
+
(effects
59
59
+
(font
60
60
+
(size 1.27 1.27)
61
61
+
)
62
62
+
(hide yes)
63
63
+
)
64
64
+
)
65
65
+
(property "ki_locked" ""
66
66
+
(at 0 0 0)
67
67
+
(effects
68
68
+
(font
69
69
+
(size 1.27 1.27)
70
70
+
)
71
71
+
)
72
72
+
)
73
73
+
(property "ki_keywords" "connector"
74
74
+
(at 0 0 0)
75
75
+
(effects
76
76
+
(font
77
77
+
(size 1.27 1.27)
78
78
+
)
79
79
+
(hide yes)
80
80
+
)
81
81
+
)
82
82
+
(property "ki_fp_filters" "Connector*:*_1x??_*"
83
83
+
(at 0 0 0)
84
84
+
(effects
85
85
+
(font
86
86
+
(size 1.27 1.27)
87
87
+
)
88
88
+
(hide yes)
89
89
+
)
90
90
+
)
91
91
+
(symbol "Conn_01x03_Socket_1_1"
92
92
+
(polyline
93
93
+
(pts
94
94
+
(xy -1.27 2.54) (xy -0.508 2.54)
95
95
+
)
96
96
+
(stroke
97
97
+
(width 0.1524)
98
98
+
(type default)
99
99
+
)
100
100
+
(fill
101
101
+
(type none)
102
102
+
)
103
103
+
)
104
104
+
(polyline
105
105
+
(pts
106
106
+
(xy -1.27 0) (xy -0.508 0)
107
107
+
)
108
108
+
(stroke
109
109
+
(width 0.1524)
110
110
+
(type default)
111
111
+
)
112
112
+
(fill
113
113
+
(type none)
114
114
+
)
115
115
+
)
116
116
+
(polyline
117
117
+
(pts
118
118
+
(xy -1.27 -2.54) (xy -0.508 -2.54)
119
119
+
)
120
120
+
(stroke
121
121
+
(width 0.1524)
122
122
+
(type default)
123
123
+
)
124
124
+
(fill
125
125
+
(type none)
126
126
+
)
127
127
+
)
128
128
+
(arc
129
129
+
(start 0 2.032)
130
130
+
(mid -0.5058 2.54)
131
131
+
(end 0 3.048)
132
132
+
(stroke
133
133
+
(width 0.1524)
134
134
+
(type default)
135
135
+
)
136
136
+
(fill
137
137
+
(type none)
138
138
+
)
139
139
+
)
140
140
+
(arc
141
141
+
(start 0 -0.508)
142
142
+
(mid -0.5058 0)
143
143
+
(end 0 0.508)
144
144
+
(stroke
145
145
+
(width 0.1524)
146
146
+
(type default)
147
147
+
)
148
148
+
(fill
149
149
+
(type none)
150
150
+
)
151
151
+
)
152
152
+
(arc
153
153
+
(start 0 -3.048)
154
154
+
(mid -0.5058 -2.54)
155
155
+
(end 0 -2.032)
156
156
+
(stroke
157
157
+
(width 0.1524)
158
158
+
(type default)
159
159
+
)
160
160
+
(fill
161
161
+
(type none)
162
162
+
)
163
163
+
)
164
164
+
(pin passive line
165
165
+
(at -5.08 2.54 0)
166
166
+
(length 3.81)
167
167
+
(name "Pin_1"
168
168
+
(effects
169
169
+
(font
170
170
+
(size 1.27 1.27)
171
171
+
)
172
172
+
)
173
173
+
)
174
174
+
(number "1"
175
175
+
(effects
176
176
+
(font
177
177
+
(size 1.27 1.27)
178
178
+
)
179
179
+
)
180
180
+
)
181
181
+
)
182
182
+
(pin passive line
183
183
+
(at -5.08 0 0)
184
184
+
(length 3.81)
185
185
+
(name "Pin_2"
186
186
+
(effects
187
187
+
(font
188
188
+
(size 1.27 1.27)
189
189
+
)
190
190
+
)
191
191
+
)
192
192
+
(number "2"
193
193
+
(effects
194
194
+
(font
195
195
+
(size 1.27 1.27)
196
196
+
)
197
197
+
)
198
198
+
)
199
199
+
)
200
200
+
(pin passive line
201
201
+
(at -5.08 -2.54 0)
202
202
+
(length 3.81)
203
203
+
(name "Pin_3"
204
204
+
(effects
205
205
+
(font
206
206
+
(size 1.27 1.27)
207
207
+
)
208
208
+
)
209
209
+
)
210
210
+
(number "3"
211
211
+
(effects
212
212
+
(font
213
213
+
(size 1.27 1.27)
214
214
+
)
215
215
+
)
216
216
+
)
217
217
+
)
218
218
+
)
219
219
+
(embedded_fonts no)
220
220
+
)
221
221
+
(symbol "Connector:Screw_Terminal_01x02"
222
222
+
(pin_names
223
223
+
(offset 1.016)
224
224
+
(hide yes)
225
225
+
)
226
226
+
(exclude_from_sim no)
227
227
+
(in_bom yes)
228
228
+
(on_board yes)
229
229
+
(property "Reference" "J"
230
230
+
(at 0 2.54 0)
231
231
+
(effects
232
232
+
(font
233
233
+
(size 1.27 1.27)
234
234
+
)
235
235
+
)
236
236
+
)
237
237
+
(property "Value" "Screw_Terminal_01x02"
238
238
+
(at 0 -5.08 0)
239
239
+
(effects
240
240
+
(font
241
241
+
(size 1.27 1.27)
242
242
+
)
243
243
+
)
244
244
+
)
245
245
+
(property "Footprint" ""
246
246
+
(at 0 0 0)
247
247
+
(effects
248
248
+
(font
249
249
+
(size 1.27 1.27)
250
250
+
)
251
251
+
(hide yes)
252
252
+
)
253
253
+
)
254
254
+
(property "Datasheet" "~"
255
255
+
(at 0 0 0)
256
256
+
(effects
257
257
+
(font
258
258
+
(size 1.27 1.27)
259
259
+
)
260
260
+
(hide yes)
261
261
+
)
262
262
+
)
263
263
+
(property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"
264
264
+
(at 0 0 0)
265
265
+
(effects
266
266
+
(font
267
267
+
(size 1.27 1.27)
268
268
+
)
269
269
+
(hide yes)
270
270
+
)
271
271
+
)
272
272
+
(property "ki_keywords" "screw terminal"
273
273
+
(at 0 0 0)
274
274
+
(effects
275
275
+
(font
276
276
+
(size 1.27 1.27)
277
277
+
)
278
278
+
(hide yes)
279
279
+
)
280
280
+
)
281
281
+
(property "ki_fp_filters" "TerminalBlock*:*"
282
282
+
(at 0 0 0)
283
283
+
(effects
284
284
+
(font
285
285
+
(size 1.27 1.27)
286
286
+
)
287
287
+
(hide yes)
288
288
+
)
289
289
+
)
290
290
+
(symbol "Screw_Terminal_01x02_1_1"
291
291
+
(rectangle
292
292
+
(start -1.27 1.27)
293
293
+
(end 1.27 -3.81)
294
294
+
(stroke
295
295
+
(width 0.254)
296
296
+
(type default)
297
297
+
)
298
298
+
(fill
299
299
+
(type background)
300
300
+
)
301
301
+
)
302
302
+
(polyline
303
303
+
(pts
304
304
+
(xy -0.5334 0.3302) (xy 0.3302 -0.508)
305
305
+
)
306
306
+
(stroke
307
307
+
(width 0.1524)
308
308
+
(type default)
309
309
+
)
310
310
+
(fill
311
311
+
(type none)
312
312
+
)
313
313
+
)
314
314
+
(polyline
315
315
+
(pts
316
316
+
(xy -0.5334 -2.2098) (xy 0.3302 -3.048)
317
317
+
)
318
318
+
(stroke
319
319
+
(width 0.1524)
320
320
+
(type default)
321
321
+
)
322
322
+
(fill
323
323
+
(type none)
324
324
+
)
325
325
+
)
326
326
+
(polyline
327
327
+
(pts
328
328
+
(xy -0.3556 0.508) (xy 0.508 -0.3302)
329
329
+
)
330
330
+
(stroke
331
331
+
(width 0.1524)
332
332
+
(type default)
333
333
+
)
334
334
+
(fill
335
335
+
(type none)
336
336
+
)
337
337
+
)
338
338
+
(polyline
339
339
+
(pts
340
340
+
(xy -0.3556 -2.032) (xy 0.508 -2.8702)
341
341
+
)
342
342
+
(stroke
343
343
+
(width 0.1524)
344
344
+
(type default)
345
345
+
)
346
346
+
(fill
347
347
+
(type none)
348
348
+
)
349
349
+
)
350
350
+
(circle
351
351
+
(center 0 0)
352
352
+
(radius 0.635)
353
353
+
(stroke
354
354
+
(width 0.1524)
355
355
+
(type default)
356
356
+
)
357
357
+
(fill
358
358
+
(type none)
359
359
+
)
360
360
+
)
361
361
+
(circle
362
362
+
(center 0 -2.54)
363
363
+
(radius 0.635)
364
364
+
(stroke
365
365
+
(width 0.1524)
366
366
+
(type default)
367
367
+
)
368
368
+
(fill
369
369
+
(type none)
370
370
+
)
371
371
+
)
372
372
+
(pin passive line
373
373
+
(at -5.08 0 0)
374
374
+
(length 3.81)
375
375
+
(name "Pin_1"
376
376
+
(effects
377
377
+
(font
378
378
+
(size 1.27 1.27)
379
379
+
)
380
380
+
)
381
381
+
)
382
382
+
(number "1"
383
383
+
(effects
384
384
+
(font
385
385
+
(size 1.27 1.27)
386
386
+
)
387
387
+
)
388
388
+
)
389
389
+
)
390
390
+
(pin passive line
391
391
+
(at -5.08 -2.54 0)
392
392
+
(length 3.81)
393
393
+
(name "Pin_2"
394
394
+
(effects
395
395
+
(font
396
396
+
(size 1.27 1.27)
397
397
+
)
398
398
+
)
399
399
+
)
400
400
+
(number "2"
401
401
+
(effects
402
402
+
(font
403
403
+
(size 1.27 1.27)
404
404
+
)
405
405
+
)
406
406
+
)
407
407
+
)
408
408
+
)
409
409
+
(embedded_fonts no)
410
410
+
)
411
411
+
(symbol "Device:C"
412
412
+
(pin_numbers
413
413
+
(hide yes)
414
414
+
)
415
415
+
(pin_names
416
416
+
(offset 0.254)
417
417
+
)
418
418
+
(exclude_from_sim no)
419
419
+
(in_bom yes)
420
420
+
(on_board yes)
421
421
+
(property "Reference" "C"
422
422
+
(at 0.635 2.54 0)
423
423
+
(effects
424
424
+
(font
425
425
+
(size 1.27 1.27)
426
426
+
)
427
427
+
(justify left)
428
428
+
)
429
429
+
)
430
430
+
(property "Value" "C"
431
431
+
(at 0.635 -2.54 0)
432
432
+
(effects
433
433
+
(font
434
434
+
(size 1.27 1.27)
435
435
+
)
436
436
+
(justify left)
437
437
+
)
438
438
+
)
439
439
+
(property "Footprint" ""
440
440
+
(at 0.9652 -3.81 0)
441
441
+
(effects
442
442
+
(font
443
443
+
(size 1.27 1.27)
444
444
+
)
445
445
+
(hide yes)
446
446
+
)
447
447
+
)
448
448
+
(property "Datasheet" "~"
449
449
+
(at 0 0 0)
450
450
+
(effects
451
451
+
(font
452
452
+
(size 1.27 1.27)
453
453
+
)
454
454
+
(hide yes)
455
455
+
)
456
456
+
)
457
457
+
(property "Description" "Unpolarized capacitor"
458
458
+
(at 0 0 0)
459
459
+
(effects
460
460
+
(font
461
461
+
(size 1.27 1.27)
462
462
+
)
463
463
+
(hide yes)
464
464
+
)
465
465
+
)
466
466
+
(property "ki_keywords" "cap capacitor"
467
467
+
(at 0 0 0)
468
468
+
(effects
469
469
+
(font
470
470
+
(size 1.27 1.27)
471
471
+
)
472
472
+
(hide yes)
473
473
+
)
474
474
+
)
475
475
+
(property "ki_fp_filters" "C_*"
476
476
+
(at 0 0 0)
477
477
+
(effects
478
478
+
(font
479
479
+
(size 1.27 1.27)
480
480
+
)
481
481
+
(hide yes)
482
482
+
)
483
483
+
)
484
484
+
(symbol "C_0_1"
485
485
+
(polyline
486
486
+
(pts
487
487
+
(xy -2.032 0.762) (xy 2.032 0.762)
488
488
+
)
489
489
+
(stroke
490
490
+
(width 0.508)
491
491
+
(type default)
492
492
+
)
493
493
+
(fill
494
494
+
(type none)
495
495
+
)
496
496
+
)
497
497
+
(polyline
498
498
+
(pts
499
499
+
(xy -2.032 -0.762) (xy 2.032 -0.762)
500
500
+
)
501
501
+
(stroke
502
502
+
(width 0.508)
503
503
+
(type default)
504
504
+
)
505
505
+
(fill
506
506
+
(type none)
507
507
+
)
508
508
+
)
509
509
+
)
510
510
+
(symbol "C_1_1"
511
511
+
(pin passive line
512
512
+
(at 0 3.81 270)
513
513
+
(length 2.794)
514
514
+
(name "~"
515
515
+
(effects
516
516
+
(font
517
517
+
(size 1.27 1.27)
518
518
+
)
519
519
+
)
520
520
+
)
521
521
+
(number "1"
522
522
+
(effects
523
523
+
(font
524
524
+
(size 1.27 1.27)
525
525
+
)
526
526
+
)
527
527
+
)
528
528
+
)
529
529
+
(pin passive line
530
530
+
(at 0 -3.81 90)
531
531
+
(length 2.794)
532
532
+
(name "~"
533
533
+
(effects
534
534
+
(font
535
535
+
(size 1.27 1.27)
536
536
+
)
537
537
+
)
538
538
+
)
539
539
+
(number "2"
540
540
+
(effects
541
541
+
(font
542
542
+
(size 1.27 1.27)
543
543
+
)
544
544
+
)
545
545
+
)
546
546
+
)
547
547
+
)
548
548
+
(embedded_fonts no)
549
549
+
)
550
550
+
(symbol "Device:C_Polarized"
551
551
+
(pin_numbers
552
552
+
(hide yes)
553
553
+
)
554
554
+
(pin_names
555
555
+
(offset 0.254)
556
556
+
)
557
557
+
(exclude_from_sim no)
558
558
+
(in_bom yes)
559
559
+
(on_board yes)
560
560
+
(property "Reference" "C"
561
561
+
(at 0.635 2.54 0)
562
562
+
(effects
563
563
+
(font
564
564
+
(size 1.27 1.27)
565
565
+
)
566
566
+
(justify left)
567
567
+
)
568
568
+
)
569
569
+
(property "Value" "C_Polarized"
570
570
+
(at 0.635 -2.54 0)
571
571
+
(effects
572
572
+
(font
573
573
+
(size 1.27 1.27)
574
574
+
)
575
575
+
(justify left)
576
576
+
)
577
577
+
)
578
578
+
(property "Footprint" ""
579
579
+
(at 0.9652 -3.81 0)
580
580
+
(effects
581
581
+
(font
582
582
+
(size 1.27 1.27)
583
583
+
)
584
584
+
(hide yes)
585
585
+
)
586
586
+
)
587
587
+
(property "Datasheet" "~"
588
588
+
(at 0 0 0)
589
589
+
(effects
590
590
+
(font
591
591
+
(size 1.27 1.27)
592
592
+
)
593
593
+
(hide yes)
594
594
+
)
595
595
+
)
596
596
+
(property "Description" "Polarized capacitor"
597
597
+
(at 0 0 0)
598
598
+
(effects
599
599
+
(font
600
600
+
(size 1.27 1.27)
601
601
+
)
602
602
+
(hide yes)
603
603
+
)
604
604
+
)
605
605
+
(property "ki_keywords" "cap capacitor"
606
606
+
(at 0 0 0)
607
607
+
(effects
608
608
+
(font
609
609
+
(size 1.27 1.27)
610
610
+
)
611
611
+
(hide yes)
612
612
+
)
613
613
+
)
614
614
+
(property "ki_fp_filters" "CP_*"
615
615
+
(at 0 0 0)
616
616
+
(effects
617
617
+
(font
618
618
+
(size 1.27 1.27)
619
619
+
)
620
620
+
(hide yes)
621
621
+
)
622
622
+
)
623
623
+
(symbol "C_Polarized_0_1"
624
624
+
(rectangle
625
625
+
(start -2.286 0.508)
626
626
+
(end 2.286 1.016)
627
627
+
(stroke
628
628
+
(width 0)
629
629
+
(type default)
630
630
+
)
631
631
+
(fill
632
632
+
(type none)
633
633
+
)
634
634
+
)
635
635
+
(polyline
636
636
+
(pts
637
637
+
(xy -1.778 2.286) (xy -0.762 2.286)
638
638
+
)
639
639
+
(stroke
640
640
+
(width 0)
641
641
+
(type default)
642
642
+
)
643
643
+
(fill
644
644
+
(type none)
645
645
+
)
646
646
+
)
647
647
+
(polyline
648
648
+
(pts
649
649
+
(xy -1.27 2.794) (xy -1.27 1.778)
650
650
+
)
651
651
+
(stroke
652
652
+
(width 0)
653
653
+
(type default)
654
654
+
)
655
655
+
(fill
656
656
+
(type none)
657
657
+
)
658
658
+
)
659
659
+
(rectangle
660
660
+
(start 2.286 -0.508)
661
661
+
(end -2.286 -1.016)
662
662
+
(stroke
663
663
+
(width 0)
664
664
+
(type default)
665
665
+
)
666
666
+
(fill
667
667
+
(type outline)
668
668
+
)
669
669
+
)
670
670
+
)
671
671
+
(symbol "C_Polarized_1_1"
672
672
+
(pin passive line
673
673
+
(at 0 3.81 270)
674
674
+
(length 2.794)
675
675
+
(name "~"
676
676
+
(effects
677
677
+
(font
678
678
+
(size 1.27 1.27)
679
679
+
)
680
680
+
)
681
681
+
)
682
682
+
(number "1"
683
683
+
(effects
684
684
+
(font
685
685
+
(size 1.27 1.27)
686
686
+
)
687
687
+
)
688
688
+
)
689
689
+
)
690
690
+
(pin passive line
691
691
+
(at 0 -3.81 90)
692
692
+
(length 2.794)
693
693
+
(name "~"
694
694
+
(effects
695
695
+
(font
696
696
+
(size 1.27 1.27)
697
697
+
)
698
698
+
)
699
699
+
)
700
700
+
(number "2"
701
701
+
(effects
702
702
+
(font
703
703
+
(size 1.27 1.27)
704
704
+
)
705
705
+
)
706
706
+
)
707
707
+
)
708
708
+
)
709
709
+
(embedded_fonts no)
710
710
+
)
711
711
+
(symbol "Device:L"
712
712
+
(pin_numbers
713
713
+
(hide yes)
714
714
+
)
715
715
+
(pin_names
716
716
+
(offset 1.016)
717
717
+
(hide yes)
718
718
+
)
719
719
+
(exclude_from_sim no)
720
720
+
(in_bom yes)
721
721
+
(on_board yes)
722
722
+
(property "Reference" "L"
723
723
+
(at -1.27 0 90)
724
724
+
(effects
725
725
+
(font
726
726
+
(size 1.27 1.27)
727
727
+
)
728
728
+
)
729
729
+
)
730
730
+
(property "Value" "L"
731
731
+
(at 1.905 0 90)
732
732
+
(effects
733
733
+
(font
734
734
+
(size 1.27 1.27)
735
735
+
)
736
736
+
)
737
737
+
)
738
738
+
(property "Footprint" ""
739
739
+
(at 0 0 0)
740
740
+
(effects
741
741
+
(font
742
742
+
(size 1.27 1.27)
743
743
+
)
744
744
+
(hide yes)
745
745
+
)
746
746
+
)
747
747
+
(property "Datasheet" "~"
748
748
+
(at 0 0 0)
749
749
+
(effects
750
750
+
(font
751
751
+
(size 1.27 1.27)
752
752
+
)
753
753
+
(hide yes)
754
754
+
)
755
755
+
)
756
756
+
(property "Description" "Inductor"
757
757
+
(at 0 0 0)
758
758
+
(effects
759
759
+
(font
760
760
+
(size 1.27 1.27)
761
761
+
)
762
762
+
(hide yes)
763
763
+
)
764
764
+
)
765
765
+
(property "ki_keywords" "inductor choke coil reactor magnetic"
766
766
+
(at 0 0 0)
767
767
+
(effects
768
768
+
(font
769
769
+
(size 1.27 1.27)
770
770
+
)
771
771
+
(hide yes)
772
772
+
)
773
773
+
)
774
774
+
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*"
775
775
+
(at 0 0 0)
776
776
+
(effects
777
777
+
(font
778
778
+
(size 1.27 1.27)
779
779
+
)
780
780
+
(hide yes)
781
781
+
)
782
782
+
)
783
783
+
(symbol "L_0_1"
784
784
+
(arc
785
785
+
(start 0 2.54)
786
786
+
(mid 0.6323 1.905)
787
787
+
(end 0 1.27)
788
788
+
(stroke
789
789
+
(width 0)
790
790
+
(type default)
791
791
+
)
792
792
+
(fill
793
793
+
(type none)
794
794
+
)
795
795
+
)
796
796
+
(arc
797
797
+
(start 0 1.27)
798
798
+
(mid 0.6323 0.635)
799
799
+
(end 0 0)
800
800
+
(stroke
801
801
+
(width 0)
802
802
+
(type default)
803
803
+
)
804
804
+
(fill
805
805
+
(type none)
806
806
+
)
807
807
+
)
808
808
+
(arc
809
809
+
(start 0 0)
810
810
+
(mid 0.6323 -0.635)
811
811
+
(end 0 -1.27)
812
812
+
(stroke
813
813
+
(width 0)
814
814
+
(type default)
815
815
+
)
816
816
+
(fill
817
817
+
(type none)
818
818
+
)
819
819
+
)
820
820
+
(arc
821
821
+
(start 0 -1.27)
822
822
+
(mid 0.6323 -1.905)
823
823
+
(end 0 -2.54)
824
824
+
(stroke
825
825
+
(width 0)
826
826
+
(type default)
827
827
+
)
828
828
+
(fill
829
829
+
(type none)
830
830
+
)
831
831
+
)
832
832
+
)
833
833
+
(symbol "L_1_1"
834
834
+
(pin passive line
835
835
+
(at 0 3.81 270)
836
836
+
(length 1.27)
837
837
+
(name "1"
838
838
+
(effects
839
839
+
(font
840
840
+
(size 1.27 1.27)
841
841
+
)
842
842
+
)
843
843
+
)
844
844
+
(number "1"
845
845
+
(effects
846
846
+
(font
847
847
+
(size 1.27 1.27)
848
848
+
)
849
849
+
)
850
850
+
)
851
851
+
)
852
852
+
(pin passive line
853
853
+
(at 0 -3.81 90)
854
854
+
(length 1.27)
855
855
+
(name "2"
856
856
+
(effects
857
857
+
(font
858
858
+
(size 1.27 1.27)
859
859
+
)
860
860
+
)
861
861
+
)
862
862
+
(number "2"
863
863
+
(effects
864
864
+
(font
865
865
+
(size 1.27 1.27)
866
866
+
)
867
867
+
)
868
868
+
)
869
869
+
)
870
870
+
)
871
871
+
(embedded_fonts no)
872
872
+
)
873
873
+
(symbol "Device:R"
874
874
+
(pin_numbers
875
875
+
(hide yes)
876
876
+
)
877
877
+
(pin_names
878
878
+
(offset 0)
879
879
+
)
880
880
+
(exclude_from_sim no)
881
881
+
(in_bom yes)
882
882
+
(on_board yes)
883
883
+
(property "Reference" "R"
884
884
+
(at 2.032 0 90)
885
885
+
(effects
886
886
+
(font
887
887
+
(size 1.27 1.27)
888
888
+
)
889
889
+
)
890
890
+
)
891
891
+
(property "Value" "R"
892
892
+
(at 0 0 90)
893
893
+
(effects
894
894
+
(font
895
895
+
(size 1.27 1.27)
896
896
+
)
897
897
+
)
898
898
+
)
899
899
+
(property "Footprint" ""
900
900
+
(at -1.778 0 90)
901
901
+
(effects
902
902
+
(font
903
903
+
(size 1.27 1.27)
904
904
+
)
905
905
+
(hide yes)
906
906
+
)
907
907
+
)
908
908
+
(property "Datasheet" "~"
909
909
+
(at 0 0 0)
910
910
+
(effects
911
911
+
(font
912
912
+
(size 1.27 1.27)
913
913
+
)
914
914
+
(hide yes)
915
915
+
)
916
916
+
)
917
917
+
(property "Description" "Resistor"
918
918
+
(at 0 0 0)
919
919
+
(effects
920
920
+
(font
921
921
+
(size 1.27 1.27)
922
922
+
)
923
923
+
(hide yes)
924
924
+
)
925
925
+
)
926
926
+
(property "ki_keywords" "R res resistor"
927
927
+
(at 0 0 0)
928
928
+
(effects
929
929
+
(font
930
930
+
(size 1.27 1.27)
931
931
+
)
932
932
+
(hide yes)
933
933
+
)
934
934
+
)
935
935
+
(property "ki_fp_filters" "R_*"
936
936
+
(at 0 0 0)
937
937
+
(effects
938
938
+
(font
939
939
+
(size 1.27 1.27)
940
940
+
)
941
941
+
(hide yes)
942
942
+
)
943
943
+
)
944
944
+
(symbol "R_0_1"
945
945
+
(rectangle
946
946
+
(start -1.016 -2.54)
947
947
+
(end 1.016 2.54)
948
948
+
(stroke
949
949
+
(width 0.254)
950
950
+
(type default)
951
951
+
)
952
952
+
(fill
953
953
+
(type none)
954
954
+
)
955
955
+
)
956
956
+
)
957
957
+
(symbol "R_1_1"
958
958
+
(pin passive line
959
959
+
(at 0 3.81 270)
960
960
+
(length 1.27)
961
961
+
(name "~"
962
962
+
(effects
963
963
+
(font
964
964
+
(size 1.27 1.27)
965
965
+
)
966
966
+
)
967
967
+
)
968
968
+
(number "1"
969
969
+
(effects
970
970
+
(font
971
971
+
(size 1.27 1.27)
972
972
+
)
973
973
+
)
974
974
+
)
975
975
+
)
976
976
+
(pin passive line
977
977
+
(at 0 -3.81 90)
978
978
+
(length 1.27)
979
979
+
(name "~"
980
980
+
(effects
981
981
+
(font
982
982
+
(size 1.27 1.27)
983
983
+
)
984
984
+
)
985
985
+
)
986
986
+
(number "2"
987
987
+
(effects
988
988
+
(font
989
989
+
(size 1.27 1.27)
990
990
+
)
991
991
+
)
992
992
+
)
993
993
+
)
994
994
+
)
995
995
+
(embedded_fonts no)
996
996
+
)
997
997
+
(symbol "Diode:1N4148WS"
998
998
+
(pin_numbers
999
999
+
(hide yes)
1000
1000
+
)
1001
1001
+
(pin_names
1002
1002
+
(hide yes)
1003
1003
+
)
1004
1004
+
(exclude_from_sim no)
1005
1005
+
(in_bom yes)
1006
1006
+
(on_board yes)
1007
1007
+
(property "Reference" "D"
1008
1008
+
(at 0 2.54 0)
1009
1009
+
(effects
1010
1010
+
(font
1011
1011
+
(size 1.27 1.27)
1012
1012
+
)
1013
1013
+
)
1014
1014
+
)
1015
1015
+
(property "Value" "1N4148WS"
1016
1016
+
(at 0 -2.54 0)
1017
1017
+
(effects
1018
1018
+
(font
1019
1019
+
(size 1.27 1.27)
1020
1020
+
)
1021
1021
+
)
1022
1022
+
)
1023
1023
+
(property "Footprint" "Diode_SMD:D_SOD-323"
1024
1024
+
(at 0 -4.445 0)
1025
1025
+
(effects
1026
1026
+
(font
1027
1027
+
(size 1.27 1.27)
1028
1028
+
)
1029
1029
+
(hide yes)
1030
1030
+
)
1031
1031
+
)
1032
1032
+
(property "Datasheet" "https://www.vishay.com/docs/85751/1n4148ws.pdf"
1033
1033
+
(at 0 0 0)
1034
1034
+
(effects
1035
1035
+
(font
1036
1036
+
(size 1.27 1.27)
1037
1037
+
)
1038
1038
+
(hide yes)
1039
1039
+
)
1040
1040
+
)
1041
1041
+
(property "Description" "75V 0.15A Fast switching Diode, SOD-323"
1042
1042
+
(at 0 0 0)
1043
1043
+
(effects
1044
1044
+
(font
1045
1045
+
(size 1.27 1.27)
1046
1046
+
)
1047
1047
+
(hide yes)
1048
1048
+
)
1049
1049
+
)
1050
1050
+
(property "Sim.Device" "D"
1051
1051
+
(at 0 0 0)
1052
1052
+
(effects
1053
1053
+
(font
1054
1054
+
(size 1.27 1.27)
1055
1055
+
)
1056
1056
+
(hide yes)
1057
1057
+
)
1058
1058
+
)
1059
1059
+
(property "Sim.Pins" "1=K 2=A"
1060
1060
+
(at 0 0 0)
1061
1061
+
(effects
1062
1062
+
(font
1063
1063
+
(size 1.27 1.27)
1064
1064
+
)
1065
1065
+
(hide yes)
1066
1066
+
)
1067
1067
+
)
1068
1068
+
(property "ki_keywords" "diode"
1069
1069
+
(at 0 0 0)
1070
1070
+
(effects
1071
1071
+
(font
1072
1072
+
(size 1.27 1.27)
1073
1073
+
)
1074
1074
+
(hide yes)
1075
1075
+
)
1076
1076
+
)
1077
1077
+
(property "ki_fp_filters" "D*SOD?323*"
1078
1078
+
(at 0 0 0)
1079
1079
+
(effects
1080
1080
+
(font
1081
1081
+
(size 1.27 1.27)
1082
1082
+
)
1083
1083
+
(hide yes)
1084
1084
+
)
1085
1085
+
)
1086
1086
+
(symbol "1N4148WS_0_1"
1087
1087
+
(polyline
1088
1088
+
(pts
1089
1089
+
(xy -1.27 1.27) (xy -1.27 -1.27)
1090
1090
+
)
1091
1091
+
(stroke
1092
1092
+
(width 0.254)
1093
1093
+
(type default)
1094
1094
+
)
1095
1095
+
(fill
1096
1096
+
(type none)
1097
1097
+
)
1098
1098
+
)
1099
1099
+
(polyline
1100
1100
+
(pts
1101
1101
+
(xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27)
1102
1102
+
)
1103
1103
+
(stroke
1104
1104
+
(width 0.254)
1105
1105
+
(type default)
1106
1106
+
)
1107
1107
+
(fill
1108
1108
+
(type none)
1109
1109
+
)
1110
1110
+
)
1111
1111
+
(polyline
1112
1112
+
(pts
1113
1113
+
(xy 1.27 0) (xy -1.27 0)
1114
1114
+
)
1115
1115
+
(stroke
1116
1116
+
(width 0)
1117
1117
+
(type default)
1118
1118
+
)
1119
1119
+
(fill
1120
1120
+
(type none)
1121
1121
+
)
1122
1122
+
)
1123
1123
+
)
1124
1124
+
(symbol "1N4148WS_1_1"
1125
1125
+
(pin passive line
1126
1126
+
(at -3.81 0 0)
1127
1127
+
(length 2.54)
1128
1128
+
(name "K"
1129
1129
+
(effects
1130
1130
+
(font
1131
1131
+
(size 1.27 1.27)
1132
1132
+
)
1133
1133
+
)
1134
1134
+
)
1135
1135
+
(number "1"
1136
1136
+
(effects
1137
1137
+
(font
1138
1138
+
(size 1.27 1.27)
1139
1139
+
)
1140
1140
+
)
1141
1141
+
)
1142
1142
+
)
1143
1143
+
(pin passive line
1144
1144
+
(at 3.81 0 180)
1145
1145
+
(length 2.54)
1146
1146
+
(name "A"
1147
1147
+
(effects
1148
1148
+
(font
1149
1149
+
(size 1.27 1.27)
1150
1150
+
)
1151
1151
+
)
1152
1152
+
)
1153
1153
+
(number "2"
1154
1154
+
(effects
1155
1155
+
(font
1156
1156
+
(size 1.27 1.27)
1157
1157
+
)
1158
1158
+
)
1159
1159
+
)
1160
1160
+
)
1161
1161
+
)
1162
1162
+
(embedded_fonts no)
1163
1163
+
)
1164
1164
+
(symbol "TA7642:TA7642"
1165
1165
+
(pin_names
1166
1166
+
(offset 1.016)
1167
1167
+
)
1168
1168
+
(exclude_from_sim no)
1169
1169
+
(in_bom yes)
1170
1170
+
(on_board yes)
1171
1171
+
(property "Reference" "IC"
1172
1172
+
(at 2.54 3.175 0)
1173
1173
+
(effects
1174
1174
+
(font
1175
1175
+
(size 1.27 1.27)
1176
1176
+
)
1177
1177
+
(justify left bottom)
1178
1178
+
)
1179
1179
+
)
1180
1180
+
(property "Value" "TA7642"
1181
1181
+
(at 2.54 -5.08 0)
1182
1182
+
(effects
1183
1183
+
(font
1184
1184
+
(size 1.27 1.27)
1185
1185
+
)
1186
1186
+
(justify left bottom)
1187
1187
+
)
1188
1188
+
)
1189
1189
+
(property "Footprint" "TA7642:TO-92AP"
1190
1190
+
(at 0 0 0)
1191
1191
+
(effects
1192
1192
+
(font
1193
1193
+
(size 1.27 1.27)
1194
1194
+
)
1195
1195
+
(justify bottom)
1196
1196
+
(hide yes)
1197
1197
+
)
1198
1198
+
)
1199
1199
+
(property "Datasheet" ""
1200
1200
+
(at 0 0 0)
1201
1201
+
(effects
1202
1202
+
(font
1203
1203
+
(size 1.27 1.27)
1204
1204
+
)
1205
1205
+
(hide yes)
1206
1206
+
)
1207
1207
+
)
1208
1208
+
(property "Description" ""
1209
1209
+
(at 0 0 0)
1210
1210
+
(effects
1211
1211
+
(font
1212
1212
+
(size 1.27 1.27)
1213
1213
+
)
1214
1214
+
(hide yes)
1215
1215
+
)
1216
1216
+
)
1217
1217
+
(property "MF" "cic"
1218
1218
+
(at 0 0 0)
1219
1219
+
(effects
1220
1220
+
(font
1221
1221
+
(size 1.27 1.27)
1222
1222
+
)
1223
1223
+
(justify bottom)
1224
1224
+
(hide yes)
1225
1225
+
)
1226
1226
+
)
1227
1227
+
(property "Description_1" "CIC TA-7642 Radio IC"
1228
1228
+
(at 0 0 0)
1229
1229
+
(effects
1230
1230
+
(font
1231
1231
+
(size 1.27 1.27)
1232
1232
+
)
1233
1233
+
(justify bottom)
1234
1234
+
(hide yes)
1235
1235
+
)
1236
1236
+
)
1237
1237
+
(property "Package" "None"
1238
1238
+
(at 0 0 0)
1239
1239
+
(effects
1240
1240
+
(font
1241
1241
+
(size 1.27 1.27)
1242
1242
+
)
1243
1243
+
(justify bottom)
1244
1244
+
(hide yes)
1245
1245
+
)
1246
1246
+
)
1247
1247
+
(property "Price" "None"
1248
1248
+
(at 0 0 0)
1249
1249
+
(effects
1250
1250
+
(font
1251
1251
+
(size 1.27 1.27)
1252
1252
+
)
1253
1253
+
(justify bottom)
1254
1254
+
(hide yes)
1255
1255
+
)
1256
1256
+
)
1257
1257
+
(property "SnapEDA_Link" "https://www.snapeda.com/parts/TA-7642/Cicoil/view-part/?ref=snap"
1258
1258
+
(at 0 0 0)
1259
1259
+
(effects
1260
1260
+
(font
1261
1261
+
(size 1.27 1.27)
1262
1262
+
)
1263
1263
+
(justify bottom)
1264
1264
+
(hide yes)
1265
1265
+
)
1266
1266
+
)
1267
1267
+
(property "MP" "TA-7642"
1268
1268
+
(at 0 0 0)
1269
1269
+
(effects
1270
1270
+
(font
1271
1271
+
(size 1.27 1.27)
1272
1272
+
)
1273
1273
+
(justify bottom)
1274
1274
+
(hide yes)
1275
1275
+
)
1276
1276
+
)
1277
1277
+
(property "Availability" "Not in stock"
1278
1278
+
(at 0 0 0)
1279
1279
+
(effects
1280
1280
+
(font
1281
1281
+
(size 1.27 1.27)
1282
1282
+
)
1283
1283
+
(justify bottom)
1284
1284
+
(hide yes)
1285
1285
+
)
1286
1286
+
)
1287
1287
+
(property "Check_prices" "https://www.snapeda.com/parts/TA-7642/Cicoil/view-part/?ref=eda"
1288
1288
+
(at 0 0 0)
1289
1289
+
(effects
1290
1290
+
(font
1291
1291
+
(size 1.27 1.27)
1292
1292
+
)
1293
1293
+
(justify bottom)
1294
1294
+
(hide yes)
1295
1295
+
)
1296
1296
+
)
1297
1297
+
(symbol "TA7642_0_0"
1298
1298
+
(polyline
1299
1299
+
(pts
1300
1300
+
(xy -5.08 -5.08) (xy -5.08 5.08)
1301
1301
+
)
1302
1302
+
(stroke
1303
1303
+
(width 0.4064)
1304
1304
+
(type default)
1305
1305
+
)
1306
1306
+
(fill
1307
1307
+
(type none)
1308
1308
+
)
1309
1309
+
)
1310
1310
+
(polyline
1311
1311
+
(pts
1312
1312
+
(xy 0 -2.54) (xy 0 -5.08)
1313
1313
+
)
1314
1314
+
(stroke
1315
1315
+
(width 0.1524)
1316
1316
+
(type default)
1317
1317
+
)
1318
1318
+
(fill
1319
1319
+
(type none)
1320
1320
+
)
1321
1321
+
)
1322
1322
+
(polyline
1323
1323
+
(pts
1324
1324
+
(xy 5.08 0) (xy -5.08 5.08)
1325
1325
+
)
1326
1326
+
(stroke
1327
1327
+
(width 0.4064)
1328
1328
+
(type default)
1329
1329
+
)
1330
1330
+
(fill
1331
1331
+
(type none)
1332
1332
+
)
1333
1333
+
)
1334
1334
+
(polyline
1335
1335
+
(pts
1336
1336
+
(xy 5.08 0) (xy -5.08 -5.08)
1337
1337
+
)
1338
1338
+
(stroke
1339
1339
+
(width 0.4064)
1340
1340
+
(type default)
1341
1341
+
)
1342
1342
+
(fill
1343
1343
+
(type none)
1344
1344
+
)
1345
1345
+
)
1346
1346
+
(pin input line
1347
1347
+
(at -10.16 0 0)
1348
1348
+
(length 5.08)
1349
1349
+
(name "~"
1350
1350
+
(effects
1351
1351
+
(font
1352
1352
+
(size 1.016 1.016)
1353
1353
+
)
1354
1354
+
)
1355
1355
+
)
1356
1356
+
(number "2"
1357
1357
+
(effects
1358
1358
+
(font
1359
1359
+
(size 1.016 1.016)
1360
1360
+
)
1361
1361
+
)
1362
1362
+
)
1363
1363
+
)
1364
1364
+
(pin input line
1365
1365
+
(at 0 -10.16 90)
1366
1366
+
(length 5.08)
1367
1367
+
(name "~"
1368
1368
+
(effects
1369
1369
+
(font
1370
1370
+
(size 1.016 1.016)
1371
1371
+
)
1372
1372
+
)
1373
1373
+
)
1374
1374
+
(number "1"
1375
1375
+
(effects
1376
1376
+
(font
1377
1377
+
(size 1.016 1.016)
1378
1378
+
)
1379
1379
+
)
1380
1380
+
)
1381
1381
+
)
1382
1382
+
(pin output line
1383
1383
+
(at 10.16 0 180)
1384
1384
+
(length 5.08)
1385
1385
+
(name "~"
1386
1386
+
(effects
1387
1387
+
(font
1388
1388
+
(size 1.016 1.016)
1389
1389
+
)
1390
1390
+
)
1391
1391
+
)
1392
1392
+
(number "3"
1393
1393
+
(effects
1394
1394
+
(font
1395
1395
+
(size 1.016 1.016)
1396
1396
+
)
1397
1397
+
)
1398
1398
+
)
1399
1399
+
)
1400
1400
+
)
1401
1401
+
(embedded_fonts no)
1402
1402
+
)
1403
1403
+
(symbol "power:GND"
1404
1404
+
(power)
1405
1405
+
(pin_numbers
1406
1406
+
(hide yes)
1407
1407
+
)
1408
1408
+
(pin_names
1409
1409
+
(offset 0)
1410
1410
+
(hide yes)
1411
1411
+
)
1412
1412
+
(exclude_from_sim no)
1413
1413
+
(in_bom yes)
1414
1414
+
(on_board yes)
1415
1415
+
(property "Reference" "#PWR"
1416
1416
+
(at 0 -6.35 0)
1417
1417
+
(effects
1418
1418
+
(font
1419
1419
+
(size 1.27 1.27)
1420
1420
+
)
1421
1421
+
(hide yes)
1422
1422
+
)
1423
1423
+
)
1424
1424
+
(property "Value" "GND"
1425
1425
+
(at 0 -3.81 0)
1426
1426
+
(effects
1427
1427
+
(font
1428
1428
+
(size 1.27 1.27)
1429
1429
+
)
1430
1430
+
)
1431
1431
+
)
1432
1432
+
(property "Footprint" ""
1433
1433
+
(at 0 0 0)
1434
1434
+
(effects
1435
1435
+
(font
1436
1436
+
(size 1.27 1.27)
1437
1437
+
)
1438
1438
+
(hide yes)
1439
1439
+
)
1440
1440
+
)
1441
1441
+
(property "Datasheet" ""
1442
1442
+
(at 0 0 0)
1443
1443
+
(effects
1444
1444
+
(font
1445
1445
+
(size 1.27 1.27)
1446
1446
+
)
1447
1447
+
(hide yes)
1448
1448
+
)
1449
1449
+
)
1450
1450
+
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
1451
1451
+
(at 0 0 0)
1452
1452
+
(effects
1453
1453
+
(font
1454
1454
+
(size 1.27 1.27)
1455
1455
+
)
1456
1456
+
(hide yes)
1457
1457
+
)
1458
1458
+
)
1459
1459
+
(property "ki_keywords" "global power"
1460
1460
+
(at 0 0 0)
1461
1461
+
(effects
1462
1462
+
(font
1463
1463
+
(size 1.27 1.27)
1464
1464
+
)
1465
1465
+
(hide yes)
1466
1466
+
)
1467
1467
+
)
1468
1468
+
(symbol "GND_0_1"
1469
1469
+
(polyline
1470
1470
+
(pts
1471
1471
+
(xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
1472
1472
+
)
1473
1473
+
(stroke
1474
1474
+
(width 0)
1475
1475
+
(type default)
1476
1476
+
)
1477
1477
+
(fill
1478
1478
+
(type none)
1479
1479
+
)
1480
1480
+
)
1481
1481
+
)
1482
1482
+
(symbol "GND_1_1"
1483
1483
+
(pin power_in line
1484
1484
+
(at 0 0 270)
1485
1485
+
(length 0)
1486
1486
+
(name "~"
1487
1487
+
(effects
1488
1488
+
(font
1489
1489
+
(size 1.27 1.27)
1490
1490
+
)
1491
1491
+
)
1492
1492
+
)
1493
1493
+
(number "1"
1494
1494
+
(effects
1495
1495
+
(font
1496
1496
+
(size 1.27 1.27)
1497
1497
+
)
1498
1498
+
)
1499
1499
+
)
1500
1500
+
)
1501
1501
+
)
1502
1502
+
(embedded_fonts no)
1503
1503
+
)
1504
1504
+
(symbol "power:PWR_FLAG"
1505
1505
+
(power)
1506
1506
+
(pin_numbers
1507
1507
+
(hide yes)
1508
1508
+
)
1509
1509
+
(pin_names
1510
1510
+
(offset 0)
1511
1511
+
(hide yes)
1512
1512
+
)
1513
1513
+
(exclude_from_sim no)
1514
1514
+
(in_bom yes)
1515
1515
+
(on_board yes)
1516
1516
+
(property "Reference" "#FLG"
1517
1517
+
(at 0 1.905 0)
1518
1518
+
(effects
1519
1519
+
(font
1520
1520
+
(size 1.27 1.27)
1521
1521
+
)
1522
1522
+
(hide yes)
1523
1523
+
)
1524
1524
+
)
1525
1525
+
(property "Value" "PWR_FLAG"
1526
1526
+
(at 0 3.81 0)
1527
1527
+
(effects
1528
1528
+
(font
1529
1529
+
(size 1.27 1.27)
1530
1530
+
)
1531
1531
+
)
1532
1532
+
)
1533
1533
+
(property "Footprint" ""
1534
1534
+
(at 0 0 0)
1535
1535
+
(effects
1536
1536
+
(font
1537
1537
+
(size 1.27 1.27)
1538
1538
+
)
1539
1539
+
(hide yes)
1540
1540
+
)
1541
1541
+
)
1542
1542
+
(property "Datasheet" "~"
1543
1543
+
(at 0 0 0)
1544
1544
+
(effects
1545
1545
+
(font
1546
1546
+
(size 1.27 1.27)
1547
1547
+
)
1548
1548
+
(hide yes)
1549
1549
+
)
1550
1550
+
)
1551
1551
+
(property "Description" "Special symbol for telling ERC where power comes from"
1552
1552
+
(at 0 0 0)
1553
1553
+
(effects
1554
1554
+
(font
1555
1555
+
(size 1.27 1.27)
1556
1556
+
)
1557
1557
+
(hide yes)
1558
1558
+
)
1559
1559
+
)
1560
1560
+
(property "ki_keywords" "flag power"
1561
1561
+
(at 0 0 0)
1562
1562
+
(effects
1563
1563
+
(font
1564
1564
+
(size 1.27 1.27)
1565
1565
+
)
1566
1566
+
(hide yes)
1567
1567
+
)
1568
1568
+
)
1569
1569
+
(symbol "PWR_FLAG_0_0"
1570
1570
+
(pin power_out line
1571
1571
+
(at 0 0 90)
1572
1572
+
(length 0)
1573
1573
+
(name "~"
1574
1574
+
(effects
1575
1575
+
(font
1576
1576
+
(size 1.27 1.27)
1577
1577
+
)
1578
1578
+
)
1579
1579
+
)
1580
1580
+
(number "1"
1581
1581
+
(effects
1582
1582
+
(font
1583
1583
+
(size 1.27 1.27)
1584
1584
+
)
1585
1585
+
)
1586
1586
+
)
1587
1587
+
)
1588
1588
+
)
1589
1589
+
(symbol "PWR_FLAG_0_1"
1590
1590
+
(polyline
1591
1591
+
(pts
1592
1592
+
(xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27)
1593
1593
+
)
1594
1594
+
(stroke
1595
1595
+
(width 0)
1596
1596
+
(type default)
1597
1597
+
)
1598
1598
+
(fill
1599
1599
+
(type none)
1600
1600
+
)
1601
1601
+
)
1602
1602
+
)
1603
1603
+
(embedded_fonts no)
1604
1604
+
)
1605
1605
+
)
1606
1606
+
(text_box "Sensor Connector"
1607
1607
+
(exclude_from_sim no)
1608
1608
+
(at 147.32 86.36 0)
1609
1609
+
(size 64.77 44.45)
1610
1610
+
(margins 0.9525 0.9525 0.9525 0.9525)
1611
1611
+
(stroke
1612
1612
+
(width 0)
1613
1613
+
(type solid)
1614
1614
+
)
1615
1615
+
(fill
1616
1616
+
(type none)
1617
1617
+
)
1618
1618
+
(effects
1619
1619
+
(font
1620
1620
+
(size 1.27 1.27)
1621
1621
+
)
1622
1622
+
(justify left top)
1623
1623
+
)
1624
1624
+
(uuid "2bed291b-c6b8-4047-986f-8060bd875e9c")
1625
1625
+
)
1626
1626
+
(text_box "Power Sources/Sinks"
1627
1627
+
(exclude_from_sim no)
1628
1628
+
(at 147.32 134.62 0)
1629
1629
+
(size 64.77 22.86)
1630
1630
+
(margins 0.9525 0.9525 0.9525 0.9525)
1631
1631
+
(stroke
1632
1632
+
(width 0)
1633
1633
+
(type solid)
1634
1634
+
)
1635
1635
+
(fill
1636
1636
+
(type none)
1637
1637
+
)
1638
1638
+
(effects
1639
1639
+
(font
1640
1640
+
(size 1.27 1.27)
1641
1641
+
)
1642
1642
+
(justify left top)
1643
1643
+
)
1644
1644
+
(uuid "8e4649f5-2cdc-4950-8dd3-f17d8a6cd6d2")
1645
1645
+
)
1646
1646
+
(text_box "Antenna Connector"
1647
1647
+
(exclude_from_sim no)
1648
1648
+
(at 147.32 38.1 0)
1649
1649
+
(size 64.77 44.45)
1650
1650
+
(margins 0.9525 0.9525 0.9525 0.9525)
1651
1651
+
(stroke
1652
1652
+
(width 0)
1653
1653
+
(type solid)
1654
1654
+
)
1655
1655
+
(fill
1656
1656
+
(type none)
1657
1657
+
)
1658
1658
+
(effects
1659
1659
+
(font
1660
1660
+
(size 1.27 1.27)
1661
1661
+
)
1662
1662
+
(justify left top)
1663
1663
+
)
1664
1664
+
(uuid "997f2b06-c2f0-4932-a5c7-3dc30f4d8c47")
1665
1665
+
)
1666
1666
+
(text_box "AM Signal Receiver"
1667
1667
+
(exclude_from_sim no)
1668
1668
+
(at 24.13 38.1 0)
1669
1669
+
(size 119.38 63.5)
1670
1670
+
(margins 0.9525 0.9525 0.9525 0.9525)
1671
1671
+
(stroke
1672
1672
+
(width 0)
1673
1673
+
(type solid)
1674
1674
+
)
1675
1675
+
(fill
1676
1676
+
(type none)
1677
1677
+
)
1678
1678
+
(effects
1679
1679
+
(font
1680
1680
+
(size 1.27 1.27)
1681
1681
+
)
1682
1682
+
(justify left top)
1683
1683
+
)
1684
1684
+
(uuid "b5328206-0297-44c6-b3c2-e0072064e9a8")
1685
1685
+
)
1686
1686
+
(text_box "Voltage Regulator"
1687
1687
+
(exclude_from_sim no)
1688
1688
+
(at 24.13 105.41 0)
1689
1689
+
(size 119.38 52.07)
1690
1690
+
(margins 0.9525 0.9525 0.9525 0.9525)
1691
1691
+
(stroke
1692
1692
+
(width 0)
1693
1693
+
(type solid)
1694
1694
+
)
1695
1695
+
(fill
1696
1696
+
(type none)
1697
1697
+
)
1698
1698
+
(effects
1699
1699
+
(font
1700
1700
+
(size 1.27 1.27)
1701
1701
+
)
1702
1702
+
(justify left top)
1703
1703
+
)
1704
1704
+
(uuid "e9f08abe-0d5f-4452-92c1-24f842fdbeec")
1705
1705
+
)
1706
1706
+
(junction
1707
1707
+
(at 81.28 82.55)
1708
1708
+
(diameter 0)
1709
1709
+
(color 0 0 0 0)
1710
1710
+
(uuid "8890c9d4-f12c-45b3-bb88-a41ff78ec03d")
1711
1711
+
)
1712
1712
+
(junction
1713
1713
+
(at 58.42 72.39)
1714
1714
+
(diameter 0)
1715
1715
+
(color 0 0 0 0)
1716
1716
+
(uuid "970d127e-c3c3-4958-845a-0ffd58198338")
1717
1717
+
)
1718
1718
+
(junction
1719
1719
+
(at 81.28 124.46)
1720
1720
+
(diameter 0)
1721
1721
+
(color 0 0 0 0)
1722
1722
+
(uuid "99e3d10d-28a3-4f06-bce3-bb621c62783b")
1723
1723
+
)
1724
1724
+
(junction
1725
1725
+
(at 63.5 124.46)
1726
1726
+
(diameter 0)
1727
1727
+
(color 0 0 0 0)
1728
1728
+
(uuid "ac47b83d-01bd-47d6-b9c0-bebf02685e95")
1729
1729
+
)
1730
1730
+
(junction
1731
1731
+
(at 97.79 124.46)
1732
1732
+
(diameter 0)
1733
1733
+
(color 0 0 0 0)
1734
1734
+
(uuid "af86c22f-b679-4a01-9b10-9b3b73c3e8ab")
1735
1735
+
)
1736
1736
+
(junction
1737
1737
+
(at 71.12 72.39)
1738
1738
+
(diameter 0)
1739
1739
+
(color 0 0 0 0)
1740
1740
+
(uuid "b9dd0359-4981-461d-9200-229ba80de5e3")
1741
1741
+
)
1742
1742
+
(junction
1743
1743
+
(at 91.44 72.39)
1744
1744
+
(diameter 0)
1745
1745
+
(color 0 0 0 0)
1746
1746
+
(uuid "ce397f89-4439-457f-b908-0f26feabd203")
1747
1747
+
)
1748
1748
+
(junction
1749
1749
+
(at 81.28 139.7)
1750
1750
+
(diameter 0)
1751
1751
+
(color 0 0 0 0)
1752
1752
+
(uuid "ddae47f9-29bb-4f4b-a536-b8020e126c0e")
1753
1753
+
)
1754
1754
+
(junction
1755
1755
+
(at 91.44 82.55)
1756
1756
+
(diameter 0)
1757
1757
+
(color 0 0 0 0)
1758
1758
+
(uuid "e8cbd4a9-8bab-4159-bc4d-8b048c5d7fe7")
1759
1759
+
)
1760
1760
+
(junction
1761
1761
+
(at 58.42 82.55)
1762
1762
+
(diameter 0)
1763
1763
+
(color 0 0 0 0)
1764
1764
+
(uuid "f7a372a5-4289-4dca-bc67-1bb06fccc5ce")
1765
1765
+
)
1766
1766
+
(wire
1767
1767
+
(pts
1768
1768
+
(xy 170.18 60.96) (xy 171.45 60.96)
1769
1769
+
)
1770
1770
+
(stroke
1771
1771
+
(width 0)
1772
1772
+
(type default)
1773
1773
+
)
1774
1774
+
(uuid "054f5659-5cc6-4566-b667-eecc1bc5841f")
1775
1775
+
)
1776
1776
+
(wire
1777
1777
+
(pts
1778
1778
+
(xy 63.5 139.7) (xy 63.5 135.89)
1779
1779
+
)
1780
1780
+
(stroke
1781
1781
+
(width 0)
1782
1782
+
(type default)
1783
1783
+
)
1784
1784
+
(uuid "05d9f3ac-37c3-4782-bd59-1c5dbedde462")
1785
1785
+
)
1786
1786
+
(wire
1787
1787
+
(pts
1788
1788
+
(xy 91.44 72.39) (xy 97.79 72.39)
1789
1789
+
)
1790
1790
+
(stroke
1791
1791
+
(width 0)
1792
1792
+
(type default)
1793
1793
+
)
1794
1794
+
(uuid "101d9c7e-7bd2-4435-82aa-682a38fda8e7")
1795
1795
+
)
1796
1796
+
(wire
1797
1797
+
(pts
1798
1798
+
(xy 163.83 109.22) (xy 173.99 109.22)
1799
1799
+
)
1800
1800
+
(stroke
1801
1801
+
(width 0)
1802
1802
+
(type default)
1803
1803
+
)
1804
1804
+
(uuid "102b9555-15f3-4a55-b72f-e02f61b249db")
1805
1805
+
)
1806
1806
+
(wire
1807
1807
+
(pts
1808
1808
+
(xy 97.79 124.46) (xy 97.79 128.27)
1809
1809
+
)
1810
1810
+
(stroke
1811
1811
+
(width 0)
1812
1812
+
(type default)
1813
1813
+
)
1814
1814
+
(uuid "144deaeb-91ee-4513-9603-b8fc63427eb4")
1815
1815
+
)
1816
1816
+
(wire
1817
1817
+
(pts
1818
1818
+
(xy 172.72 106.68) (xy 173.99 106.68)
1819
1819
+
)
1820
1820
+
(stroke
1821
1821
+
(width 0)
1822
1822
+
(type default)
1823
1823
+
)
1824
1824
+
(uuid "1a9a8ce0-2e8b-4011-a357-8df2256c966e")
1825
1825
+
)
1826
1826
+
(wire
1827
1827
+
(pts
1828
1828
+
(xy 81.28 128.27) (xy 81.28 124.46)
1829
1829
+
)
1830
1830
+
(stroke
1831
1831
+
(width 0)
1832
1832
+
(type default)
1833
1833
+
)
1834
1834
+
(uuid "1bb80a2e-7227-4116-8b13-968349dc98af")
1835
1835
+
)
1836
1836
+
(wire
1837
1837
+
(pts
1838
1838
+
(xy 52.07 67.31) (xy 52.07 74.93)
1839
1839
+
)
1840
1840
+
(stroke
1841
1841
+
(width 0)
1842
1842
+
(type default)
1843
1843
+
)
1844
1844
+
(uuid "1d22f5b3-ab06-4045-8420-dee31a079a07")
1845
1845
+
)
1846
1846
+
(wire
1847
1847
+
(pts
1848
1848
+
(xy 58.42 82.55) (xy 81.28 82.55)
1849
1849
+
)
1850
1850
+
(stroke
1851
1851
+
(width 0)
1852
1852
+
(type default)
1853
1853
+
)
1854
1854
+
(uuid "25667910-5e40-4975-a637-facd5ac4431a")
1855
1855
+
)
1856
1856
+
(wire
1857
1857
+
(pts
1858
1858
+
(xy 97.79 135.89) (xy 97.79 139.7)
1859
1859
+
)
1860
1860
+
(stroke
1861
1861
+
(width 0)
1862
1862
+
(type default)
1863
1863
+
)
1864
1864
+
(uuid "28d3becf-35c4-40c3-9a05-92ab40e19ef5")
1865
1865
+
)
1866
1866
+
(wire
1867
1867
+
(pts
1868
1868
+
(xy 71.12 57.15) (xy 71.12 72.39)
1869
1869
+
)
1870
1870
+
(stroke
1871
1871
+
(width 0)
1872
1872
+
(type default)
1873
1873
+
)
1874
1874
+
(uuid "314c051a-34e5-4998-8ad2-7c318fd756e9")
1875
1875
+
)
1876
1876
+
(wire
1877
1877
+
(pts
1878
1878
+
(xy 91.44 57.15) (xy 85.09 57.15)
1879
1879
+
)
1880
1880
+
(stroke
1881
1881
+
(width 0)
1882
1882
+
(type default)
1883
1883
+
)
1884
1884
+
(uuid "3320a462-d489-4588-aa4a-3fafd2288685")
1885
1885
+
)
1886
1886
+
(wire
1887
1887
+
(pts
1888
1888
+
(xy 93.98 124.46) (xy 97.79 124.46)
1889
1889
+
)
1890
1890
+
(stroke
1891
1891
+
(width 0)
1892
1892
+
(type default)
1893
1893
+
)
1894
1894
+
(uuid "3abf413e-527c-412f-bc77-f94b2f3286e8")
1895
1895
+
)
1896
1896
+
(wire
1897
1897
+
(pts
1898
1898
+
(xy 81.28 82.55) (xy 91.44 82.55)
1899
1899
+
)
1900
1900
+
(stroke
1901
1901
+
(width 0)
1902
1902
+
(type default)
1903
1903
+
)
1904
1904
+
(uuid "3ebd530a-40ec-4870-81bc-bfa6bc5b8d78")
1905
1905
+
)
1906
1906
+
(wire
1907
1907
+
(pts
1908
1908
+
(xy 58.42 72.39) (xy 58.42 74.93)
1909
1909
+
)
1910
1910
+
(stroke
1911
1911
+
(width 0)
1912
1912
+
(type default)
1913
1913
+
)
1914
1914
+
(uuid "44380748-3661-43cf-a7f4-fdc3db19a724")
1915
1915
+
)
1916
1916
+
(wire
1917
1917
+
(pts
1918
1918
+
(xy 58.42 72.39) (xy 60.96 72.39)
1919
1919
+
)
1920
1920
+
(stroke
1921
1921
+
(width 0)
1922
1922
+
(type default)
1923
1923
+
)
1924
1924
+
(uuid "5371e7a8-9dfe-47d4-bf2f-c712dca32ff7")
1925
1925
+
)
1926
1926
+
(wire
1927
1927
+
(pts
1928
1928
+
(xy 55.88 72.39) (xy 58.42 72.39)
1929
1929
+
)
1930
1930
+
(stroke
1931
1931
+
(width 0)
1932
1932
+
(type default)
1933
1933
+
)
1934
1934
+
(uuid "6f17a66c-5557-4481-8af4-973fbf635748")
1935
1935
+
)
1936
1936
+
(wire
1937
1937
+
(pts
1938
1938
+
(xy 63.5 124.46) (xy 63.5 128.27)
1939
1939
+
)
1940
1940
+
(stroke
1941
1941
+
(width 0)
1942
1942
+
(type default)
1943
1943
+
)
1944
1944
+
(uuid "7e6e14fe-3fb6-4fae-be43-4508d7a5ac79")
1945
1945
+
)
1946
1946
+
(wire
1947
1947
+
(pts
1948
1948
+
(xy 81.28 144.78) (xy 81.28 139.7)
1949
1949
+
)
1950
1950
+
(stroke
1951
1951
+
(width 0)
1952
1952
+
(type default)
1953
1953
+
)
1954
1954
+
(uuid "80dd8ad2-ffd2-4aec-aefa-0a2750b995de")
1955
1955
+
)
1956
1956
+
(wire
1957
1957
+
(pts
1958
1958
+
(xy 68.58 72.39) (xy 71.12 72.39)
1959
1959
+
)
1960
1960
+
(stroke
1961
1961
+
(width 0)
1962
1962
+
(type default)
1963
1963
+
)
1964
1964
+
(uuid "8448ba1f-71d0-4825-b102-d6340acc894a")
1965
1965
+
)
1966
1966
+
(wire
1967
1967
+
(pts
1968
1968
+
(xy 109.22 124.46) (xy 113.03 124.46)
1969
1969
+
)
1970
1970
+
(stroke
1971
1971
+
(width 0)
1972
1972
+
(type default)
1973
1973
+
)
1974
1974
+
(uuid "9258bc84-eb2b-4947-8236-f1056c617df5")
1975
1975
+
)
1976
1976
+
(wire
1977
1977
+
(pts
1978
1978
+
(xy 91.44 82.55) (xy 106.68 82.55)
1979
1979
+
)
1980
1980
+
(stroke
1981
1981
+
(width 0)
1982
1982
+
(type default)
1983
1983
+
)
1984
1984
+
(uuid "929b66e7-9c88-438f-a695-84eee413dfd5")
1985
1985
+
)
1986
1986
+
(wire
1987
1987
+
(pts
1988
1988
+
(xy 184.15 147.32) (xy 190.5 147.32)
1989
1989
+
)
1990
1990
+
(stroke
1991
1991
+
(width 0)
1992
1992
+
(type default)
1993
1993
+
)
1994
1994
+
(uuid "95eb3a77-e7ba-4951-994c-fcdfa8d440dd")
1995
1995
+
)
1996
1996
+
(wire
1997
1997
+
(pts
1998
1998
+
(xy 76.2 124.46) (xy 81.28 124.46)
1999
1999
+
)
2000
2000
+
(stroke
2001
2001
+
(width 0)
2002
2002
+
(type default)
2003
2003
+
)
2004
2004
+
(uuid "a025e651-8db1-4640-96c4-733caeb2ec0a")
2005
2005
+
)
2006
2006
+
(wire
2007
2007
+
(pts
2008
2008
+
(xy 55.88 72.39) (xy 55.88 67.31)
2009
2009
+
)
2010
2010
+
(stroke
2011
2011
+
(width 0)
2012
2012
+
(type default)
2013
2013
+
)
2014
2014
+
(uuid "a0c743f4-cc1a-47ee-b03d-6353b4567326")
2015
2015
+
)
2016
2016
+
(wire
2017
2017
+
(pts
2018
2018
+
(xy 63.5 124.46) (xy 68.58 124.46)
2019
2019
+
)
2020
2020
+
(stroke
2021
2021
+
(width 0)
2022
2022
+
(type default)
2023
2023
+
)
2024
2024
+
(uuid "af96d070-aa27-4020-b3af-126db01bacd9")
2025
2025
+
)
2026
2026
+
(wire
2027
2027
+
(pts
2028
2028
+
(xy 172.72 111.76) (xy 173.99 111.76)
2029
2029
+
)
2030
2030
+
(stroke
2031
2031
+
(width 0)
2032
2032
+
(type default)
2033
2033
+
)
2034
2034
+
(uuid "b93d5549-7272-40d9-ae15-9a1c66850d3a")
2035
2035
+
)
2036
2036
+
(wire
2037
2037
+
(pts
2038
2038
+
(xy 170.18 58.42) (xy 171.45 58.42)
2039
2039
+
)
2040
2040
+
(stroke
2041
2041
+
(width 0)
2042
2042
+
(type default)
2043
2043
+
)
2044
2044
+
(uuid "b9813669-7d22-462f-b19f-98a1dfdedf11")
2045
2045
+
)
2046
2046
+
(wire
2047
2047
+
(pts
2048
2048
+
(xy 123.19 82.55) (xy 123.19 85.09)
2049
2049
+
)
2050
2050
+
(stroke
2051
2051
+
(width 0)
2052
2052
+
(type default)
2053
2053
+
)
2054
2054
+
(uuid "beec8506-3440-4011-a869-35a80ffc57f4")
2055
2055
+
)
2056
2056
+
(wire
2057
2057
+
(pts
2058
2058
+
(xy 97.79 124.46) (xy 101.6 124.46)
2059
2059
+
)
2060
2060
+
(stroke
2061
2061
+
(width 0)
2062
2062
+
(type default)
2063
2063
+
)
2064
2064
+
(uuid "c071c9a7-b677-4001-8384-de528a5eb7b9")
2065
2065
+
)
2066
2066
+
(wire
2067
2067
+
(pts
2068
2068
+
(xy 81.28 135.89) (xy 81.28 139.7)
2069
2069
+
)
2070
2070
+
(stroke
2071
2071
+
(width 0)
2072
2072
+
(type default)
2073
2073
+
)
2074
2074
+
(uuid "c3f5cd60-70f6-4e6e-9236-a7d93a26d971")
2075
2075
+
)
2076
2076
+
(wire
2077
2077
+
(pts
2078
2078
+
(xy 163.83 147.32) (xy 168.91 147.32)
2079
2079
+
)
2080
2080
+
(stroke
2081
2081
+
(width 0)
2082
2082
+
(type default)
2083
2083
+
)
2084
2084
+
(uuid "c5e0c42b-bedd-4ae3-b32b-1e5ae0ea8375")
2085
2085
+
)
2086
2086
+
(wire
2087
2087
+
(pts
2088
2088
+
(xy 114.3 82.55) (xy 123.19 82.55)
2089
2089
+
)
2090
2090
+
(stroke
2091
2091
+
(width 0)
2092
2092
+
(type default)
2093
2093
+
)
2094
2094
+
(uuid "c85dc35d-11c6-40d4-b28e-d879292013eb")
2095
2095
+
)
2096
2096
+
(wire
2097
2097
+
(pts
2098
2098
+
(xy 48.26 124.46) (xy 52.07 124.46)
2099
2099
+
)
2100
2100
+
(stroke
2101
2101
+
(width 0)
2102
2102
+
(type default)
2103
2103
+
)
2104
2104
+
(uuid "d1c04bdc-69dd-47a9-9ea8-c497d3493e57")
2105
2105
+
)
2106
2106
+
(wire
2107
2107
+
(pts
2108
2108
+
(xy 91.44 57.15) (xy 91.44 72.39)
2109
2109
+
)
2110
2110
+
(stroke
2111
2111
+
(width 0)
2112
2112
+
(type default)
2113
2113
+
)
2114
2114
+
(uuid "d2a03ea2-71b9-46be-bab0-a40420787ff9")
2115
2115
+
)
2116
2116
+
(wire
2117
2117
+
(pts
2118
2118
+
(xy 91.44 72.39) (xy 91.44 74.93)
2119
2119
+
)
2120
2120
+
(stroke
2121
2121
+
(width 0)
2122
2122
+
(type default)
2123
2123
+
)
2124
2124
+
(uuid "d56a9717-4570-4531-ab27-1d34a41c5444")
2125
2125
+
)
2126
2126
+
(wire
2127
2127
+
(pts
2128
2128
+
(xy 59.69 124.46) (xy 63.5 124.46)
2129
2129
+
)
2130
2130
+
(stroke
2131
2131
+
(width 0)
2132
2132
+
(type default)
2133
2133
+
)
2134
2134
+
(uuid "db47cb60-3c99-410b-8b61-0287fc73e577")
2135
2135
+
)
2136
2136
+
(wire
2137
2137
+
(pts
2138
2138
+
(xy 63.5 139.7) (xy 81.28 139.7)
2139
2139
+
)
2140
2140
+
(stroke
2141
2141
+
(width 0)
2142
2142
+
(type default)
2143
2143
+
)
2144
2144
+
(uuid "e08e0e88-0890-4023-8076-6d8786e6c197")
2145
2145
+
)
2146
2146
+
(wire
2147
2147
+
(pts
2148
2148
+
(xy 77.47 57.15) (xy 71.12 57.15)
2149
2149
+
)
2150
2150
+
(stroke
2151
2151
+
(width 0)
2152
2152
+
(type default)
2153
2153
+
)
2154
2154
+
(uuid "e1d1b577-6f5e-4bd5-8721-673c919762a4")
2155
2155
+
)
2156
2156
+
(wire
2157
2157
+
(pts
2158
2158
+
(xy 81.28 124.46) (xy 86.36 124.46)
2159
2159
+
)
2160
2160
+
(stroke
2161
2161
+
(width 0)
2162
2162
+
(type default)
2163
2163
+
)
2164
2164
+
(uuid "eb8ca3be-e10e-43f9-91ae-ab6c34af014a")
2165
2165
+
)
2166
2166
+
(wire
2167
2167
+
(pts
2168
2168
+
(xy 52.07 82.55) (xy 58.42 82.55)
2169
2169
+
)
2170
2170
+
(stroke
2171
2171
+
(width 0)
2172
2172
+
(type default)
2173
2173
+
)
2174
2174
+
(uuid "f329910f-107a-4244-976f-45ca0b41a90c")
2175
2175
+
)
2176
2176
+
(wire
2177
2177
+
(pts
2178
2178
+
(xy 81.28 139.7) (xy 97.79 139.7)
2179
2179
+
)
2180
2180
+
(stroke
2181
2181
+
(width 0)
2182
2182
+
(type default)
2183
2183
+
)
2184
2184
+
(uuid "f54467f1-a366-4400-b2ec-21dded8756f3")
2185
2185
+
)
2186
2186
+
(global_label "ANT_GND"
2187
2187
+
(shape passive)
2188
2188
+
(at 170.18 60.96 180)
2189
2189
+
(fields_autoplaced yes)
2190
2190
+
(effects
2191
2191
+
(font
2192
2192
+
(size 1.016 1.016)
2193
2193
+
)
2194
2194
+
(justify right)
2195
2195
+
)
2196
2196
+
(uuid "264b2be9-eb02-4e49-b353-d1bde83a1d0b")
2197
2197
+
(property "Intersheetrefs" "${INTERSHEET_REFS}"
2198
2198
+
(at 162.1012 60.96 0)
2199
2199
+
(effects
2200
2200
+
(font
2201
2201
+
(size 1.27 1.27)
2202
2202
+
)
2203
2203
+
(justify right)
2204
2204
+
(hide yes)
2205
2205
+
)
2206
2206
+
)
2207
2207
+
)
2208
2208
+
(global_label "ANT_IN"
2209
2209
+
(shape input)
2210
2210
+
(at 170.18 58.42 180)
2211
2211
+
(fields_autoplaced yes)
2212
2212
+
(effects
2213
2213
+
(font
2214
2214
+
(size 1.016 1.016)
2215
2215
+
)
2216
2216
+
(justify right)
2217
2217
+
)
2218
2218
+
(uuid "326e16d5-4fee-4f0e-9ccc-76d15cf9ee8b")
2219
2219
+
(property "Intersheetrefs" "${INTERSHEET_REFS}"
2220
2220
+
(at 162.7604 58.42 0)
2221
2221
+
(effects
2222
2222
+
(font
2223
2223
+
(size 1.27 1.27)
2224
2224
+
)
2225
2225
+
(justify right)
2226
2226
+
(hide yes)
2227
2227
+
)
2228
2228
+
)
2229
2229
+
)
2230
2230
+
(global_label "OUT"
2231
2231
+
(shape output)
2232
2232
+
(at 48.26 124.46 180)
2233
2233
+
(fields_autoplaced yes)
2234
2234
+
(effects
2235
2235
+
(font
2236
2236
+
(size 1.27 1.27)
2237
2237
+
)
2238
2238
+
(justify right)
2239
2239
+
)
2240
2240
+
(uuid "3320f8f6-5a21-4d36-b3d3-99ca50a7abd6")
2241
2241
+
(property "Intersheetrefs" "${INTERSHEET_REFS}"
2242
2242
+
(at 41.6462 124.46 0)
2243
2243
+
(effects
2244
2244
+
(font
2245
2245
+
(size 1.27 1.27)
2246
2246
+
)
2247
2247
+
(justify right)
2248
2248
+
(hide yes)
2249
2249
+
)
2250
2250
+
)
2251
2251
+
)
2252
2252
+
(global_label "PWM"
2253
2253
+
(shape output)
2254
2254
+
(at 168.91 147.32 0)
2255
2255
+
(fields_autoplaced yes)
2256
2256
+
(effects
2257
2257
+
(font
2258
2258
+
(size 1.27 1.27)
2259
2259
+
)
2260
2260
+
(justify left)
2261
2261
+
)
2262
2262
+
(uuid "349071ef-b138-45cb-bfac-f09feb233242")
2263
2263
+
(property "Intersheetrefs" "${INTERSHEET_REFS}"
2264
2264
+
(at 176.068 147.32 0)
2265
2265
+
(effects
2266
2266
+
(font
2267
2267
+
(size 1.27 1.27)
2268
2268
+
)
2269
2269
+
(justify left)
2270
2270
+
(hide yes)
2271
2271
+
)
2272
2272
+
)
2273
2273
+
)
2274
2274
+
(global_label "ANT_GND"
2275
2275
+
(shape passive)
2276
2276
+
(at 52.07 67.31 90)
2277
2277
+
(fields_autoplaced yes)
2278
2278
+
(effects
2279
2279
+
(font
2280
2280
+
(size 1.27 1.27)
2281
2281
+
)
2282
2282
+
(justify left)
2283
2283
+
)
2284
2284
+
(uuid "7726172b-9cc7-4741-912c-b016cd91da88")
2285
2285
+
(property "Intersheetrefs" "${INTERSHEET_REFS}"
2286
2286
+
(at 52.07 57.2113 90)
2287
2287
+
(effects
2288
2288
+
(font
2289
2289
+
(size 1.27 1.27)
2290
2290
+
)
2291
2291
+
(justify left)
2292
2292
+
(hide yes)
2293
2293
+
)
2294
2294
+
)
2295
2295
+
)
2296
2296
+
(global_label "ANT_IN"
2297
2297
+
(shape output)
2298
2298
+
(at 55.88 67.31 90)
2299
2299
+
(fields_autoplaced yes)
2300
2300
+
(effects
2301
2301
+
(font
2302
2302
+
(size 1.27 1.27)
2303
2303
+
)
2304
2304
+
(justify left)
2305
2305
+
)
2306
2306
+
(uuid "7b4800b0-1769-4c65-957c-1e8ae21160a9")
2307
2307
+
(property "Intersheetrefs" "${INTERSHEET_REFS}"
2308
2308
+
(at 55.88 58.0352 90)
2309
2309
+
(effects
2310
2310
+
(font
2311
2311
+
(size 1.27 1.27)
2312
2312
+
)
2313
2313
+
(justify left)
2314
2314
+
(hide yes)
2315
2315
+
)
2316
2316
+
)
2317
2317
+
)
2318
2318
+
(global_label "OUT"
2319
2319
+
(shape input)
2320
2320
+
(at 172.72 106.68 180)
2321
2321
+
(fields_autoplaced yes)
2322
2322
+
(effects
2323
2323
+
(font
2324
2324
+
(size 1.016 1.016)
2325
2325
+
)
2326
2326
+
(justify right)
2327
2327
+
)
2328
2328
+
(uuid "ab65b72a-7a6b-4a82-ab46-029dfc1f2c3f")
2329
2329
+
(property "Intersheetrefs" "${INTERSHEET_REFS}"
2330
2330
+
(at 167.4292 106.68 0)
2331
2331
+
(effects
2332
2332
+
(font
2333
2333
+
(size 1.27 1.27)
2334
2334
+
)
2335
2335
+
(justify right)
2336
2336
+
(hide yes)
2337
2337
+
)
2338
2338
+
)
2339
2339
+
)
2340
2340
+
(global_label "OUT"
2341
2341
+
(shape bidirectional)
2342
2342
+
(at 97.79 72.39 0)
2343
2343
+
(fields_autoplaced yes)
2344
2344
+
(effects
2345
2345
+
(font
2346
2346
+
(size 1.27 1.27)
2347
2347
+
)
2348
2348
+
(justify left)
2349
2349
+
)
2350
2350
+
(uuid "df38e5e4-2d97-41a0-93b2-b87e8af81167")
2351
2351
+
(property "Intersheetrefs" "${INTERSHEET_REFS}"
2352
2352
+
(at 105.5151 72.39 0)
2353
2353
+
(effects
2354
2354
+
(font
2355
2355
+
(size 1.27 1.27)
2356
2356
+
)
2357
2357
+
(justify left)
2358
2358
+
(hide yes)
2359
2359
+
)
2360
2360
+
)
2361
2361
+
)
2362
2362
+
(global_label "PWM"
2363
2363
+
(shape input)
2364
2364
+
(at 113.03 124.46 0)
2365
2365
+
(fields_autoplaced yes)
2366
2366
+
(effects
2367
2367
+
(font
2368
2368
+
(size 1.27 1.27)
2369
2369
+
)
2370
2370
+
(justify left)
2371
2371
+
)
2372
2372
+
(uuid "f4d4956d-8d88-4c7a-b640-4097e63e8180")
2373
2373
+
(property "Intersheetrefs" "${INTERSHEET_REFS}"
2374
2374
+
(at 120.188 124.46 0)
2375
2375
+
(effects
2376
2376
+
(font
2377
2377
+
(size 1.27 1.27)
2378
2378
+
)
2379
2379
+
(justify left)
2380
2380
+
(hide yes)
2381
2381
+
)
2382
2382
+
)
2383
2383
+
)
2384
2384
+
(global_label "PWM"
2385
2385
+
(shape output)
2386
2386
+
(at 172.72 111.76 180)
2387
2387
+
(fields_autoplaced yes)
2388
2388
+
(effects
2389
2389
+
(font
2390
2390
+
(size 1.016 1.016)
2391
2391
+
)
2392
2392
+
(justify right)
2393
2393
+
)
2394
2394
+
(uuid "f7e30c22-9201-4c6a-b8fa-44c18feb91f5")
2395
2395
+
(property "Intersheetrefs" "${INTERSHEET_REFS}"
2396
2396
+
(at 166.9939 111.76 0)
2397
2397
+
(effects
2398
2398
+
(font
2399
2399
+
(size 1.27 1.27)
2400
2400
+
)
2401
2401
+
(justify right)
2402
2402
+
(hide yes)
2403
2403
+
)
2404
2404
+
)
2405
2405
+
)
2406
2406
+
(symbol
2407
2407
+
(lib_id "Diode:1N4148WS")
2408
2408
+
(at 110.49 82.55 180)
2409
2409
+
(unit 1)
2410
2410
+
(exclude_from_sim no)
2411
2411
+
(in_bom yes)
2412
2412
+
(on_board yes)
2413
2413
+
(dnp no)
2414
2414
+
(fields_autoplaced yes)
2415
2415
+
(uuid "0913f27a-7db3-47ba-9d37-7def78b324d6")
2416
2416
+
(property "Reference" "D2"
2417
2417
+
(at 110.49 76.2 0)
2418
2418
+
(effects
2419
2419
+
(font
2420
2420
+
(size 1.27 1.27)
2421
2421
+
)
2422
2422
+
)
2423
2423
+
)
2424
2424
+
(property "Value" "1N4148WS"
2425
2425
+
(at 110.49 78.74 0)
2426
2426
+
(effects
2427
2427
+
(font
2428
2428
+
(size 1.27 1.27)
2429
2429
+
)
2430
2430
+
)
2431
2431
+
)
2432
2432
+
(property "Footprint" "Diode_SMD:D_SOD-323"
2433
2433
+
(at 110.49 78.105 0)
2434
2434
+
(effects
2435
2435
+
(font
2436
2436
+
(size 1.27 1.27)
2437
2437
+
)
2438
2438
+
(hide yes)
2439
2439
+
)
2440
2440
+
)
2441
2441
+
(property "Datasheet" "https://www.vishay.com/docs/85751/1n4148ws.pdf"
2442
2442
+
(at 110.49 82.55 0)
2443
2443
+
(effects
2444
2444
+
(font
2445
2445
+
(size 1.27 1.27)
2446
2446
+
)
2447
2447
+
(hide yes)
2448
2448
+
)
2449
2449
+
)
2450
2450
+
(property "Description" "75V 0.15A Fast switching Diode, SOD-323"
2451
2451
+
(at 110.49 82.55 0)
2452
2452
+
(effects
2453
2453
+
(font
2454
2454
+
(size 1.27 1.27)
2455
2455
+
)
2456
2456
+
(hide yes)
2457
2457
+
)
2458
2458
+
)
2459
2459
+
(property "Sim.Device" "D"
2460
2460
+
(at 110.49 82.55 0)
2461
2461
+
(effects
2462
2462
+
(font
2463
2463
+
(size 1.27 1.27)
2464
2464
+
)
2465
2465
+
(hide yes)
2466
2466
+
)
2467
2467
+
)
2468
2468
+
(property "Sim.Pins" "1=K 2=A"
2469
2469
+
(at 110.49 82.55 0)
2470
2470
+
(effects
2471
2471
+
(font
2472
2472
+
(size 1.27 1.27)
2473
2473
+
)
2474
2474
+
(hide yes)
2475
2475
+
)
2476
2476
+
)
2477
2477
+
(pin "2"
2478
2478
+
(uuid "fde6a718-c54b-4451-aac6-d0eb33524bea")
2479
2479
+
)
2480
2480
+
(pin "1"
2481
2481
+
(uuid "594762ad-f528-4c9a-869b-50fe88c00caf")
2482
2482
+
)
2483
2483
+
(instances
2484
2484
+
(project "strike-sensor"
2485
2485
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
2486
2486
+
(reference "D2")
2487
2487
+
(unit 1)
2488
2488
+
)
2489
2489
+
)
2490
2490
+
)
2491
2491
+
)
2492
2492
+
(symbol
2493
2493
+
(lib_id "Connector:Conn_01x03_Socket")
2494
2494
+
(at 179.07 109.22 0)
2495
2495
+
(unit 1)
2496
2496
+
(exclude_from_sim no)
2497
2497
+
(in_bom yes)
2498
2498
+
(on_board yes)
2499
2499
+
(dnp no)
2500
2500
+
(fields_autoplaced yes)
2501
2501
+
(uuid "0e386ad0-e4b8-4e12-a169-43d1e88648ca")
2502
2502
+
(property "Reference" "J1"
2503
2503
+
(at 180.34 107.9499 0)
2504
2504
+
(effects
2505
2505
+
(font
2506
2506
+
(size 1.27 1.27)
2507
2507
+
)
2508
2508
+
(justify left)
2509
2509
+
)
2510
2510
+
)
2511
2511
+
(property "Value" "Conn_01x03_Socket"
2512
2512
+
(at 180.34 110.4899 0)
2513
2513
+
(effects
2514
2514
+
(font
2515
2515
+
(size 1.27 1.27)
2516
2516
+
)
2517
2517
+
(justify left)
2518
2518
+
)
2519
2519
+
)
2520
2520
+
(property "Footprint" "Connector_JST:JST_PH_S3B-PH-K_1x03_P2.00mm_Horizontal"
2521
2521
+
(at 179.07 109.22 0)
2522
2522
+
(effects
2523
2523
+
(font
2524
2524
+
(size 1.27 1.27)
2525
2525
+
)
2526
2526
+
(hide yes)
2527
2527
+
)
2528
2528
+
)
2529
2529
+
(property "Datasheet" "~"
2530
2530
+
(at 179.07 109.22 0)
2531
2531
+
(effects
2532
2532
+
(font
2533
2533
+
(size 1.27 1.27)
2534
2534
+
)
2535
2535
+
(hide yes)
2536
2536
+
)
2537
2537
+
)
2538
2538
+
(property "Description" "Generic connector, single row, 01x03, script generated"
2539
2539
+
(at 179.07 109.22 0)
2540
2540
+
(effects
2541
2541
+
(font
2542
2542
+
(size 1.27 1.27)
2543
2543
+
)
2544
2544
+
(hide yes)
2545
2545
+
)
2546
2546
+
)
2547
2547
+
(pin "3"
2548
2548
+
(uuid "dd80cad9-2c55-4407-a6af-cda12dec1bd5")
2549
2549
+
)
2550
2550
+
(pin "2"
2551
2551
+
(uuid "8a579ef2-1eb6-442f-925b-52d7e4450774")
2552
2552
+
)
2553
2553
+
(pin "1"
2554
2554
+
(uuid "a7f58ede-646f-432a-8ffc-35c0ea8e3a45")
2555
2555
+
)
2556
2556
+
(instances
2557
2557
+
(project "strike-sensor"
2558
2558
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
2559
2559
+
(reference "J1")
2560
2560
+
(unit 1)
2561
2561
+
)
2562
2562
+
)
2563
2563
+
)
2564
2564
+
)
2565
2565
+
(symbol
2566
2566
+
(lib_id "power:GND")
2567
2567
+
(at 190.5 147.32 0)
2568
2568
+
(unit 1)
2569
2569
+
(exclude_from_sim no)
2570
2570
+
(in_bom yes)
2571
2571
+
(on_board yes)
2572
2572
+
(dnp no)
2573
2573
+
(fields_autoplaced yes)
2574
2574
+
(uuid "1c925e80-e2ce-470c-a6ba-3f39a147f156")
2575
2575
+
(property "Reference" "#PWR05"
2576
2576
+
(at 190.5 153.67 0)
2577
2577
+
(effects
2578
2578
+
(font
2579
2579
+
(size 1.27 1.27)
2580
2580
+
)
2581
2581
+
(hide yes)
2582
2582
+
)
2583
2583
+
)
2584
2584
+
(property "Value" "GND"
2585
2585
+
(at 190.5 152.4 0)
2586
2586
+
(effects
2587
2587
+
(font
2588
2588
+
(size 1.27 1.27)
2589
2589
+
)
2590
2590
+
)
2591
2591
+
)
2592
2592
+
(property "Footprint" ""
2593
2593
+
(at 190.5 147.32 0)
2594
2594
+
(effects
2595
2595
+
(font
2596
2596
+
(size 1.27 1.27)
2597
2597
+
)
2598
2598
+
(hide yes)
2599
2599
+
)
2600
2600
+
)
2601
2601
+
(property "Datasheet" ""
2602
2602
+
(at 190.5 147.32 0)
2603
2603
+
(effects
2604
2604
+
(font
2605
2605
+
(size 1.27 1.27)
2606
2606
+
)
2607
2607
+
(hide yes)
2608
2608
+
)
2609
2609
+
)
2610
2610
+
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
2611
2611
+
(at 190.5 147.32 0)
2612
2612
+
(effects
2613
2613
+
(font
2614
2614
+
(size 1.27 1.27)
2615
2615
+
)
2616
2616
+
(hide yes)
2617
2617
+
)
2618
2618
+
)
2619
2619
+
(pin "1"
2620
2620
+
(uuid "7faacef0-add0-419a-8139-f2db52fcfb97")
2621
2621
+
)
2622
2622
+
(instances
2623
2623
+
(project "strike-sensor"
2624
2624
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
2625
2625
+
(reference "#PWR05")
2626
2626
+
(unit 1)
2627
2627
+
)
2628
2628
+
)
2629
2629
+
)
2630
2630
+
)
2631
2631
+
(symbol
2632
2632
+
(lib_id "power:PWR_FLAG")
2633
2633
+
(at 184.15 147.32 0)
2634
2634
+
(unit 1)
2635
2635
+
(exclude_from_sim no)
2636
2636
+
(in_bom yes)
2637
2637
+
(on_board yes)
2638
2638
+
(dnp no)
2639
2639
+
(fields_autoplaced yes)
2640
2640
+
(uuid "44b05a45-abd3-4773-9620-e1a61e6deba5")
2641
2641
+
(property "Reference" "#FLG03"
2642
2642
+
(at 184.15 145.415 0)
2643
2643
+
(effects
2644
2644
+
(font
2645
2645
+
(size 1.27 1.27)
2646
2646
+
)
2647
2647
+
(hide yes)
2648
2648
+
)
2649
2649
+
)
2650
2650
+
(property "Value" "PWR_FLAG"
2651
2651
+
(at 184.15 142.24 0)
2652
2652
+
(effects
2653
2653
+
(font
2654
2654
+
(size 1.27 1.27)
2655
2655
+
)
2656
2656
+
)
2657
2657
+
)
2658
2658
+
(property "Footprint" ""
2659
2659
+
(at 184.15 147.32 0)
2660
2660
+
(effects
2661
2661
+
(font
2662
2662
+
(size 1.27 1.27)
2663
2663
+
)
2664
2664
+
(hide yes)
2665
2665
+
)
2666
2666
+
)
2667
2667
+
(property "Datasheet" "~"
2668
2668
+
(at 184.15 147.32 0)
2669
2669
+
(effects
2670
2670
+
(font
2671
2671
+
(size 1.27 1.27)
2672
2672
+
)
2673
2673
+
(hide yes)
2674
2674
+
)
2675
2675
+
)
2676
2676
+
(property "Description" "Special symbol for telling ERC where power comes from"
2677
2677
+
(at 184.15 147.32 0)
2678
2678
+
(effects
2679
2679
+
(font
2680
2680
+
(size 1.27 1.27)
2681
2681
+
)
2682
2682
+
(hide yes)
2683
2683
+
)
2684
2684
+
)
2685
2685
+
(pin "1"
2686
2686
+
(uuid "5b9e83f4-7958-43c2-886d-d6f8ae3cfef5")
2687
2687
+
)
2688
2688
+
(instances
2689
2689
+
(project "strike-sensor"
2690
2690
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
2691
2691
+
(reference "#FLG03")
2692
2692
+
(unit 1)
2693
2693
+
)
2694
2694
+
)
2695
2695
+
)
2696
2696
+
)
2697
2697
+
(symbol
2698
2698
+
(lib_id "Device:R")
2699
2699
+
(at 90.17 124.46 270)
2700
2700
+
(unit 1)
2701
2701
+
(exclude_from_sim no)
2702
2702
+
(in_bom yes)
2703
2703
+
(on_board yes)
2704
2704
+
(dnp no)
2705
2705
+
(uuid "4db09867-e2f5-4b5e-a890-eaa8cab8f571")
2706
2706
+
(property "Reference" "R1"
2707
2707
+
(at 90.17 118.11 90)
2708
2708
+
(effects
2709
2709
+
(font
2710
2710
+
(size 1.27 1.27)
2711
2711
+
)
2712
2712
+
)
2713
2713
+
)
2714
2714
+
(property "Value" "1k"
2715
2715
+
(at 90.17 120.65 90)
2716
2716
+
(effects
2717
2717
+
(font
2718
2718
+
(size 1.27 1.27)
2719
2719
+
)
2720
2720
+
)
2721
2721
+
)
2722
2722
+
(property "Footprint" "Resistor_SMD:R_0603_1608Metric"
2723
2723
+
(at 90.17 122.682 90)
2724
2724
+
(effects
2725
2725
+
(font
2726
2726
+
(size 1.27 1.27)
2727
2727
+
)
2728
2728
+
(hide yes)
2729
2729
+
)
2730
2730
+
)
2731
2731
+
(property "Datasheet" "~"
2732
2732
+
(at 90.17 124.46 0)
2733
2733
+
(effects
2734
2734
+
(font
2735
2735
+
(size 1.27 1.27)
2736
2736
+
)
2737
2737
+
(hide yes)
2738
2738
+
)
2739
2739
+
)
2740
2740
+
(property "Description" "Resistor"
2741
2741
+
(at 90.17 124.46 0)
2742
2742
+
(effects
2743
2743
+
(font
2744
2744
+
(size 1.27 1.27)
2745
2745
+
)
2746
2746
+
(hide yes)
2747
2747
+
)
2748
2748
+
)
2749
2749
+
(property "Sim.Device" "R"
2750
2750
+
(at 90.17 124.46 0)
2751
2751
+
(effects
2752
2752
+
(font
2753
2753
+
(size 1.27 1.27)
2754
2754
+
)
2755
2755
+
(hide yes)
2756
2756
+
)
2757
2757
+
)
2758
2758
+
(property "Sim.Pins" "1=+ 2=-"
2759
2759
+
(at 90.17 124.46 0)
2760
2760
+
(effects
2761
2761
+
(font
2762
2762
+
(size 1.27 1.27)
2763
2763
+
)
2764
2764
+
(hide yes)
2765
2765
+
)
2766
2766
+
)
2767
2767
+
(pin "2"
2768
2768
+
(uuid "b4031fff-ddcd-4830-b7bf-57a55ef5f6f1")
2769
2769
+
)
2770
2770
+
(pin "1"
2771
2771
+
(uuid "c4dd26a5-16cd-48f0-8cc4-29f319686467")
2772
2772
+
)
2773
2773
+
(instances
2774
2774
+
(project "strike-sensor"
2775
2775
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
2776
2776
+
(reference "R1")
2777
2777
+
(unit 1)
2778
2778
+
)
2779
2779
+
)
2780
2780
+
)
2781
2781
+
)
2782
2782
+
(symbol
2783
2783
+
(lib_id "Device:R")
2784
2784
+
(at 81.28 57.15 270)
2785
2785
+
(unit 1)
2786
2786
+
(exclude_from_sim no)
2787
2787
+
(in_bom yes)
2788
2788
+
(on_board yes)
2789
2789
+
(dnp no)
2790
2790
+
(fields_autoplaced yes)
2791
2791
+
(uuid "541ea003-c811-46ed-8c1b-4293ef78bded")
2792
2792
+
(property "Reference" "R5"
2793
2793
+
(at 81.28 50.8 90)
2794
2794
+
(effects
2795
2795
+
(font
2796
2796
+
(size 1.27 1.27)
2797
2797
+
)
2798
2798
+
)
2799
2799
+
)
2800
2800
+
(property "Value" "100k"
2801
2801
+
(at 81.28 53.34 90)
2802
2802
+
(effects
2803
2803
+
(font
2804
2804
+
(size 1.27 1.27)
2805
2805
+
)
2806
2806
+
)
2807
2807
+
)
2808
2808
+
(property "Footprint" "Resistor_SMD:R_0603_1608Metric"
2809
2809
+
(at 81.28 55.372 90)
2810
2810
+
(effects
2811
2811
+
(font
2812
2812
+
(size 1.27 1.27)
2813
2813
+
)
2814
2814
+
(hide yes)
2815
2815
+
)
2816
2816
+
)
2817
2817
+
(property "Datasheet" "~"
2818
2818
+
(at 81.28 57.15 0)
2819
2819
+
(effects
2820
2820
+
(font
2821
2821
+
(size 1.27 1.27)
2822
2822
+
)
2823
2823
+
(hide yes)
2824
2824
+
)
2825
2825
+
)
2826
2826
+
(property "Description" "Resistor"
2827
2827
+
(at 81.28 57.15 0)
2828
2828
+
(effects
2829
2829
+
(font
2830
2830
+
(size 1.27 1.27)
2831
2831
+
)
2832
2832
+
(hide yes)
2833
2833
+
)
2834
2834
+
)
2835
2835
+
(pin "2"
2836
2836
+
(uuid "e1b02d9e-22ac-412a-a66c-5ea774100173")
2837
2837
+
)
2838
2838
+
(pin "1"
2839
2839
+
(uuid "b04956f0-cc8e-47bc-9151-018a8a1c010a")
2840
2840
+
)
2841
2841
+
(instances
2842
2842
+
(project "strike-sensor"
2843
2843
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
2844
2844
+
(reference "R5")
2845
2845
+
(unit 1)
2846
2846
+
)
2847
2847
+
)
2848
2848
+
)
2849
2849
+
)
2850
2850
+
(symbol
2851
2851
+
(lib_id "power:GND")
2852
2852
+
(at 81.28 144.78 0)
2853
2853
+
(unit 1)
2854
2854
+
(exclude_from_sim no)
2855
2855
+
(in_bom yes)
2856
2856
+
(on_board yes)
2857
2857
+
(dnp no)
2858
2858
+
(fields_autoplaced yes)
2859
2859
+
(uuid "6fe7be5e-6cde-4834-bc4f-fc7386a5e70d")
2860
2860
+
(property "Reference" "#PWR03"
2861
2861
+
(at 81.28 151.13 0)
2862
2862
+
(effects
2863
2863
+
(font
2864
2864
+
(size 1.27 1.27)
2865
2865
+
)
2866
2866
+
(hide yes)
2867
2867
+
)
2868
2868
+
)
2869
2869
+
(property "Value" "GND"
2870
2870
+
(at 81.28 149.86 0)
2871
2871
+
(effects
2872
2872
+
(font
2873
2873
+
(size 1.27 1.27)
2874
2874
+
)
2875
2875
+
)
2876
2876
+
)
2877
2877
+
(property "Footprint" ""
2878
2878
+
(at 81.28 144.78 0)
2879
2879
+
(effects
2880
2880
+
(font
2881
2881
+
(size 1.27 1.27)
2882
2882
+
)
2883
2883
+
(hide yes)
2884
2884
+
)
2885
2885
+
)
2886
2886
+
(property "Datasheet" ""
2887
2887
+
(at 81.28 144.78 0)
2888
2888
+
(effects
2889
2889
+
(font
2890
2890
+
(size 1.27 1.27)
2891
2891
+
)
2892
2892
+
(hide yes)
2893
2893
+
)
2894
2894
+
)
2895
2895
+
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
2896
2896
+
(at 81.28 144.78 0)
2897
2897
+
(effects
2898
2898
+
(font
2899
2899
+
(size 1.27 1.27)
2900
2900
+
)
2901
2901
+
(hide yes)
2902
2902
+
)
2903
2903
+
)
2904
2904
+
(pin "1"
2905
2905
+
(uuid "de99bfd9-c92b-4cd0-bde6-98d574c0fc6b")
2906
2906
+
)
2907
2907
+
(instances
2908
2908
+
(project "strike-sensor"
2909
2909
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
2910
2910
+
(reference "#PWR03")
2911
2911
+
(unit 1)
2912
2912
+
)
2913
2913
+
)
2914
2914
+
)
2915
2915
+
)
2916
2916
+
(symbol
2917
2917
+
(lib_id "power:GND")
2918
2918
+
(at 163.83 109.22 0)
2919
2919
+
(unit 1)
2920
2920
+
(exclude_from_sim no)
2921
2921
+
(in_bom yes)
2922
2922
+
(on_board yes)
2923
2923
+
(dnp no)
2924
2924
+
(fields_autoplaced yes)
2925
2925
+
(uuid "84c9504a-be66-4384-977c-8ead466a6c0c")
2926
2926
+
(property "Reference" "#PWR02"
2927
2927
+
(at 163.83 115.57 0)
2928
2928
+
(effects
2929
2929
+
(font
2930
2930
+
(size 1.27 1.27)
2931
2931
+
)
2932
2932
+
(hide yes)
2933
2933
+
)
2934
2934
+
)
2935
2935
+
(property "Value" "GND"
2936
2936
+
(at 163.83 114.3 0)
2937
2937
+
(effects
2938
2938
+
(font
2939
2939
+
(size 1.27 1.27)
2940
2940
+
)
2941
2941
+
)
2942
2942
+
)
2943
2943
+
(property "Footprint" ""
2944
2944
+
(at 163.83 109.22 0)
2945
2945
+
(effects
2946
2946
+
(font
2947
2947
+
(size 1.27 1.27)
2948
2948
+
)
2949
2949
+
(hide yes)
2950
2950
+
)
2951
2951
+
)
2952
2952
+
(property "Datasheet" ""
2953
2953
+
(at 163.83 109.22 0)
2954
2954
+
(effects
2955
2955
+
(font
2956
2956
+
(size 1.27 1.27)
2957
2957
+
)
2958
2958
+
(hide yes)
2959
2959
+
)
2960
2960
+
)
2961
2961
+
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
2962
2962
+
(at 163.83 109.22 0)
2963
2963
+
(effects
2964
2964
+
(font
2965
2965
+
(size 1.27 1.27)
2966
2966
+
)
2967
2967
+
(hide yes)
2968
2968
+
)
2969
2969
+
)
2970
2970
+
(pin "1"
2971
2971
+
(uuid "4e8a9597-9c8f-4e8d-8995-2cce61f11d18")
2972
2972
+
)
2973
2973
+
(instances
2974
2974
+
(project "strike-sensor"
2975
2975
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
2976
2976
+
(reference "#PWR02")
2977
2977
+
(unit 1)
2978
2978
+
)
2979
2979
+
)
2980
2980
+
)
2981
2981
+
)
2982
2982
+
(symbol
2983
2983
+
(lib_id "Device:C_Polarized")
2984
2984
+
(at 63.5 132.08 0)
2985
2985
+
(unit 1)
2986
2986
+
(exclude_from_sim no)
2987
2987
+
(in_bom yes)
2988
2988
+
(on_board yes)
2989
2989
+
(dnp no)
2990
2990
+
(fields_autoplaced yes)
2991
2991
+
(uuid "87b5f4bc-b75d-45c1-bef4-8b1e6d0882f9")
2992
2992
+
(property "Reference" "C2"
2993
2993
+
(at 67.31 129.9209 0)
2994
2994
+
(effects
2995
2995
+
(font
2996
2996
+
(size 1.27 1.27)
2997
2997
+
)
2998
2998
+
(justify left)
2999
2999
+
)
3000
3000
+
)
3001
3001
+
(property "Value" "16v 100uF"
3002
3002
+
(at 67.31 132.4609 0)
3003
3003
+
(effects
3004
3004
+
(font
3005
3005
+
(size 1.27 1.27)
3006
3006
+
)
3007
3007
+
(justify left)
3008
3008
+
)
3009
3009
+
)
3010
3010
+
(property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-6032-20_AVX-F"
3011
3011
+
(at 64.4652 135.89 0)
3012
3012
+
(effects
3013
3013
+
(font
3014
3014
+
(size 1.27 1.27)
3015
3015
+
)
3016
3016
+
(hide yes)
3017
3017
+
)
3018
3018
+
)
3019
3019
+
(property "Datasheet" "~"
3020
3020
+
(at 63.5 132.08 0)
3021
3021
+
(effects
3022
3022
+
(font
3023
3023
+
(size 1.27 1.27)
3024
3024
+
)
3025
3025
+
(hide yes)
3026
3026
+
)
3027
3027
+
)
3028
3028
+
(property "Description" "Polarized capacitor"
3029
3029
+
(at 63.5 132.08 0)
3030
3030
+
(effects
3031
3031
+
(font
3032
3032
+
(size 1.27 1.27)
3033
3033
+
)
3034
3034
+
(hide yes)
3035
3035
+
)
3036
3036
+
)
3037
3037
+
(pin "2"
3038
3038
+
(uuid "6c96142b-6433-4df2-8ae2-e24aca3c9196")
3039
3039
+
)
3040
3040
+
(pin "1"
3041
3041
+
(uuid "36632f00-c2cf-4a84-a39c-69daf8434941")
3042
3042
+
)
3043
3043
+
(instances
3044
3044
+
(project "strike-sensor"
3045
3045
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3046
3046
+
(reference "C2")
3047
3047
+
(unit 1)
3048
3048
+
)
3049
3049
+
)
3050
3050
+
)
3051
3051
+
)
3052
3052
+
(symbol
3053
3053
+
(lib_id "Device:L")
3054
3054
+
(at 52.07 78.74 0)
3055
3055
+
(mirror y)
3056
3056
+
(unit 1)
3057
3057
+
(exclude_from_sim no)
3058
3058
+
(in_bom yes)
3059
3059
+
(on_board yes)
3060
3060
+
(dnp no)
3061
3061
+
(uuid "90973898-c2f8-4764-b0aa-27ff7a11c99d")
3062
3062
+
(property "Reference" "L1"
3063
3063
+
(at 50.8 77.4699 0)
3064
3064
+
(effects
3065
3065
+
(font
3066
3066
+
(size 1.27 1.27)
3067
3067
+
)
3068
3068
+
(justify left)
3069
3069
+
)
3070
3070
+
)
3071
3071
+
(property "Value" "150uH"
3072
3072
+
(at 50.8 80.0099 0)
3073
3073
+
(effects
3074
3074
+
(font
3075
3075
+
(size 1.27 1.27)
3076
3076
+
)
3077
3077
+
(justify left)
3078
3078
+
)
3079
3079
+
)
3080
3080
+
(property "Footprint" "Inductor_SMD:L_0805_2012Metric"
3081
3081
+
(at 52.07 78.74 0)
3082
3082
+
(effects
3083
3083
+
(font
3084
3084
+
(size 1.27 1.27)
3085
3085
+
)
3086
3086
+
(hide yes)
3087
3087
+
)
3088
3088
+
)
3089
3089
+
(property "Datasheet" "~"
3090
3090
+
(at 52.07 78.74 0)
3091
3091
+
(effects
3092
3092
+
(font
3093
3093
+
(size 1.27 1.27)
3094
3094
+
)
3095
3095
+
(hide yes)
3096
3096
+
)
3097
3097
+
)
3098
3098
+
(property "Description" "Inductor"
3099
3099
+
(at 52.07 78.74 0)
3100
3100
+
(effects
3101
3101
+
(font
3102
3102
+
(size 1.27 1.27)
3103
3103
+
)
3104
3104
+
(hide yes)
3105
3105
+
)
3106
3106
+
)
3107
3107
+
(pin "2"
3108
3108
+
(uuid "4abc05fa-5dc2-4723-ac3d-f201bf764d71")
3109
3109
+
)
3110
3110
+
(pin "1"
3111
3111
+
(uuid "e88366b0-e205-4a94-8c5d-0da4c263a647")
3112
3112
+
)
3113
3113
+
(instances
3114
3114
+
(project "strike-sensor"
3115
3115
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3116
3116
+
(reference "L1")
3117
3117
+
(unit 1)
3118
3118
+
)
3119
3119
+
)
3120
3120
+
)
3121
3121
+
)
3122
3122
+
(symbol
3123
3123
+
(lib_id "Connector:Screw_Terminal_01x02")
3124
3124
+
(at 176.53 58.42 0)
3125
3125
+
(unit 1)
3126
3126
+
(exclude_from_sim no)
3127
3127
+
(in_bom yes)
3128
3128
+
(on_board yes)
3129
3129
+
(dnp no)
3130
3130
+
(fields_autoplaced yes)
3131
3131
+
(uuid "92895083-61b0-4ee6-ba51-eeeb2e79e54e")
3132
3132
+
(property "Reference" "J2"
3133
3133
+
(at 179.07 58.4199 0)
3134
3134
+
(effects
3135
3135
+
(font
3136
3136
+
(size 1.27 1.27)
3137
3137
+
)
3138
3138
+
(justify left)
3139
3139
+
)
3140
3140
+
)
3141
3141
+
(property "Value" "Screw_Terminal_01x02"
3142
3142
+
(at 179.07 60.9599 0)
3143
3143
+
(effects
3144
3144
+
(font
3145
3145
+
(size 1.27 1.27)
3146
3146
+
)
3147
3147
+
(justify left)
3148
3148
+
)
3149
3149
+
)
3150
3150
+
(property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal"
3151
3151
+
(at 176.53 58.42 0)
3152
3152
+
(effects
3153
3153
+
(font
3154
3154
+
(size 1.27 1.27)
3155
3155
+
)
3156
3156
+
(hide yes)
3157
3157
+
)
3158
3158
+
)
3159
3159
+
(property "Datasheet" "~"
3160
3160
+
(at 176.53 58.42 0)
3161
3161
+
(effects
3162
3162
+
(font
3163
3163
+
(size 1.27 1.27)
3164
3164
+
)
3165
3165
+
(hide yes)
3166
3166
+
)
3167
3167
+
)
3168
3168
+
(property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"
3169
3169
+
(at 176.53 58.42 0)
3170
3170
+
(effects
3171
3171
+
(font
3172
3172
+
(size 1.27 1.27)
3173
3173
+
)
3174
3174
+
(hide yes)
3175
3175
+
)
3176
3176
+
)
3177
3177
+
(pin "1"
3178
3178
+
(uuid "119f376e-2586-4a82-b19a-3ec407acfd3b")
3179
3179
+
)
3180
3180
+
(pin "2"
3181
3181
+
(uuid "4fb0f22e-3e74-4a84-9dc7-6afd2e5622fa")
3182
3182
+
)
3183
3183
+
(instances
3184
3184
+
(project "strike-sensor"
3185
3185
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3186
3186
+
(reference "J2")
3187
3187
+
(unit 1)
3188
3188
+
)
3189
3189
+
)
3190
3190
+
)
3191
3191
+
)
3192
3192
+
(symbol
3193
3193
+
(lib_id "power:GND")
3194
3194
+
(at 123.19 85.09 0)
3195
3195
+
(unit 1)
3196
3196
+
(exclude_from_sim no)
3197
3197
+
(in_bom yes)
3198
3198
+
(on_board yes)
3199
3199
+
(dnp no)
3200
3200
+
(fields_autoplaced yes)
3201
3201
+
(uuid "945108f6-6bce-472e-8e87-e27e48c55492")
3202
3202
+
(property "Reference" "#PWR01"
3203
3203
+
(at 123.19 91.44 0)
3204
3204
+
(effects
3205
3205
+
(font
3206
3206
+
(size 1.27 1.27)
3207
3207
+
)
3208
3208
+
(hide yes)
3209
3209
+
)
3210
3210
+
)
3211
3211
+
(property "Value" "GND"
3212
3212
+
(at 123.19 90.17 0)
3213
3213
+
(effects
3214
3214
+
(font
3215
3215
+
(size 1.27 1.27)
3216
3216
+
)
3217
3217
+
)
3218
3218
+
)
3219
3219
+
(property "Footprint" ""
3220
3220
+
(at 123.19 85.09 0)
3221
3221
+
(effects
3222
3222
+
(font
3223
3223
+
(size 1.27 1.27)
3224
3224
+
)
3225
3225
+
(hide yes)
3226
3226
+
)
3227
3227
+
)
3228
3228
+
(property "Datasheet" ""
3229
3229
+
(at 123.19 85.09 0)
3230
3230
+
(effects
3231
3231
+
(font
3232
3232
+
(size 1.27 1.27)
3233
3233
+
)
3234
3234
+
(hide yes)
3235
3235
+
)
3236
3236
+
)
3237
3237
+
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
3238
3238
+
(at 123.19 85.09 0)
3239
3239
+
(effects
3240
3240
+
(font
3241
3241
+
(size 1.27 1.27)
3242
3242
+
)
3243
3243
+
(hide yes)
3244
3244
+
)
3245
3245
+
)
3246
3246
+
(pin "1"
3247
3247
+
(uuid "06283041-4286-4731-95b8-136d8dcb23a9")
3248
3248
+
)
3249
3249
+
(instances
3250
3250
+
(project "strike-sensor"
3251
3251
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3252
3252
+
(reference "#PWR01")
3253
3253
+
(unit 1)
3254
3254
+
)
3255
3255
+
)
3256
3256
+
)
3257
3257
+
)
3258
3258
+
(symbol
3259
3259
+
(lib_id "Device:C")
3260
3260
+
(at 91.44 78.74 180)
3261
3261
+
(unit 1)
3262
3262
+
(exclude_from_sim no)
3263
3263
+
(in_bom yes)
3264
3264
+
(on_board yes)
3265
3265
+
(dnp no)
3266
3266
+
(fields_autoplaced yes)
3267
3267
+
(uuid "997e48d1-4b4e-4528-a5d2-0a4d1e133219")
3268
3268
+
(property "Reference" "C3"
3269
3269
+
(at 95.25 77.4699 0)
3270
3270
+
(effects
3271
3271
+
(font
3272
3272
+
(size 1.27 1.27)
3273
3273
+
)
3274
3274
+
(justify right)
3275
3275
+
)
3276
3276
+
)
3277
3277
+
(property "Value" "100nF"
3278
3278
+
(at 95.25 80.0099 0)
3279
3279
+
(effects
3280
3280
+
(font
3281
3281
+
(size 1.27 1.27)
3282
3282
+
)
3283
3283
+
(justify right)
3284
3284
+
)
3285
3285
+
)
3286
3286
+
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric"
3287
3287
+
(at 90.4748 74.93 0)
3288
3288
+
(effects
3289
3289
+
(font
3290
3290
+
(size 1.27 1.27)
3291
3291
+
)
3292
3292
+
(hide yes)
3293
3293
+
)
3294
3294
+
)
3295
3295
+
(property "Datasheet" "~"
3296
3296
+
(at 91.44 78.74 0)
3297
3297
+
(effects
3298
3298
+
(font
3299
3299
+
(size 1.27 1.27)
3300
3300
+
)
3301
3301
+
(hide yes)
3302
3302
+
)
3303
3303
+
)
3304
3304
+
(property "Description" "Unpolarized capacitor"
3305
3305
+
(at 91.44 78.74 0)
3306
3306
+
(effects
3307
3307
+
(font
3308
3308
+
(size 1.27 1.27)
3309
3309
+
)
3310
3310
+
(hide yes)
3311
3311
+
)
3312
3312
+
)
3313
3313
+
(pin "2"
3314
3314
+
(uuid "e7179bfe-0ff1-4d0e-a85b-0851fe7b000a")
3315
3315
+
)
3316
3316
+
(pin "1"
3317
3317
+
(uuid "35fede01-40d7-424b-8421-d50b9d1c6691")
3318
3318
+
)
3319
3319
+
(instances
3320
3320
+
(project "strike-sensor"
3321
3321
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3322
3322
+
(reference "C3")
3323
3323
+
(unit 1)
3324
3324
+
)
3325
3325
+
)
3326
3326
+
)
3327
3327
+
)
3328
3328
+
(symbol
3329
3329
+
(lib_id "TA7642:TA7642")
3330
3330
+
(at 81.28 72.39 0)
3331
3331
+
(unit 1)
3332
3332
+
(exclude_from_sim no)
3333
3333
+
(in_bom yes)
3334
3334
+
(on_board yes)
3335
3335
+
(dnp no)
3336
3336
+
(fields_autoplaced yes)
3337
3337
+
(uuid "9cd22f01-f021-48e6-8863-3ccc73265355")
3338
3338
+
(property "Reference" "IC1"
3339
3339
+
(at 81.28 62.23 0)
3340
3340
+
(effects
3341
3341
+
(font
3342
3342
+
(size 1.27 1.27)
3343
3343
+
)
3344
3344
+
)
3345
3345
+
)
3346
3346
+
(property "Value" "TA7642"
3347
3347
+
(at 81.28 64.77 0)
3348
3348
+
(effects
3349
3349
+
(font
3350
3350
+
(size 1.27 1.27)
3351
3351
+
)
3352
3352
+
)
3353
3353
+
)
3354
3354
+
(property "Footprint" "TA7642:TO-92AP"
3355
3355
+
(at 81.28 72.39 0)
3356
3356
+
(effects
3357
3357
+
(font
3358
3358
+
(size 1.27 1.27)
3359
3359
+
)
3360
3360
+
(justify bottom)
3361
3361
+
(hide yes)
3362
3362
+
)
3363
3363
+
)
3364
3364
+
(property "Datasheet" ""
3365
3365
+
(at 81.28 72.39 0)
3366
3366
+
(effects
3367
3367
+
(font
3368
3368
+
(size 1.27 1.27)
3369
3369
+
)
3370
3370
+
(hide yes)
3371
3371
+
)
3372
3372
+
)
3373
3373
+
(property "Description" ""
3374
3374
+
(at 81.28 72.39 0)
3375
3375
+
(effects
3376
3376
+
(font
3377
3377
+
(size 1.27 1.27)
3378
3378
+
)
3379
3379
+
(hide yes)
3380
3380
+
)
3381
3381
+
)
3382
3382
+
(property "MF" "cic"
3383
3383
+
(at 81.28 72.39 0)
3384
3384
+
(effects
3385
3385
+
(font
3386
3386
+
(size 1.27 1.27)
3387
3387
+
)
3388
3388
+
(justify bottom)
3389
3389
+
(hide yes)
3390
3390
+
)
3391
3391
+
)
3392
3392
+
(property "Description_1" "CIC TA-7642 Radio IC"
3393
3393
+
(at 81.28 72.39 0)
3394
3394
+
(effects
3395
3395
+
(font
3396
3396
+
(size 1.27 1.27)
3397
3397
+
)
3398
3398
+
(justify bottom)
3399
3399
+
(hide yes)
3400
3400
+
)
3401
3401
+
)
3402
3402
+
(property "Package" "None"
3403
3403
+
(at 81.28 72.39 0)
3404
3404
+
(effects
3405
3405
+
(font
3406
3406
+
(size 1.27 1.27)
3407
3407
+
)
3408
3408
+
(justify bottom)
3409
3409
+
(hide yes)
3410
3410
+
)
3411
3411
+
)
3412
3412
+
(property "Price" "None"
3413
3413
+
(at 81.28 72.39 0)
3414
3414
+
(effects
3415
3415
+
(font
3416
3416
+
(size 1.27 1.27)
3417
3417
+
)
3418
3418
+
(justify bottom)
3419
3419
+
(hide yes)
3420
3420
+
)
3421
3421
+
)
3422
3422
+
(property "SnapEDA_Link" "https://www.snapeda.com/parts/TA-7642/Cicoil/view-part/?ref=snap"
3423
3423
+
(at 81.28 72.39 0)
3424
3424
+
(effects
3425
3425
+
(font
3426
3426
+
(size 1.27 1.27)
3427
3427
+
)
3428
3428
+
(justify bottom)
3429
3429
+
(hide yes)
3430
3430
+
)
3431
3431
+
)
3432
3432
+
(property "MP" "TA-7642"
3433
3433
+
(at 81.28 72.39 0)
3434
3434
+
(effects
3435
3435
+
(font
3436
3436
+
(size 1.27 1.27)
3437
3437
+
)
3438
3438
+
(justify bottom)
3439
3439
+
(hide yes)
3440
3440
+
)
3441
3441
+
)
3442
3442
+
(property "Availability" "Not in stock"
3443
3443
+
(at 81.28 72.39 0)
3444
3444
+
(effects
3445
3445
+
(font
3446
3446
+
(size 1.27 1.27)
3447
3447
+
)
3448
3448
+
(justify bottom)
3449
3449
+
(hide yes)
3450
3450
+
)
3451
3451
+
)
3452
3452
+
(property "Check_prices" "https://www.snapeda.com/parts/TA-7642/Cicoil/view-part/?ref=eda"
3453
3453
+
(at 81.28 72.39 0)
3454
3454
+
(effects
3455
3455
+
(font
3456
3456
+
(size 1.27 1.27)
3457
3457
+
)
3458
3458
+
(justify bottom)
3459
3459
+
(hide yes)
3460
3460
+
)
3461
3461
+
)
3462
3462
+
(pin "3"
3463
3463
+
(uuid "60d76991-c1d1-4762-aa0c-f1fe7c64ad6d")
3464
3464
+
)
3465
3465
+
(pin "1"
3466
3466
+
(uuid "bcbaa156-fc79-4c27-adab-01bcc4856171")
3467
3467
+
)
3468
3468
+
(pin "2"
3469
3469
+
(uuid "958b78db-f925-48c1-acaa-4f7cc8571e52")
3470
3470
+
)
3471
3471
+
(instances
3472
3472
+
(project "strike-sensor"
3473
3473
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3474
3474
+
(reference "IC1")
3475
3475
+
(unit 1)
3476
3476
+
)
3477
3477
+
)
3478
3478
+
)
3479
3479
+
)
3480
3480
+
(symbol
3481
3481
+
(lib_id "Device:C_Polarized")
3482
3482
+
(at 81.28 132.08 0)
3483
3483
+
(unit 1)
3484
3484
+
(exclude_from_sim no)
3485
3485
+
(in_bom yes)
3486
3486
+
(on_board yes)
3487
3487
+
(dnp no)
3488
3488
+
(fields_autoplaced yes)
3489
3489
+
(uuid "c5e34dfe-bc4e-456c-8b07-a9f522e94f1f")
3490
3490
+
(property "Reference" "C1"
3491
3491
+
(at 85.09 129.9209 0)
3492
3492
+
(effects
3493
3493
+
(font
3494
3494
+
(size 1.27 1.27)
3495
3495
+
)
3496
3496
+
(justify left)
3497
3497
+
)
3498
3498
+
)
3499
3499
+
(property "Value" "16v 100uF"
3500
3500
+
(at 85.09 132.4609 0)
3501
3501
+
(effects
3502
3502
+
(font
3503
3503
+
(size 1.27 1.27)
3504
3504
+
)
3505
3505
+
(justify left)
3506
3506
+
)
3507
3507
+
)
3508
3508
+
(property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-6032-20_AVX-F"
3509
3509
+
(at 82.2452 135.89 0)
3510
3510
+
(effects
3511
3511
+
(font
3512
3512
+
(size 1.27 1.27)
3513
3513
+
)
3514
3514
+
(hide yes)
3515
3515
+
)
3516
3516
+
)
3517
3517
+
(property "Datasheet" "~"
3518
3518
+
(at 81.28 132.08 0)
3519
3519
+
(effects
3520
3520
+
(font
3521
3521
+
(size 1.27 1.27)
3522
3522
+
)
3523
3523
+
(hide yes)
3524
3524
+
)
3525
3525
+
)
3526
3526
+
(property "Description" "Polarized capacitor"
3527
3527
+
(at 81.28 132.08 0)
3528
3528
+
(effects
3529
3529
+
(font
3530
3530
+
(size 1.27 1.27)
3531
3531
+
)
3532
3532
+
(hide yes)
3533
3533
+
)
3534
3534
+
)
3535
3535
+
(pin "2"
3536
3536
+
(uuid "49520cb6-d23c-4a10-9620-86dbe8aefb26")
3537
3537
+
)
3538
3538
+
(pin "1"
3539
3539
+
(uuid "903b9db9-c5eb-463f-8cd7-153b5092fd94")
3540
3540
+
)
3541
3541
+
(instances
3542
3542
+
(project "strike-sensor"
3543
3543
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3544
3544
+
(reference "C1")
3545
3545
+
(unit 1)
3546
3546
+
)
3547
3547
+
)
3548
3548
+
)
3549
3549
+
)
3550
3550
+
(symbol
3551
3551
+
(lib_id "Device:C")
3552
3552
+
(at 64.77 72.39 270)
3553
3553
+
(unit 1)
3554
3554
+
(exclude_from_sim no)
3555
3555
+
(in_bom yes)
3556
3556
+
(on_board yes)
3557
3557
+
(dnp no)
3558
3558
+
(fields_autoplaced yes)
3559
3559
+
(uuid "d74971cb-66b1-441f-b721-87219695adf9")
3560
3560
+
(property "Reference" "C4"
3561
3561
+
(at 64.77 64.77 90)
3562
3562
+
(effects
3563
3563
+
(font
3564
3564
+
(size 1.27 1.27)
3565
3565
+
)
3566
3566
+
)
3567
3567
+
)
3568
3568
+
(property "Value" "100nF"
3569
3569
+
(at 64.77 67.31 90)
3570
3570
+
(effects
3571
3571
+
(font
3572
3572
+
(size 1.27 1.27)
3573
3573
+
)
3574
3574
+
)
3575
3575
+
)
3576
3576
+
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric"
3577
3577
+
(at 60.96 73.3552 0)
3578
3578
+
(effects
3579
3579
+
(font
3580
3580
+
(size 1.27 1.27)
3581
3581
+
)
3582
3582
+
(hide yes)
3583
3583
+
)
3584
3584
+
)
3585
3585
+
(property "Datasheet" "~"
3586
3586
+
(at 64.77 72.39 0)
3587
3587
+
(effects
3588
3588
+
(font
3589
3589
+
(size 1.27 1.27)
3590
3590
+
)
3591
3591
+
(hide yes)
3592
3592
+
)
3593
3593
+
)
3594
3594
+
(property "Description" "Unpolarized capacitor"
3595
3595
+
(at 64.77 72.39 0)
3596
3596
+
(effects
3597
3597
+
(font
3598
3598
+
(size 1.27 1.27)
3599
3599
+
)
3600
3600
+
(hide yes)
3601
3601
+
)
3602
3602
+
)
3603
3603
+
(pin "2"
3604
3604
+
(uuid "f19d2c7d-5057-4a0d-ac3e-556b02e835c9")
3605
3605
+
)
3606
3606
+
(pin "1"
3607
3607
+
(uuid "7c10b897-5eba-4476-809d-067574db45ad")
3608
3608
+
)
3609
3609
+
(instances
3610
3610
+
(project "strike-sensor"
3611
3611
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3612
3612
+
(reference "C4")
3613
3613
+
(unit 1)
3614
3614
+
)
3615
3615
+
)
3616
3616
+
)
3617
3617
+
)
3618
3618
+
(symbol
3619
3619
+
(lib_id "power:PWR_FLAG")
3620
3620
+
(at 163.83 147.32 0)
3621
3621
+
(unit 1)
3622
3622
+
(exclude_from_sim no)
3623
3623
+
(in_bom yes)
3624
3624
+
(on_board yes)
3625
3625
+
(dnp no)
3626
3626
+
(fields_autoplaced yes)
3627
3627
+
(uuid "e016a6dd-d631-4b7b-8554-dbefd9bc82e9")
3628
3628
+
(property "Reference" "#FLG01"
3629
3629
+
(at 163.83 145.415 0)
3630
3630
+
(effects
3631
3631
+
(font
3632
3632
+
(size 1.27 1.27)
3633
3633
+
)
3634
3634
+
(hide yes)
3635
3635
+
)
3636
3636
+
)
3637
3637
+
(property "Value" "PWR_FLAG"
3638
3638
+
(at 163.83 142.24 0)
3639
3639
+
(effects
3640
3640
+
(font
3641
3641
+
(size 1.27 1.27)
3642
3642
+
)
3643
3643
+
)
3644
3644
+
)
3645
3645
+
(property "Footprint" ""
3646
3646
+
(at 163.83 147.32 0)
3647
3647
+
(effects
3648
3648
+
(font
3649
3649
+
(size 1.27 1.27)
3650
3650
+
)
3651
3651
+
(hide yes)
3652
3652
+
)
3653
3653
+
)
3654
3654
+
(property "Datasheet" "~"
3655
3655
+
(at 163.83 147.32 0)
3656
3656
+
(effects
3657
3657
+
(font
3658
3658
+
(size 1.27 1.27)
3659
3659
+
)
3660
3660
+
(hide yes)
3661
3661
+
)
3662
3662
+
)
3663
3663
+
(property "Description" "Special symbol for telling ERC where power comes from"
3664
3664
+
(at 163.83 147.32 0)
3665
3665
+
(effects
3666
3666
+
(font
3667
3667
+
(size 1.27 1.27)
3668
3668
+
)
3669
3669
+
(hide yes)
3670
3670
+
)
3671
3671
+
)
3672
3672
+
(pin "1"
3673
3673
+
(uuid "9fb5ccf5-7016-4cca-b3c5-5dd200dd1071")
3674
3674
+
)
3675
3675
+
(instances
3676
3676
+
(project "strike-sensor"
3677
3677
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3678
3678
+
(reference "#FLG01")
3679
3679
+
(unit 1)
3680
3680
+
)
3681
3681
+
)
3682
3682
+
)
3683
3683
+
)
3684
3684
+
(symbol
3685
3685
+
(lib_id "Device:R")
3686
3686
+
(at 97.79 132.08 0)
3687
3687
+
(unit 1)
3688
3688
+
(exclude_from_sim no)
3689
3689
+
(in_bom yes)
3690
3690
+
(on_board yes)
3691
3691
+
(dnp no)
3692
3692
+
(fields_autoplaced yes)
3693
3693
+
(uuid "efb6e24d-855a-4856-accd-99c67ede4d37")
3694
3694
+
(property "Reference" "R4"
3695
3695
+
(at 100.33 130.8099 0)
3696
3696
+
(effects
3697
3697
+
(font
3698
3698
+
(size 1.27 1.27)
3699
3699
+
)
3700
3700
+
(justify left)
3701
3701
+
)
3702
3702
+
)
3703
3703
+
(property "Value" "1k"
3704
3704
+
(at 100.33 133.3499 0)
3705
3705
+
(effects
3706
3706
+
(font
3707
3707
+
(size 1.27 1.27)
3708
3708
+
)
3709
3709
+
(justify left)
3710
3710
+
)
3711
3711
+
)
3712
3712
+
(property "Footprint" "Resistor_SMD:R_0603_1608Metric"
3713
3713
+
(at 96.012 132.08 90)
3714
3714
+
(effects
3715
3715
+
(font
3716
3716
+
(size 1.27 1.27)
3717
3717
+
)
3718
3718
+
(hide yes)
3719
3719
+
)
3720
3720
+
)
3721
3721
+
(property "Datasheet" "~"
3722
3722
+
(at 97.79 132.08 0)
3723
3723
+
(effects
3724
3724
+
(font
3725
3725
+
(size 1.27 1.27)
3726
3726
+
)
3727
3727
+
(hide yes)
3728
3728
+
)
3729
3729
+
)
3730
3730
+
(property "Description" "Resistor"
3731
3731
+
(at 97.79 132.08 0)
3732
3732
+
(effects
3733
3733
+
(font
3734
3734
+
(size 1.27 1.27)
3735
3735
+
)
3736
3736
+
(hide yes)
3737
3737
+
)
3738
3738
+
)
3739
3739
+
(pin "2"
3740
3740
+
(uuid "b8e10b80-bc63-466c-bfbf-2d93ab3ce671")
3741
3741
+
)
3742
3742
+
(pin "1"
3743
3743
+
(uuid "2c8d5a4c-331b-487f-8965-562fed2f7cc5")
3744
3744
+
)
3745
3745
+
(instances
3746
3746
+
(project "strike-sensor"
3747
3747
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3748
3748
+
(reference "R4")
3749
3749
+
(unit 1)
3750
3750
+
)
3751
3751
+
)
3752
3752
+
)
3753
3753
+
)
3754
3754
+
(symbol
3755
3755
+
(lib_id "Device:C")
3756
3756
+
(at 58.42 78.74 180)
3757
3757
+
(unit 1)
3758
3758
+
(exclude_from_sim no)
3759
3759
+
(in_bom yes)
3760
3760
+
(on_board yes)
3761
3761
+
(dnp no)
3762
3762
+
(fields_autoplaced yes)
3763
3763
+
(uuid "f2cf3dfe-6609-40f1-bb4b-1978fa73e608")
3764
3764
+
(property "Reference" "C5"
3765
3765
+
(at 62.23 77.4699 0)
3766
3766
+
(effects
3767
3767
+
(font
3768
3768
+
(size 1.27 1.27)
3769
3769
+
)
3770
3770
+
(justify right)
3771
3771
+
)
3772
3772
+
)
3773
3773
+
(property "Value" "270pF"
3774
3774
+
(at 62.23 80.0099 0)
3775
3775
+
(effects
3776
3776
+
(font
3777
3777
+
(size 1.27 1.27)
3778
3778
+
)
3779
3779
+
(justify right)
3780
3780
+
)
3781
3781
+
)
3782
3782
+
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric"
3783
3783
+
(at 57.4548 74.93 0)
3784
3784
+
(effects
3785
3785
+
(font
3786
3786
+
(size 1.27 1.27)
3787
3787
+
)
3788
3788
+
(hide yes)
3789
3789
+
)
3790
3790
+
)
3791
3791
+
(property "Datasheet" "~"
3792
3792
+
(at 58.42 78.74 0)
3793
3793
+
(effects
3794
3794
+
(font
3795
3795
+
(size 1.27 1.27)
3796
3796
+
)
3797
3797
+
(hide yes)
3798
3798
+
)
3799
3799
+
)
3800
3800
+
(property "Description" "Unpolarized capacitor"
3801
3801
+
(at 58.42 78.74 0)
3802
3802
+
(effects
3803
3803
+
(font
3804
3804
+
(size 1.27 1.27)
3805
3805
+
)
3806
3806
+
(hide yes)
3807
3807
+
)
3808
3808
+
)
3809
3809
+
(pin "2"
3810
3810
+
(uuid "3c848986-d090-469b-b803-d3bb67c81451")
3811
3811
+
)
3812
3812
+
(pin "1"
3813
3813
+
(uuid "77fdda0c-2040-42ae-84e3-60f609646a60")
3814
3814
+
)
3815
3815
+
(instances
3816
3816
+
(project "strike-sensor"
3817
3817
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3818
3818
+
(reference "C5")
3819
3819
+
(unit 1)
3820
3820
+
)
3821
3821
+
)
3822
3822
+
)
3823
3823
+
)
3824
3824
+
(symbol
3825
3825
+
(lib_id "Device:R")
3826
3826
+
(at 55.88 124.46 270)
3827
3827
+
(unit 1)
3828
3828
+
(exclude_from_sim no)
3829
3829
+
(in_bom yes)
3830
3830
+
(on_board yes)
3831
3831
+
(dnp no)
3832
3832
+
(fields_autoplaced yes)
3833
3833
+
(uuid "f2e3a9f2-593a-4d99-953b-e0d7598b535b")
3834
3834
+
(property "Reference" "R3"
3835
3835
+
(at 55.88 118.11 90)
3836
3836
+
(effects
3837
3837
+
(font
3838
3838
+
(size 1.27 1.27)
3839
3839
+
)
3840
3840
+
)
3841
3841
+
)
3842
3842
+
(property "Value" "1k"
3843
3843
+
(at 55.88 120.65 90)
3844
3844
+
(effects
3845
3845
+
(font
3846
3846
+
(size 1.27 1.27)
3847
3847
+
)
3848
3848
+
)
3849
3849
+
)
3850
3850
+
(property "Footprint" "Resistor_SMD:R_0603_1608Metric"
3851
3851
+
(at 55.88 122.682 90)
3852
3852
+
(effects
3853
3853
+
(font
3854
3854
+
(size 1.27 1.27)
3855
3855
+
)
3856
3856
+
(hide yes)
3857
3857
+
)
3858
3858
+
)
3859
3859
+
(property "Datasheet" "~"
3860
3860
+
(at 55.88 124.46 0)
3861
3861
+
(effects
3862
3862
+
(font
3863
3863
+
(size 1.27 1.27)
3864
3864
+
)
3865
3865
+
(hide yes)
3866
3866
+
)
3867
3867
+
)
3868
3868
+
(property "Description" "Resistor"
3869
3869
+
(at 55.88 124.46 0)
3870
3870
+
(effects
3871
3871
+
(font
3872
3872
+
(size 1.27 1.27)
3873
3873
+
)
3874
3874
+
(hide yes)
3875
3875
+
)
3876
3876
+
)
3877
3877
+
(pin "2"
3878
3878
+
(uuid "7786d287-59cc-44fd-8e1e-92947df7ff17")
3879
3879
+
)
3880
3880
+
(pin "1"
3881
3881
+
(uuid "12e9c194-27d7-4e14-ba49-6dd11414945d")
3882
3882
+
)
3883
3883
+
(instances
3884
3884
+
(project "strike-sensor"
3885
3885
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3886
3886
+
(reference "R3")
3887
3887
+
(unit 1)
3888
3888
+
)
3889
3889
+
)
3890
3890
+
)
3891
3891
+
)
3892
3892
+
(symbol
3893
3893
+
(lib_id "Diode:1N4148WS")
3894
3894
+
(at 105.41 124.46 0)
3895
3895
+
(unit 1)
3896
3896
+
(exclude_from_sim no)
3897
3897
+
(in_bom yes)
3898
3898
+
(on_board yes)
3899
3899
+
(dnp no)
3900
3900
+
(fields_autoplaced yes)
3901
3901
+
(uuid "f90688a6-e112-415e-8ebd-f0143cb29546")
3902
3902
+
(property "Reference" "D1"
3903
3903
+
(at 105.41 118.11 0)
3904
3904
+
(effects
3905
3905
+
(font
3906
3906
+
(size 1.27 1.27)
3907
3907
+
)
3908
3908
+
)
3909
3909
+
)
3910
3910
+
(property "Value" "1N4148WS"
3911
3911
+
(at 105.41 120.65 0)
3912
3912
+
(effects
3913
3913
+
(font
3914
3914
+
(size 1.27 1.27)
3915
3915
+
)
3916
3916
+
)
3917
3917
+
)
3918
3918
+
(property "Footprint" "Diode_SMD:D_SOD-323"
3919
3919
+
(at 105.41 128.905 0)
3920
3920
+
(effects
3921
3921
+
(font
3922
3922
+
(size 1.27 1.27)
3923
3923
+
)
3924
3924
+
(hide yes)
3925
3925
+
)
3926
3926
+
)
3927
3927
+
(property "Datasheet" "https://www.vishay.com/docs/85751/1n4148ws.pdf"
3928
3928
+
(at 105.41 124.46 0)
3929
3929
+
(effects
3930
3930
+
(font
3931
3931
+
(size 1.27 1.27)
3932
3932
+
)
3933
3933
+
(hide yes)
3934
3934
+
)
3935
3935
+
)
3936
3936
+
(property "Description" "75V 0.15A Fast switching Diode, SOD-323"
3937
3937
+
(at 105.41 124.46 0)
3938
3938
+
(effects
3939
3939
+
(font
3940
3940
+
(size 1.27 1.27)
3941
3941
+
)
3942
3942
+
(hide yes)
3943
3943
+
)
3944
3944
+
)
3945
3945
+
(property "Sim.Device" "D"
3946
3946
+
(at 105.41 124.46 0)
3947
3947
+
(effects
3948
3948
+
(font
3949
3949
+
(size 1.27 1.27)
3950
3950
+
)
3951
3951
+
(hide yes)
3952
3952
+
)
3953
3953
+
)
3954
3954
+
(property "Sim.Pins" "1=K 2=A"
3955
3955
+
(at 105.41 124.46 0)
3956
3956
+
(effects
3957
3957
+
(font
3958
3958
+
(size 1.27 1.27)
3959
3959
+
)
3960
3960
+
(hide yes)
3961
3961
+
)
3962
3962
+
)
3963
3963
+
(pin "2"
3964
3964
+
(uuid "be65f272-b37c-400f-b298-f9fb1f18511c")
3965
3965
+
)
3966
3966
+
(pin "1"
3967
3967
+
(uuid "4b7e39a4-4ffe-49dc-8cd4-9973d3af7cf8")
3968
3968
+
)
3969
3969
+
(instances
3970
3970
+
(project "strike-sensor"
3971
3971
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
3972
3972
+
(reference "D1")
3973
3973
+
(unit 1)
3974
3974
+
)
3975
3975
+
)
3976
3976
+
)
3977
3977
+
)
3978
3978
+
(symbol
3979
3979
+
(lib_id "Device:R")
3980
3980
+
(at 72.39 124.46 270)
3981
3981
+
(unit 1)
3982
3982
+
(exclude_from_sim no)
3983
3983
+
(in_bom yes)
3984
3984
+
(on_board yes)
3985
3985
+
(dnp no)
3986
3986
+
(fields_autoplaced yes)
3987
3987
+
(uuid "fc041f17-d109-4630-bbbd-e29478e38c42")
3988
3988
+
(property "Reference" "R2"
3989
3989
+
(at 72.39 118.11 90)
3990
3990
+
(effects
3991
3991
+
(font
3992
3992
+
(size 1.27 1.27)
3993
3993
+
)
3994
3994
+
)
3995
3995
+
)
3996
3996
+
(property "Value" "1k"
3997
3997
+
(at 72.39 120.65 90)
3998
3998
+
(effects
3999
3999
+
(font
4000
4000
+
(size 1.27 1.27)
4001
4001
+
)
4002
4002
+
)
4003
4003
+
)
4004
4004
+
(property "Footprint" "Resistor_SMD:R_0603_1608Metric"
4005
4005
+
(at 72.39 122.682 90)
4006
4006
+
(effects
4007
4007
+
(font
4008
4008
+
(size 1.27 1.27)
4009
4009
+
)
4010
4010
+
(hide yes)
4011
4011
+
)
4012
4012
+
)
4013
4013
+
(property "Datasheet" "~"
4014
4014
+
(at 72.39 124.46 0)
4015
4015
+
(effects
4016
4016
+
(font
4017
4017
+
(size 1.27 1.27)
4018
4018
+
)
4019
4019
+
(hide yes)
4020
4020
+
)
4021
4021
+
)
4022
4022
+
(property "Description" "Resistor"
4023
4023
+
(at 72.39 124.46 0)
4024
4024
+
(effects
4025
4025
+
(font
4026
4026
+
(size 1.27 1.27)
4027
4027
+
)
4028
4028
+
(hide yes)
4029
4029
+
)
4030
4030
+
)
4031
4031
+
(pin "2"
4032
4032
+
(uuid "64837d16-cc9f-4ccb-953d-6b9f0239ec1a")
4033
4033
+
)
4034
4034
+
(pin "1"
4035
4035
+
(uuid "848d55a7-638b-46ad-a185-1176d76e3753")
4036
4036
+
)
4037
4037
+
(instances
4038
4038
+
(project "strike-sensor"
4039
4039
+
(path "/1c3bd3d2-7727-450d-8523-9ee70b8d5813"
4040
4040
+
(reference "R2")
4041
4041
+
(unit 1)
4042
4042
+
)
4043
4043
+
)
4044
4044
+
)
4045
4045
+
)
4046
4046
+
(sheet_instances
4047
4047
+
(path "/"
4048
4048
+
(page "1")
4049
4049
+
)
4050
4050
+
)
4051
4051
+
(embedded_fonts no)
4052
4052
+
)