-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathanavi-miracle-emitter.kicad_pcb
12271 lines (12244 loc) · 455 KB
/
anavi-miracle-emitter.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "ANAVI Miracle Emitter")
(date "2024-01-21")
(rev "1.0")
(company "ANAVI Technology Ltd.")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user "Enclosure.Top")
(51 "User.2" user "Enclosure.Bottom")
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.2)
(solder_mask_min_width 0.25)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "plots/anavi-miracle-emitter-10")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(D1-Pad2)")
(net 3 "Net-(J1-Pad1)")
(net 4 "Net-(J1-Pad2)")
(net 5 "+3V3")
(net 6 "Net-(J5-Pad2)")
(net 7 "Net-(J5-Pad3)")
(net 8 "Net-(J6-Pad1)")
(net 9 "+5V")
(net 10 "Net-(R1-Pad1)")
(net 11 "Net-(R2-Pad1)")
(net 12 "Net-(R3-Pad1)")
(net 13 "Net-(J6-Pad2)")
(net 14 "Net-(J6-Pad3)")
(net 15 "Net-(J7-Pad2)")
(net 16 "unconnected-(U1-Pad10)")
(net 17 "Net-(U1-Pad11)")
(net 18 "unconnected-(U2-Pad1)")
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 07ac831c-fcc7-4f73-a1e7-c50f81a964a0)
(at 164.592 52.832 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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")
(tags "resistor handsolder")
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/2dcda70f-c8a5-4b92-a6a3-52dae8fe237c")
(attr smd)
(fp_text reference "R2" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 99be5d76-300e-4f20-a443-cae8947edfd5)
)
(fp_text value "2K" (at 0 -2.794 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 04f0d028-c817-480c-944a-42cbfccafa9e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp add90365-59e6-451f-89f8-8665d94a32ba)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 56835a6b-d255-4c83-9acc-b8d3949119e6))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp b4f3deb9-ff7a-4ab8-aa63-bde787a78d58))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 256be11b-c4ef-4bf9-938a-cee2fdf981c8))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 47d45996-5914-498d-9155-02c861625a77))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 644d5ac8-9c43-456e-ab0c-b053f9bc520a))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 86d09f33-14ae-4f74-a6af-aea72179a890))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 09e04927-dfea-4dda-908e-bd0fc3f3fc1f))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 43990297-22a0-4f30-9cdc-2e77b673b5a9))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a1c9bc98-3d1a-4cf6-9b8d-ab2ca2f32910))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b0299914-5178-40c4-9716-29d440fcbc3d))
(pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(R2-Pad1)") (pintype "passive") (tstamp e246b4c6-330f-4c5e-b9dd-b100eb27bc9f))
(pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pintype "passive") (tstamp 9efa549b-079b-4747-bbda-5d5b1defcab0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SOT95P280X145-5N:SOT95P280X145-5N" (layer "F.Cu")
(tedit 64371300) (tstamp 0b90664a-a019-4675-8f26-60d4d05a8491)
(at 163.322 42.926)
(property "MPN" "74LVC1G17W5-7")
(property "OC_FARNELL" "1893835")
(property "OC_NEWARK" "47T3922")
(property "PACKAGE" "SOT-5")
(property "SUPPLIER" "DIODES INC.")
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/6bf6b257-f3de-44ef-9df6-f12b609ec9ad")
(attr smd)
(fp_text reference "U2" (at 0 -2.54) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp ad9f155b-20b7-404f-8c79-84da2ada2a14)
)
(fp_text value "74LVC1G17W5-7" (at -1.016 -12.446 90) (layer "F.Fab")
(effects (font (size 1.643039 1.643039) (thickness 0.15)))
(tstamp cd4cec66-709f-4ab8-a279-374ca81a7a4f)
)
(fp_line (start 0.3048 -1.5494) (end -0.3048 -1.5494) (layer "F.SilkS") (width 0.1524) (tstamp 63b5c54d-f24f-457c-92ae-67c9c0c51c77))
(fp_line (start -0.3048 -1.5494) (end -0.5588 -1.5494) (layer "F.SilkS") (width 0.1524) (tstamp b1fb9646-28e8-4f1a-b925-177a821bdc40))
(fp_line (start 0.5588 -1.5494) (end 0.3048 -1.5494) (layer "F.SilkS") (width 0.1524) (tstamp eb4c0842-7a8a-411b-8b9e-5cf7227a1b4e))
(fp_arc (start 0.3048 -1.5494) (mid 0 -1.2446) (end -0.3048 -1.5494) (layer "F.SilkS") (width 0.1524) (tstamp 666a73a2-03d5-46c5-bb94-4ec41d0ee8e1))
(fp_line (start -0.8382 1.1938) (end -0.8382 0.7112) (layer "F.Fab") (width 0.1) (tstamp 0a876c4b-48c4-4034-a242-f5dfe7c19be9))
(fp_line (start -1.4986 0.7112) (end -1.4986 1.1938) (layer "F.Fab") (width 0.1) (tstamp 0c7ae16d-edb5-468f-9485-5986fb24287d))
(fp_line (start 0.3048 -1.5494) (end -0.3048 -1.5494) (layer "F.Fab") (width 0.1) (tstamp 0e9b0b8e-a426-45d3-bffd-c8512bcae6fa))
(fp_line (start -1.4986 -0.7112) (end -0.8382 -0.7112) (layer "F.Fab") (width 0.1) (tstamp 17d603c4-6b12-4bc1-a243-3eb3ea7e9bbe))
(fp_line (start 1.4986 0.7112) (end 0.8382 0.7112) (layer "F.Fab") (width 0.1) (tstamp 19179aca-d8d3-4158-8e19-9e7db77bd7ac))
(fp_line (start -1.4986 1.1938) (end -0.8382 1.1938) (layer "F.Fab") (width 0.1) (tstamp 1b564150-ed59-4fe9-b820-f6dd23bb1a87))
(fp_line (start -0.8382 -0.254) (end -0.8382 0.254) (layer "F.Fab") (width 0.1) (tstamp 1be8aa34-6857-44e7-b2f5-2f95136998df))
(fp_line (start 0.8382 1.1938) (end 0.8382 0.7112) (layer "F.Fab") (width 0.1) (tstamp 3c0294b9-eb16-486a-bb9e-6f459e48e4d4))
(fp_line (start 0.8382 -1.5494) (end 0.8382 -1.1938) (layer "F.Fab") (width 0.1) (tstamp 3c525fac-d61a-4241-995c-a057854e77ef))
(fp_line (start 1.4986 -0.7112) (end 1.4986 -1.1938) (layer "F.Fab") (width 0.1) (tstamp 4335f4f3-6bde-4d2e-b01b-390ca6f711fe))
(fp_line (start 1.4986 1.1938) (end 1.4986 0.7112) (layer "F.Fab") (width 0.1) (tstamp 44e2f8f0-9484-4bbf-a363-d1c3d17b5b0a))
(fp_line (start -0.8382 0.7112) (end -1.4986 0.7112) (layer "F.Fab") (width 0.1) (tstamp 46dd8e20-3e2e-4780-8fcc-9f5871c18584))
(fp_line (start 0.8382 -1.5494) (end 0.3048 -1.5494) (layer "F.Fab") (width 0.1) (tstamp 4a621eb6-a390-439b-9911-2c506a8e7ce5))
(fp_line (start 1.4986 -1.1938) (end 0.8382 -1.1938) (layer "F.Fab") (width 0.1) (tstamp 4b6c831a-a1d1-4006-a7ac-b65ebb9977b0))
(fp_line (start -1.4986 -1.1938) (end -1.4986 -0.7112) (layer "F.Fab") (width 0.1) (tstamp 4d96e3c9-e5c6-4a98-ac7c-2185d15706de))
(fp_line (start -0.8382 -1.1938) (end -1.4986 -1.1938) (layer "F.Fab") (width 0.1) (tstamp 58390aa6-b8fb-48b0-80e3-272521f3adeb))
(fp_line (start -0.8382 -1.1938) (end -0.8382 -0.7112) (layer "F.Fab") (width 0.1) (tstamp 62ed8a07-b99a-4de4-878f-5cd391d4fa36))
(fp_line (start -1.4986 0.254) (end -0.8382 0.254) (layer "F.Fab") (width 0.1) (tstamp 677e8712-7d01-470d-8dad-0fdc885ab1ff))
(fp_line (start 0.8382 0.7112) (end 0.8382 -0.7112) (layer "F.Fab") (width 0.1) (tstamp 6dbec5c0-fd4e-47a1-a564-2541ac1ed7d0))
(fp_line (start -1.4986 -0.254) (end -1.4986 0.254) (layer "F.Fab") (width 0.1) (tstamp 74525f28-f154-4d5a-9d07-cb349edd107c))
(fp_line (start -0.8382 -1.5494) (end -0.8382 -1.1938) (layer "F.Fab") (width 0.1) (tstamp 753e27bf-9f88-498c-9f31-cb641c01e022))
(fp_line (start 0.8382 1.1938) (end 1.4986 1.1938) (layer "F.Fab") (width 0.1) (tstamp 88eb9175-6750-436d-8c29-44d69b3b5bab))
(fp_line (start -0.8382 -0.7112) (end -0.8382 -0.254) (layer "F.Fab") (width 0.1) (tstamp 8a518bbb-c1dd-4080-a6bc-594d027d5b2c))
(fp_line (start -0.8382 1.5494) (end 0.8382 1.5494) (layer "F.Fab") (width 0.1) (tstamp 9d348b1a-f08d-4bee-8f0c-42c072ff5fcc))
(fp_line (start -0.3048 -1.5494) (end -0.8382 -1.5494) (layer "F.Fab") (width 0.1) (tstamp a5f387a0-938d-4aa2-a219-f9dc37f20909))
(fp_line (start 0.8382 1.5494) (end 0.8382 1.1938) (layer "F.Fab") (width 0.1) (tstamp ad21b864-64a7-4296-bc25-e03d0715a6e9))
(fp_line (start -0.8382 0.254) (end -0.8382 0.7112) (layer "F.Fab") (width 0.1) (tstamp affefefe-0c46-41ba-ae48-1eb2cd366f3c))
(fp_line (start 0.8382 -0.7112) (end 1.4986 -0.7112) (layer "F.Fab") (width 0.1) (tstamp dbd79d34-d32d-41e0-a7ba-98c9fade6e48))
(fp_line (start 0.8382 -1.1938) (end 0.8382 -0.7112) (layer "F.Fab") (width 0.1) (tstamp eda58997-89ee-4770-9cb3-494f15267a26))
(fp_line (start -0.8382 1.5494) (end -0.8382 1.1938) (layer "F.Fab") (width 0.1) (tstamp f6b41f0c-a447-4a8e-877f-fd1e0a15a261))
(fp_line (start -0.8382 -0.254) (end -1.4986 -0.254) (layer "F.Fab") (width 0.1) (tstamp fc5e3e54-d505-45d7-bc44-2d78f528fbe3))
(fp_arc (start 0.3048 -1.5494) (mid 0 -1.2446) (end -0.3048 -1.5494) (layer "F.Fab") (width 0.1) (tstamp da01cfef-a6f1-437c-b88a-7ab5ee8a8ece))
(pad "1" smd rect locked (at -1.27 -0.9398) (size 1.3208 0.5588) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "unconnected-(U2-Pad1)") (pinfunction "NC") (pintype "no_connect") (tstamp 2b030778-ca25-44c9-944b-29d4ade5f8bc))
(pad "2" smd rect locked (at -1.27 0) (size 1.3208 0.5588) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(U1-Pad11)") (pinfunction "A") (pintype "input") (tstamp 8b7fd353-c119-4ae0-9be7-64bb90113776))
(pad "3" smd rect locked (at -1.27 0.9398) (size 1.3208 0.5588) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 4502d79f-a81c-4474-bad6-b9f26aaff1ba))
(pad "4" smd rect locked (at 1.27 0.9398) (size 1.3208 0.5588) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "Net-(R3-Pad1)") (pinfunction "Y") (pintype "output") (tstamp 7b1544ae-6735-447a-b4d0-2029ecca6d13))
(pad "5" smd rect locked (at 1.27 -0.9398) (size 1.3208 0.5588) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 1eb6792f-9680-41da-bcc6-ac4ebfaf1017))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 0dba7856-ae93-41bc-96df-582d25943769)
(at 132.588 43.688 -90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/9166ea7b-5cf9-4faf-8e58-cdcf7a4c35af")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.33 -270) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 1b3de975-3fed-46c6-bf34-1ccd4e975852)
)
(fp_text value "Conn_01x04_Female" (at 0 9.95 -270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a34971c-1470-4565-bbe4-2f625be16b77)
)
(fp_text user "${REFERENCE}" (at 0 3.81) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24db9cc1-c5ef-4eef-9e9e-7893e55a7a3b)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 120d5c34-42b1-4760-a910-3ec442962e9f))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 208ec1ff-0813-487b-bc7b-93951f623775))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 282974fe-b174-408c-9e38-1a53189dc3f1))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp a7919d6f-5cdd-4804-b7ac-62cfa830c33f))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a9a92f9f-fe70-4ab5-b356-985c6bbadfd8))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp c243ff0e-b9b8-4ed3-bac7-aebfdd3ea969))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 3a6e83fd-c5eb-4fa7-b068-9d70284c7a10))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 436937bc-ec66-4fa5-bfce-abac93d55497))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 6ef139b4-3ba3-4cdc-b888-89de3792c315))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d98f98bd-8349-4ec6-8efd-55c02fac1f37))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 062f6c01-892e-4432-b018-78dd0c56a985))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 6cf77a8f-b6e2-4c86-80e3-e5160be183d1))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 76e18e6c-5c22-4b66-9b86-0d0d73f7c400))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 90928d33-f055-4614-9cd8-f524bef61505))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp c1a46e10-33c6-4ee8-8ac3-af2f927d54a7))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "Net-(J1-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 0810d445-1df3-46a9-896a-86ad16793678))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(J1-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp d0ef9572-f9f1-402b-82aa-afe53ec77b54))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 378ba148-7b8d-402f-885d-db8e3eaa3a38))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+3V3") (pinfunction "Pin_4") (pintype "passive") (tstamp 893e404c-85a0-48e8-9725-eef1b796e7fd))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 24eff49c-bd8f-4b46-ac8e-1e6a98d4d952)
(at 138.43 56.896)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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")
(tags "resistor handsolder")
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/95a18f92-c1c4-48fb-be0b-427e95ae1db4")
(attr smd)
(fp_text reference "R1" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp b31233f9-2da6-4a1a-a3d8-a08f13d9a8b2)
)
(fp_text value "68R" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7e10faf-54ab-46bd-a086-b88bca32ddb0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 6fb4bc4d-95d1-4777-8dcd-c64486ab8513)
)
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 13671488-0cb9-4f6b-86f5-8833a4c93942))
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp fdbc71b1-4096-4d2c-99bc-b62ad2c2fdeb))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 56fc849c-b296-4403-9bb4-03c6bcf87048))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9d523c28-c698-4f1a-8526-c7c1680a0aae))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp aa9b2cea-b8fe-44be-befd-4138a19b60f8))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp abd02f2b-63a6-4b27-b14c-97cc6e52ac01))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 59811369-676b-43e7-b8c3-81d491e17681))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b722165f-6032-4da5-a108-e8e66a953064))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp efbd3197-cbc9-408a-a2b5-e8292a952aae))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f341cc8d-f0b2-4738-917e-2a4bc6c6fbcd))
(pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(R1-Pad1)") (pintype "passive") (tstamp 1775dfeb-f12d-4fbf-bc30-325244073ad9))
(pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(D1-Pad2)") (pintype "passive") (tstamp 964742c0-ee94-4927-91df-9434b273df16))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 65A0738E) (tstamp 25fe3add-7600-4b21-a354-a5025aaeda9d)
(at 117.1448 61.722)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5fb0b6fd-5597-4a65-98d4-ea75406549ec)
)
(fp_text value "MountingHole_3.2mm_M3_DIN965_Pad" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd2c4975-3f8c-416b-be57-b149d4301b3d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3ca2d3d-40dc-4e9c-b4db-9e7c15f20517)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 1d5f54d2-b98e-433c-8e4f-35780943f5f7))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 998cabfb-50e5-4fab-93d3-983ae3c11d28))
(pad "4" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask) (tstamp 4f8e63e1-20fe-4503-9048-86b532ffefc5))
)
(footprint "xiao ESP32C3_PCB:MOUDLE14P-SMD-2.54-21X17.8MM" (layer "F.Cu")
(tedit 65A071F2) (tstamp 263756cf-3853-4524-8df2-424ae259267e)
(at 140.314 54.04525)
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/f0504b89-ab7c-4419-ad1b-49f69d1f8595")
(attr through_hole)
(fp_text reference "U1" (at 9.3345 -21.7805) (layer "F.SilkS") hide
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 2d492720-f026-4f74-9ef3-225bf440080e)
)
(fp_text value "MOUDLE-SEEEDUINO-XIAO-ESP32C3" (at 8.89 -10.795) (layer "F.Fab")
(effects (font (size 0.48 0.48) (thickness 0.15)))
(tstamp b9ad88d6-3ed9-406b-a6f9-0fb8cd5b9198)
)
(fp_circle (center -0.889 -18.161) (end -0.635 -18.161) (layer "Dwgs.User") (width 0) (fill solid) (tstamp b7fbf3b4-93ab-445d-9566-3163014a531c))
(fp_poly (pts
(xy 0 -20.955)
(xy 17.653 -20.955)
(xy 17.653 0)
(xy 0 0)
) (layer "F.CrtYd") (width 0.01) (fill solid) (tstamp 57b46e54-0fd7-428f-89e9-2384adc40b64))
(pad "1" smd roundrect (at 0.835 -18.12) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 8 "Net-(J6-Pad1)") (pinfunction "PA02_A0_D0") (pintype "bidirectional") (tstamp f147520a-ecc2-4b7e-b9c3-9b0e6b1e15d3))
(pad "2" smd roundrect (at 0.835 -15.58) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 13 "Net-(J6-Pad2)") (pinfunction "PA4_A1_D1") (pintype "bidirectional") (tstamp ae6bf646-b66b-4f78-ba4e-7b721157abf0))
(pad "3" smd roundrect (at 0.835 -13.04) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 14 "Net-(J6-Pad3)") (pinfunction "PA10_A2_D2") (pintype "bidirectional") (tstamp a547f32b-da49-47ea-b9ae-0902c7d12faa))
(pad "4" smd roundrect (at 0.835 -10.5) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 10 "Net-(R1-Pad1)") (pinfunction "PA11_A3_D3") (pintype "bidirectional") (tstamp d5345ffb-e660-46fd-91a1-6d7002bcf227))
(pad "5" smd roundrect (at 0.835 -7.96) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 3 "Net-(J1-Pad1)") (pinfunction "PA8_A4_D4_SDA") (pintype "bidirectional") (tstamp 4d81b61f-606d-440e-8d6f-61b5eb92b469))
(pad "6" smd roundrect (at 0.835 -5.42) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 4 "Net-(J1-Pad2)") (pinfunction "PA9_A5_D5_SCL") (pintype "bidirectional") (tstamp 6a48d0b8-0f65-4f63-bab3-30726f0b768c))
(pad "7" smd roundrect (at 0.835 -2.88) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 6 "Net-(J5-Pad2)") (pinfunction "PB08_A6_D6_TX") (pintype "bidirectional") (tstamp 11969c42-3fb7-49a4-8349-6c0ffcdab2e8))
(pad "8" smd roundrect (at 17 -2.88) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 7 "Net-(J5-Pad3)") (pinfunction "PB09_A7_D7_RX") (pintype "bidirectional") (tstamp 762c3c0b-490f-4700-be51-c6a7ba896fe3))
(pad "9" smd roundrect (at 17 -5.42) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 11 "Net-(R2-Pad1)") (pinfunction "PA7_A8_D8_SCK") (pintype "bidirectional") (tstamp 20cf0c08-e332-4a8c-b3c4-79dc756d878b))
(pad "10" smd roundrect (at 17 -7.96) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 16 "unconnected-(U1-Pad10)") (pinfunction "PA5_A9_D9_MISO") (pintype "bidirectional+no_connect") (tstamp 3b323332-8a11-49b8-a74e-223bd1a1ed65))
(pad "11" smd roundrect (at 17 -10.5) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 17 "Net-(U1-Pad11)") (pinfunction "PA6_A10_D10_MOSI") (pintype "bidirectional") (tstamp 82a6fa17-8830-478d-9595-5eea2fe7cc7f))
(pad "12" smd roundrect (at 17 -13.04) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 5 "+3V3") (pinfunction "3V3") (pintype "bidirectional") (tstamp 66d0b029-d6ef-4887-83a5-7b5a638e0189))
(pad "13" smd roundrect (at 17 -15.58) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 1 "GND") (pinfunction "GND") (pintype "bidirectional") (tstamp 7729d814-cbf4-4ef1-859f-b9981597edc7))
(pad "14" smd roundrect (at 17 -18.12) (size 2.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 9 "+5V") (pinfunction "5V") (pintype "bidirectional") (tstamp 3f15e562-4f32-44ce-815c-9c786ca24011))
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 18cf4fb6-ca92-44ec-95f1-2adb5dfd4536) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 152.633 32.96325)
(xy 154.411 32.96325)
(xy 154.411 35.63025)
(xy 152.633 35.63025)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 594930f1-e293-46b0-acd1-9b54a30140d1) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 143.997 37.02725)
(xy 145.775 37.02725)
(xy 145.775 39.69425)
(xy 143.997 39.69425)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 75eec3cf-9547-42aa-85af-69b0ba8314ca) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 146.664 33.72525)
(xy 151.871 33.72525)
(xy 151.871 40.71025)
(xy 146.664 40.71025)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 7b9091e3-c19e-46f9-ae71-24084fa5948d) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 152.633 37.02725)
(xy 154.411 37.02725)
(xy 154.411 39.69425)
(xy 152.633 39.69425)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 861998fc-4dee-48f6-95a3-eb29158ee06f) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 146.664 50.87025)
(xy 152.379 50.87025)
(xy 152.379 53.41025)
(xy 146.664 53.41025)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp a300f4fa-2ba8-4ace-9c94-ef81b544be56) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 150.093 42.74225)
(xy 153.141 42.74225)
(xy 153.141 45.79025)
(xy 150.093 45.79025)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp acebdaf1-95a8-40ac-9403-49765c8ed878) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 143.997 32.96325)
(xy 145.775 32.96325)
(xy 145.775 35.63025)
(xy 143.997 35.63025)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp ffe7044a-20ff-4a46-b7ee-d79e7c7642c8) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 143.2985 41.28175)
(xy 146.2195 41.28175)
(xy 146.2195 43.31375)
(xy 143.2985 43.31375)
)
)
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 3c3b2c5b-9273-4940-ad26-912b78e599ac)
(at 117.5004 53.2284 180)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/779c0a18-e897-439a-ab16-0a8956e9c459")
(attr through_hole)
(fp_text reference "J4" (at 0 -2.54) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp bde004bf-fddc-460d-8bad-3a449b6995b6)
)
(fp_text value "Conn_01x04_Female" (at 0 9.95) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db93065d-d7a9-442c-84f2-46c614861f72)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3933c78d-e0e9-4bc8-9448-57f853d56416)
)
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 4b308f82-5bc1-4d5d-abeb-df3a70f5e2de))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 66e429ab-5bfc-44d1-aa13-226f0a2b169d))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 6ebf6e9a-cf89-4e3a-8810-69a7d387c654))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 972d1dd0-6bd0-4f7d-a961-e0d0c99ad948))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 9c9e0837-9d02-497d-9fbd-bab3b1067259))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp b380278d-7c92-43cf-91a9-1c97dfe82a8c))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 3b79a65d-a2a1-446e-97b2-66bb2ab83341))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp abe6a0d7-50b7-4a64-95cb-16cecf82e6f2))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp b1ae57e1-dd0a-428b-abac-e543a71573b8))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c9eca091-1eea-443e-97ed-24518ab35e5f))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 06ba0042-8f17-4c6d-a05a-28e0ebd6e508))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 60740de8-9b7d-46a3-983e-2b60d3dfd97b))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9ed4a053-cf7d-4429-833e-af65438f05f8))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp a0c2ed19-a636-40a2-8970-6e4539968ab6))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp d8b5d407-beb2-4895-920b-72a93c2cd67a))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "Net-(J1-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 6ad5fec5-941c-4786-9db6-ebc04940edd5))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(J1-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 75bd6933-626a-4c8b-b55f-f5e2578cd6f7))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+3V3") (pinfunction "Pin_3") (pintype "passive") (tstamp 3962a870-64da-40dd-8df7-4f70b48df1a9))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp e61112af-6140-44f5-b7a6-941c2d3d06cd))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_PUSH_6mm_H4.3mm" (layer "F.Cu")
(tedit 5A02FE31) (tstamp 670a1dc8-be36-4704-abd3-8881a9d343d6)
(at 163.778 61.432 180)
(descr "tactile push button, 6x6mm e.g. PHAP33xx series, height=4.3mm")
(tags "tact sw push 6mm")
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/6fbdf9f1-bfaa-4538-b66a-eecda01106e2")
(attr through_hole)
(fp_text reference "BUTTON1" (at 3.25 -2.449) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 86819d76-65c8-4796-96b4-d5a97cd6067b)
)
(fp_text value "SW_DIP_x01" (at 3.75 6.7) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f79600f0-8aca-4c42-bd73-ad5321120380)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8fbfcd09-9c09-4387-bd00-860fc9adc9cf)
)
(fp_line (start 1 5.5) (end 5.5 5.5) (layer "F.SilkS") (width 0.12) (tstamp 1e1e59e6-047e-4f4b-9de9-484befb33325))
(fp_line (start -0.25 1.5) (end -0.25 3) (layer "F.SilkS") (width 0.12) (tstamp 9d0a5abd-40bc-4885-b217-96052c4c153c))
(fp_line (start 5.5 -1) (end 1 -1) (layer "F.SilkS") (width 0.12) (tstamp b1af12d0-5ec6-432e-8950-479189cae1e0))
(fp_line (start 6.75 3) (end 6.75 1.5) (layer "F.SilkS") (width 0.12) (tstamp d8e72ba6-4f3e-4aa1-82ef-56e32c3bfa0c))
(fp_line (start -1.5 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp 01a881a1-9de1-4060-a8bc-0b4e4830c12c))
(fp_line (start 8 -1.25) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp 3325dcee-e044-4ae9-a82c-6bcc1829217a))
(fp_line (start 8 6) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp 42f26f97-84ba-4654-93f0-c5bfb573e97d))
(fp_line (start 7.75 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp 476229cc-ca1e-4a0f-8f09-96ad5be435cb))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4be58d4e-ca21-49a0-8c0d-288b1ff6c928))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5138a8f4-6cf1-40a6-bfda-ac7bc846950e))
(fp_line (start 7.75 -1.5) (end 8 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 72fad346-a235-4d41-bebd-99ff84b4d0cc))
(fp_line (start -1.5 5.75) (end -1.5 6) (layer "F.CrtYd") (width 0.05) (tstamp 99ad4273-f643-44c1-b5af-850a553fee20))
(fp_line (start 8 -1.5) (end 8 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp c8d74c15-d74e-45cd-bd61-9f0d2cf30be2))
(fp_line (start 7.75 6) (end 8 6) (layer "F.CrtYd") (width 0.05) (tstamp e4957fbd-8bef-42d4-bb57-1c907e00bc66))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e4bf0dba-c0ae-4510-ab52-5f49cc86f479))
(fp_line (start -1.5 5.75) (end -1.5 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp e63c64b6-caf4-4b0c-874d-4aa57ce0edfc))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 12b351f9-6591-4abc-b4c0-05a9ef03306e))
(fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 2f467f40-c1c7-4678-b309-b0c274b5a57f))
(fp_line (start 6.25 5.25) (end 0.25 5.25) (layer "F.Fab") (width 0.1) (tstamp 5a4ab1af-60d4-416e-8b38-9da9038b6357))
(fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer "F.Fab") (width 0.1) (tstamp b3031e3f-415e-4b5b-a1bc-6773b71af3ea))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp b7a6af85-c77d-476d-9e20-ce1bdec0fad4))
(fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer "F.Fab") (width 0.1) (fill none) (tstamp 7dcddee7-cb64-4a9d-bde8-637d2ee9257b))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 287ef878-3010-4032-8614-43b8c94551f4))
(pad "1" thru_hole circle (at 6.5 0 270) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 7a102d43-ab4c-40c7-a83e-136119ac6f29))
(pad "2" thru_hole circle (at 6.5 4.5 270) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 11 "Net-(R2-Pad1)") (pintype "passive") (tstamp 80e43d42-e22c-4ccc-bcf4-b2a49d6ebc7e))
(pad "2" thru_hole circle (at 0 4.5 270) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 11 "Net-(R2-Pad1)") (pintype "passive") (tstamp e43e5894-ce0d-49fa-9364-b277a96db1ea))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm_H4.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal" (layer "F.Cu")
(tedit 65AD592F) (tstamp 682f1359-8679-408c-b4eb-871dbdff47f1)
(at 174.244 54.53 90)
(descr "Terminal Block Phoenix MKDS-1,5-3, 3 pins, pitch 5mm, size 15x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-3 pitch 5mm size 15x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/25f663ad-4b89-4375-b718-f0bb7e9ab97e")
(attr through_hole)
(fp_text reference "J7" (at -3.81 0 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b4a79ce-7dd7-4e57-8055-bdc5b8cac6a1)
)
(fp_text value "Screw_Terminal_01x03" (at 5 5.66 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f28fbe9-ad91-4be2-ad85-ea1fb484cf72)
)
(fp_text user "${REFERENCE}" (at 5 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fdc1ac6a-eaed-4e91-9750-ad84807154f9)
)
(fp_line (start -2.56 -2.301) (end 12.56 -2.301) (layer "F.SilkS") (width 0.12) (tstamp 009072b3-f89c-40e1-9459-190d5e9c8551))
(fp_line (start 8.773 1.023) (end 8.726 1.069) (layer "F.SilkS") (width 0.12) (tstamp 187db563-17e9-4e55-ace4-7867d793828b))
(fp_line (start -2.56 2.6) (end 12.56 2.6) (layer "F.SilkS") (width 0.12) (tstamp 225855dd-bab5-40f1-ae57-79c06f5a49f6))
(fp_line (start 3.773 1.023) (end 3.726 1.069) (layer "F.SilkS") (width 0.12) (tstamp 2ddcef68-8b2e-4330-8a4f-dbba6d52f11d))
(fp_line (start -2.56 -5.261) (end -2.56 2.6) (layer "F.SilkS") (width 0.12) (tstamp 37c8dece-3de5-4556-83b7-fc1a437016e0))
(fp_line (start 3.966 1.239) (end 3.931 1.274) (layer "F.SilkS") (width 0.12) (tstamp 5a73aaf5-729a-43ac-bee7-9c82c381ae25))
(fp_line (start 6.275 -1.069) (end 6.228 -1.023) (layer "F.SilkS") (width 0.12) (tstamp 6619695d-8f77-4025-9671-c0453f6d2384))
(fp_line (start -2.56 -5.261) (end 12.56 -5.261) (layer "F.SilkS") (width 0.12) (tstamp 70e788e7-82d3-4f6c-ac30-33a85df16ef5))
(fp_line (start 12.56 -5.261) (end 12.56 2.6) (layer "F.SilkS") (width 0.12) (tstamp 9cd6037f-9c71-4e1e-b092-83d006097d79))
(fp_line (start 11.275 -1.069) (end 11.228 -1.023) (layer "F.SilkS") (width 0.12) (tstamp c822c469-349b-4709-8cbe-6f5ce1f07edf))
(fp_line (start 8.966 1.239) (end 8.931 1.274) (layer "F.SilkS") (width 0.12) (tstamp e4aa02e8-c93c-43e7-aa1b-1320db006a22))
(fp_line (start 6.07 -1.275) (end 6.035 -1.239) (layer "F.SilkS") (width 0.12) (tstamp e8e7dd92-2b27-4794-9e71-6dbaad917f15))
(fp_line (start 11.07 -1.275) (end 11.035 -1.239) (layer "F.SilkS") (width 0.12) (tstamp fcf8330b-5f99-4b1f-9b4b-828df59fbd92))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (layer "F.SilkS") (width 0.12) (tstamp b61e4527-5c96-4dd0-9fdb-b78722e76ab2))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (layer "F.SilkS") (width 0.12) (tstamp bc5d2bcb-2aaf-4d35-868b-c91342704878))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (layer "F.SilkS") (width 0.12) (tstamp c8d8d682-24c5-4354-a181-f12c3174c357))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (layer "F.SilkS") (width 0.12) (tstamp e0a5ddff-138a-453e-83cf-d9074a97c04f))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (layer "F.SilkS") (width 0.12) (tstamp fe0e0513-0c5a-4672-8b5b-1c5fc187b0ac))
(fp_circle (center 5 0) (end 6.68 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 6458d857-f10f-4f53-b813-0ce850f30d76))
(fp_circle (center 10 0) (end 11.68 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp a906d2e5-4523-4353-9aef-cf188763da29))
(fp_line (start 13 -5.71) (end -3 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 08e60d5f-bd4b-4c26-8da6-35864e714e11))
(fp_line (start -3 -5.71) (end -3 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 35940648-58b8-4d28-8f36-3fa30b6b4891))
(fp_line (start 13 5.1) (end 13 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 525d2e78-e723-4384-a31c-b73525117967))
(fp_line (start -3 5.1) (end 13 5.1) (layer "F.CrtYd") (width 0.05) (tstamp c56664d8-3e6c-4692-9c01-eed5ff47ef0a))
(fp_line (start 0.955 -1.138) (end -1.138 0.955) (layer "F.Fab") (width 0.1) (tstamp 0ed7476e-7527-464b-948a-e18c33279d51))
(fp_line (start 6.138 -0.955) (end 4.046 1.138) (layer "F.Fab") (width 0.1) (tstamp 1cc1a5b7-9d5f-4427-b70b-cc8879a08c9e))
(fp_line (start 12.5 4.6) (end -2 4.6) (layer "F.Fab") (width 0.1) (tstamp 2c8ea079-74f1-47ce-9a83-4b1262a6a92a))
(fp_line (start 10.955 -1.138) (end 8.863 0.955) (layer "F.Fab") (width 0.1) (tstamp 5ae7e655-5a2a-4bb6-96cb-e3e1fa816e5a))
(fp_line (start -2.5 4.1) (end -2.5 -5.2) (layer "F.Fab") (width 0.1) (tstamp 63dc68ad-a2d0-493a-8cc1-0ee491db2473))
(fp_line (start 5.955 -1.138) (end 3.863 0.955) (layer "F.Fab") (width 0.1) (tstamp 86d55980-d83c-4228-82ab-8ce6b7f83bb6))
(fp_line (start -2.5 -5.2) (end 12.5 -5.2) (layer "F.Fab") (width 0.1) (tstamp 953791fc-7fa6-4cf5-a865-3b8bd7c0bd5e))
(fp_line (start 12.5 -5.2) (end 12.5 4.6) (layer "F.Fab") (width 0.1) (tstamp b330ffa8-8d4d-486b-9b84-a0482fb8309e))
(fp_line (start -2.5 2.6) (end 12.5 2.6) (layer "F.Fab") (width 0.1) (tstamp ba71533a-f200-4c93-aede-2ea466475479))
(fp_line (start 11.138 -0.955) (end 9.046 1.138) (layer "F.Fab") (width 0.1) (tstamp cde77092-35ea-4698-b73c-ae5ccd9b9b41))
(fp_line (start -2 4.6) (end -2.5 4.1) (layer "F.Fab") (width 0.1) (tstamp d3b1aff6-dc8d-4a6d-bfbc-89cacb93f830))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer "F.Fab") (width 0.1) (tstamp daf9d223-d65c-4327-befa-3474dc05cce2))
(fp_line (start -2.5 -2.3) (end 12.5 -2.3) (layer "F.Fab") (width 0.1) (tstamp e402ac06-d8b7-428e-a4fb-0a8218c5209f))
(fp_line (start -2.5 4.1) (end 12.5 4.1) (layer "F.Fab") (width 0.1) (tstamp f93815da-bf4e-440d-93c9-9b7adc9fdeb3))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 3dabaea5-73ba-446d-a8e8-d8b9069526fe))
(fp_circle (center 10 0) (end 11.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp ad9936fd-c6a6-446a-ad0a-f059c6e6d0c1))
(fp_circle (center 5 0) (end 6.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp cdb4fd50-17cb-4587-88d8-33ba86ac1b62))
(pad "1" thru_hole rect (at 0 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp f9feaad2-c9cf-46fe-a4c2-c5879d2f1dcc))
(pad "2" thru_hole circle (at 5 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 15 "Net-(J7-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 616b0eda-d0b2-4f70-8f78-935440af0e04))
(pad "3" thru_hole circle (at 10 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 9 "+5V") (pinfunction "Pin_3") (pintype "passive") (tstamp 86038023-62f1-4784-9fe8-701941b4f8e0))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 81615618-6bbd-42ed-8136-8ac4ae65afca)
(at 132.588 55.118 -90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/e58922e4-0f82-4de3-a65d-01016bfce033")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33 -270) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 46019d8b-1482-4465-95e7-afb5c6302e4c)
)
(fp_text value "Conn_01x04_Female" (at 0 3.6 -270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6d26486-826b-4a6c-a9ee-7f9568c07c62)
)
(fp_text user "${REFERENCE}" (at 0 3.81) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 120a8b8d-4a70-4759-b067-b948fdd1c60e)
)
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 12be1cbc-ecf1-4078-9b67-219bc61150eb))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 22c59815-9d35-4ac7-962e-eeb16c0fa3b3))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 36da77aa-944d-411f-8a1e-21d6c3dc6938))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 85712b66-b957-4742-952c-e4510b3a5ae3))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 993fb5c8-773b-49bf-a903-7401e8aa299c))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp cdd4ce57-2b09-4a98-8b90-c7c0c63c5a7b))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2e989e21-a1e8-42fb-88bc-90b86bc3c254))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 52d46255-2988-456e-9707-eea6d5e482c0))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 54036806-5cd0-45d6-88ff-9467c591e789))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp fb6ab0db-6009-4d4c-87e7-4cd2af8cba4a))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4211fb63-0168-4bf5-96b9-2b71d5057742))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7a90775c-1fe6-4f36-9f90-6ac91a02dbe1))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 9b631613-8665-491a-b2ec-365bed932f1b))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp da61e499-db71-4ce0-a1a7-26fdb1ef6e11))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp ff0cc134-7c76-46f5-8168-386778db5317))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "Net-(J1-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp f53a99df-250f-4a1e-afbf-bad4642182eb))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(J1-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 0cbac7ea-faad-4611-9469-c068d0df90b7))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 07352ce2-5fc8-4c81-93f6-467a81384cd3))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+3V3") (pinfunction "Pin_4") (pintype "passive") (tstamp b7a90408-1e98-4738-9095-30f50e260855))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 8c44c644-bcac-4da2-874f-6f1cd7266d16)
(at 133.604 36.068 -90)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/a9a9b622-f4c8-4292-8171-a65170bd92e3")
(attr through_hole)
(fp_text reference "J6" (at 0 -2.6924 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp e7a3b3b6-4edf-48a9-a1e3-2d42fcf9d4d4)
)
(fp_text value "Conn_01x05_Male" (at 0 12.49 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41aa9369-177d-46c1-b2e6-7ed071cd7915)
)
(fp_text user "${REFERENCE}" (at 0 5.08) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c8a9c55-7134-48c7-8144-d580f597deb4)
)
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 253a98af-156d-428c-8024-d764f9dfb084))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6275955d-f34c-4807-a564-15740081acdf))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 69a9906e-c76d-4012-ae67-e7cef75bac84))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 6c66d9bc-99ce-4e8c-891a-4644698362a8))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 791f922a-b2c5-43c2-8841-ddc07118e691))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e410bfa5-7a42-44e3-9f98-61d058b64f0a))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 3ab9b430-a66e-4e8d-83fc-3606fee18926))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 8dc041a5-5a98-4b0a-bc1a-8bcdd1251c4b))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 90f2bfaf-c485-4cde-8a34-bc08ed0719ed))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp f802b2f3-250e-485b-93ec-31389a72380c))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 2389aa68-046b-4d55-a758-de4195dc8850))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 78377ca7-71a7-465b-bf5d-904f6d3eacd6))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8e53727f-b4df-4a2b-86ac-512016454371))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 97aa2943-373e-41e4-ab89-79759d10f208))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp ba949662-5d84-4cc5-a804-4754dca0eb5e))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "Net-(J6-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 5a26958e-d3ae-4788-80f8-01785ce7f0ac))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "Net-(J6-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp d1b70473-e993-4ded-9022-f36148c2bd7c))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "Net-(J6-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp e4ef1830-1e24-4394-b8bc-b6030544a544))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 7250da89-0395-4091-ab10-f95e8b7b28ff))
(pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+3V3") (pinfunction "Pin_5") (pintype "passive") (tstamp bad384db-1873-4a74-88dc-b72911c529e1))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp b6e59ac5-b40a-4635-bb2b-0bd6c78a765d)
(at 117.094 37.084)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0784a0a-ca07-41fe-addf-8e3be928cb3a)
)
(fp_text value "MountingHole_3.2mm_M3_DIN965_Pad" (at 0 10.15) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e154e78-94c8-4b31-9ca4-fabaa955b096)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2387acb-e67e-4af9-9436-7c2864dce448)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 6fcebbc0-aa1b-4810-a7b6-77221caff05d))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp fc63809e-040d-4c1c-a8b1-32e8f20cc305))
(pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask) (tstamp 68a45c12-ee15-48c0-9a9c-566b5ea36800))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp bc8e8a79-764c-4f19-adb8-219fb1278b75)
(at 145.044 61.214 90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/ca96ea31-ac7f-4564-a08d-646fb7374aeb")
(attr through_hole)
(fp_text reference "J5" (at 0 10.15 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp d1fbbe8d-c653-4f68-b28b-970bd4731c82)
)
(fp_text value "Conn_01x04_Male" (at -0.508 10.414 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7411040-b382-41a8-a34f-8517442618b9)
)
(fp_text user "${REFERENCE}" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09963290-c231-4203-8940-5bb40f0c10b0)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 00cce979-b7b0-414f-a8ab-d10d36b85e94))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2e9c9545-82f2-494c-bbc7-8cdb6f9704f5))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 342fe263-62d6-41f8-88ef-bfcd3ad675e6))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp a54b11ec-57d0-4a28-ad0e-a42751f7b6df))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp df3e68de-7ed2-4a70-b1de-67bf5d26dafd))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp ea3beab3-dafa-45dc-8bfa-879c42db8932))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 3c6af9c7-e605-46e6-96e2-1e4d1206d373))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 5719a799-c117-489c-a02d-ab4731df309b))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 6a15c701-dfac-45ea-b60e-d7e055a2a106))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 6cf37bfa-fa09-4419-ad54-da14f6c44150))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 65755c06-dd14-48ab-9e89-49d10dd308da))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp a8c82db5-ab97-4017-bd20-6ff343f5a716))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp fdfffc10-2af7-4e80-82e5-5045c14b47a4))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp feb07d75-24f3-4a96-8770-29c3406a0c9d))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp fff01fa0-6538-4ea2-9665-593e48291bcf))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp d05e09d1-dafd-44ed-a672-9c29eaffbba2))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "Net-(J5-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 10937223-dd58-4ed0-b669-3031a0fdf476))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "Net-(J5-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 3f534a1a-c25b-4e60-bee8-6c49090f2d10))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 6a368b91-ff31-4032-a365-225a57f993ad))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 65A07381) (tstamp bc9178e3-b4e7-43c7-98c3-97314f4b7e85)
(at 173.99 37.084)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2fdced9d-3fa0-42dd-ad68-e6bcb2f025ca)
)
(fp_text value "MountingHole_3.2mm_M3_DIN965_Pad" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7711842-3190-45f6-8285-a1ca80dc43f4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d39264ee-84b0-41d2-9f0b-3c642922adbe)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 66a10843-96c8-4795-940c-beae7ad219a6))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 7a9290d1-1995-4658-8b49-011b528e9f83))
(pad "2" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask) (tstamp 7f675665-2cbb-40fc-9455-d5eb4fd49a15))
)
(footprint "logo:anavi-logo" (layer "F.Cu")
(tedit 0) (tstamp c1982966-86d2-469d-8d70-d9749f2686e5)
(at 123.19 60.198)
(attr through_hole)
(fp_text reference "G***" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp a3fc79d6-0094-4a47-966b-3e6a77ee0d68)
)
(fp_text value "LOGO" (at 0.75 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp 4e48f2b1-7e80-47ec-824b-883a968ad9f9)
)
(fp_poly (pts
(xy 1.693334 1.693334)
(xy -1.693333 1.693334)
(xy -1.693333 -1.524)
(xy -1.185333 -1.524)
(xy -1.185333 1.185334)
(xy 1.439334 1.185334)
(xy 1.439334 -1.524)
(xy -1.185333 -1.524)
(xy -1.693333 -1.524)
(xy -1.693333 -1.778)
(xy 1.693334 -1.778)
(xy 1.693334 1.693334)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp a4f92e98-9948-4fe7-9593-97fe8797b7e6))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 65A07389) (tstamp c80eb251-774b-4eba-ae03-9400df236e70)
(at 173.99 61.722)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 129c38c9-dd77-4612-acd6-80d130a3d089)
)
(fp_text value "MountingHole_3.2mm_M3_DIN965_Pad" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b70bb7e6-86f8-4112-8339-329d70c14550)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aec34dcf-4fd4-41b2-8bf7-a10fdef831ac)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp ce33732d-fbfb-4f57-9861-fed05c98dcf2))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp e4da50b9-8ddc-4bbb-858f-f10c1edee0b7))
(pad "3" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask) (tstamp 4cab68d6-f2b4-4459-82d5-4c5d5d94fdef))
)
(footprint "LED_SMD:LED_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp cb438843-ed0d-411e-bfc5-3c174b13b68c)
(at 139.192 60.706)
(descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/1b831bb2-1e8c-41f3-a758-d83c2e82bf75")
(attr smd)
(fp_text reference "D1" (at 0 2.159) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp eed28a44-bddf-462e-8a43-ccd5f9988091)
)
(fp_text value "KP-3216EC" (at 0.0508 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9b1b22b-1009-4772-8e07-56ad65f011c7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp f0171ac8-a0fb-47d8-8b5b-b5e6f52da220)
)
(fp_line (start -2.285 -1.135) (end -2.285 1.135) (layer "F.SilkS") (width 0.12) (tstamp 447e5882-860c-4e96-b185-356241d7142f))
(fp_line (start 1.6 -1.135) (end -2.285 -1.135) (layer "F.SilkS") (width 0.12) (tstamp 531279c0-34b1-4a3f-903e-0e74c9a65a51))
(fp_line (start -2.285 1.135) (end 1.6 1.135) (layer "F.SilkS") (width 0.12) (tstamp 82b20692-18f3-42f9-b84e-cc52f609679c))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 0158dc01-9bf3-4790-9026-f6a57ca733ab))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 618ad346-24d0-4905-a0a6-ccdb54731a90))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 7036b744-5b80-4a03-a228-1abb46c5e5eb))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp a8e55b34-4798-4f7c-aee3-8ca78260a315))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 180c5448-3d3e-49f1-b655-4a64a70b336b))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp 296b9d47-6790-4880-ad18-d49058804612))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 33150f27-98b3-4b2a-92cc-16b50b335e66))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 87d12864-a0e8-4310-9a66-a8b9c6099da4))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp a0688260-74a7-4f2c-9b0c-212164329bbf))
(pad "1" smd roundrect (at -1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 16bcb3ad-bced-43b9-b1e9-04f1ddd49272))
(pad "2" smd roundrect (at 1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 2 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 89093827-bb23-4e39-8ebb-d4aae8eed604))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp cee25955-9e13-45c9-9d86-cf56eac2b929)
(at 132.588 49.403 -90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "anavi-miracle-emitter.kicad_sch")
(property "Sheetname" "")
(path "/39b48ced-6389-4046-bc30-b3fa0891178d")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.33 -270) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 45bcfb46-28b0-4271-bdc2-4f1dfb3523c7)
)
(fp_text value "Conn_01x04_Female" (at 0 9.95 -270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bad2fc9b-9ffb-44c2-b1b7-fb27e8bb6176)
)
(fp_text user "${REFERENCE}" (at 0 3.81) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f26421b-a926-4ddd-aad3-417c8a4b9595)