-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathanavi-light.kicad_pcb
More file actions
4001 lines (3966 loc) · 185 KB
/
anavi-light.kicad_pcb
File metadata and controls
4001 lines (3966 loc) · 185 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
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 Infra pHAT")
(date "2017-01-21")
(company "Anavi Technology")
)
(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)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010ec_80000001)
(disableapertmacros false)
(usegerberextensions true)
(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/rev1.1")
)
)
(net 0 "")
(net 1 "+3V3")
(net 2 "GND")
(net 3 "+5V")
(net 4 "Net-(JP1-Pad1)")
(net 5 "Net-(R2-Pad2)")
(net 6 "Net-(R3-Pad2)")
(net 7 "/TXD")
(net 8 "/RXD")
(net 9 "Net-(PIR1-Pad2)")
(net 10 "Net-(Q1-Pad4)")
(net 11 "Net-(Q1-Pad5)")
(net 12 "Net-(Q2-Pad4)")
(net 13 "Net-(Q2-Pad5)")
(net 14 "Net-(Q3-Pad4)")
(net 15 "Net-(Q3-Pad5)")
(net 16 "Net-(DC1-Pad3)")
(net 17 "Net-(R4-Pad2)")
(net 18 "Net-(R5-Pad2)")
(net 19 "Net-(R6-Pad2)")
(net 20 "Net-(R7-Pad2)")
(net 21 "Net-(R8-Pad2)")
(footprint "Capacitors_SMD:C_0603_HandSoldering" (layer "F.Cu")
(tedit 5991FE5B) (tstamp 00000000-0000-0000-0000-000058831703)
(at 209.97 83.94 90)
(descr "Capacitor SMD 0603, hand soldering")
(tags "capacitor 0603")
(path "/00000000-0000-0000-0000-000056fb5967")
(attr smd)
(fp_text reference "C1" (at 1.771 -1.309 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb)
)
(fp_text value "0.1" (at 0 1.9 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca)
)
(fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer "F.SilkS") (width 0.15) (tstamp 66116376-6967-4178-9f23-a26cdeafc400))
(fp_line (start 0.35 0.6) (end -0.35 0.6) (layer "F.SilkS") (width 0.15) (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8))
(fp_line (start -1.85 -0.75) (end -1.85 0.75) (layer "F.CrtYd") (width 0.05) (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc))
(fp_line (start -1.85 -0.75) (end 1.85 -0.75) (layer "F.CrtYd") (width 0.05) (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72))
(fp_line (start 1.85 -0.75) (end 1.85 0.75) (layer "F.CrtYd") (width 0.05) (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45))
(fp_line (start -1.85 0.75) (end 1.85 0.75) (layer "F.CrtYd") (width 0.05) (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b))
(pad "1" smd rect locked (at -0.95 0 90) (size 1.2 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137))
(pad "2" smd rect locked (at 0.95 0 90) (size 1.2 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce))
(model "Capacitors_SMD.3dshapes/C_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x02" (layer "F.Cu")
(tedit 5991FBDA) (tstamp 00000000-0000-0000-0000-00005883171b)
(at 209.97 94.1)
(descr "Through hole pin header")
(tags "pin header")
(path "/00000000-0000-0000-0000-0000570c5478")
(attr through_hole)
(fp_text reference "JP1" (at -2.325 1.15 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03)
)
(fp_text value "JUMPER" (at 0 -3.1) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497)
)
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer "F.SilkS") (width 0.15) (tstamp 127679a9-3981-4934-815e-896a4e3ff56e))
(fp_line (start 1.27 1.27) (end 1.27 3.81) (layer "F.SilkS") (width 0.15) (tstamp 54365317-1355-4216-bb75-829375abc4ec))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c))
(fp_line (start -1.27 1.27) (end -1.27 3.81) (layer "F.SilkS") (width 0.15) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer "F.SilkS") (width 0.15) (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9))
(fp_line (start -1.75 4.3) (end 1.75 4.3) (layer "F.CrtYd") (width 0.05) (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6))
(fp_line (start -1.75 -1.75) (end -1.75 4.3) (layer "F.CrtYd") (width 0.05) (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3))
(fp_line (start 1.75 -1.75) (end 1.75 4.3) (layer "F.CrtYd") (width 0.05) (tstamp c144caa5-b0d4-4cef-840a-d4ad178a2102))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506))
(pad "1" thru_hole rect locked (at 0 0) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 4 "Net-(JP1-Pad1)") (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11))
(pad "2" thru_hole oval locked (at 0 2.54) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_1x02.wrl"
(offset (xyz 0 -1.269999981 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5991FE5E) (tstamp 00000000-0000-0000-0000-000058831728)
(at 209.97 89.02 -90)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-000056fb57dd")
(attr smd)
(fp_text reference "R1" (at 0.388 1.309 -90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp ce83728b-bebd-48c2-8734-b6a50d837931)
)
(fp_text value "1K" (at 0 1.9 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c41b3c8b-634e-435a-b582-96b83bbd4032)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
(pad "1" smd rect locked (at -1.1 0 270) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
(pad "2" smd rect locked (at 1.1 0 270) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(JP1-Pad1)") (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5991FE57) (tstamp 00000000-0000-0000-0000-00005883172e)
(at 206.375 87.884 180)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-000056fb589d")
(attr smd)
(fp_text reference "R2" (at 0 -1.397 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d)
)
(fp_text value "4.7K" (at 0 1.9 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3)
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
(pad "1" smd rect locked (at -1.1 0 180) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(pad "2" smd rect locked (at 1.1 0 180) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(R2-Pad2)") (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5991FE59) (tstamp 00000000-0000-0000-0000-000058831734)
(at 206.4385 83.82 180)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-000056fb5912")
(attr smd)
(fp_text reference "R3" (at 0 1.524 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a)
)
(fp_text value "4.7K" (at 0 1.9 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
(pad "1" smd rect locked (at -1.1 0 180) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (tstamp 852dabbf-de45-4470-8176-59d37a754407))
(pad "2" smd rect locked (at 1.1 0 180) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(R3-Pad2)") (tstamp 66043bca-a260-4915-9fce-8a51d324c687))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_2x20" (layer "F.Cu")
(tedit 588FBD82) (tstamp 00000000-0000-0000-0000-000058831778)
(at 156.85 79.8 90)
(descr "Through hole pin header")
(tags "pin header")
(path "/00000000-0000-0000-0000-000056fb7c7a")
(attr through_hole)
(fp_text reference "RASP_CONN1" (at 0 -5.1 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53c85970-3e21-4fae-a84f-721cfc0513b5)
)
(fp_text value "Raspberry_PI" (at 0 -3.1 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34871042-9d5c-4e29-abdd-a168368c3c22)
)
(fp_line (start 3.81 49.53) (end 3.81 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 4831966c-bb32-4bc8-a400-0382a02ffa1c))
(fp_line (start 3.81 49.53) (end -1.27 49.53) (layer "F.SilkS") (width 0.15) (tstamp 4d4b0fcd-2c79-4fc3-b5fa-7a0741601344))
(fp_line (start 0 -1.55) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 587a157d-dedf-4558-a037-1a94bbba1848))
(fp_line (start -1.55 -1.55) (end -1.55 0) (layer "F.SilkS") (width 0.15) (tstamp 75286985-9fa5-4d30-89c5-493b6e63cd66))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp 78f88cf6-751c-4e9b-ae75-fb8b6d44ff39))
(fp_line (start 3.81 -1.27) (end 1.27 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 9762c9ed-64d8-4f3e-baf6-f6ba6effc919))
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp c19dbe3c-ced0-48f7-a91d-777569cfb936))
(fp_line (start -1.27 1.27) (end -1.27 49.53) (layer "F.SilkS") (width 0.15) (tstamp e25ce415-914a-48fe-bf09-324317917b2e))
(fp_line (start -1.75 50.05) (end 4.3 50.05) (layer "F.CrtYd") (width 0.05) (tstamp 2bf3f24b-fd30-41a7-a274-9b519491916b))
(fp_line (start 4.3 -1.75) (end 4.3 50.05) (layer "F.CrtYd") (width 0.05) (tstamp a9ec539a-d80d-40cc-803c-12b6adefe42a))
(fp_line (start -1.75 -1.75) (end 4.3 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp c264c438-a475-4ad4-9915-0f1e6ecf3053))
(fp_line (start -1.75 -1.75) (end -1.75 50.05) (layer "F.CrtYd") (width 0.05) (tstamp ef1b4b98-541b-4673-a04f-2043250fc40a))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (tstamp 0867287d-2e6a-4d69-a366-c29f88198f2b))
(pad "2" thru_hole oval locked (at 2.54 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 3 "+5V") (tstamp afd3dbad-e7a8-4e4c-b77c-4065a69aefa2))
(pad "3" thru_hole oval locked (at 0 2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 17 "Net-(R4-Pad2)") (tstamp 1b54105e-6590-4d26-a763-ecfcf81eedc4))
(pad "4" thru_hole oval locked (at 2.54 2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 3 "+5V") (tstamp 0f41a909-27c4-4be2-9d5e-9ae2108c8ff5))
(pad "5" thru_hole oval locked (at 0 5.08 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 18 "Net-(R5-Pad2)") (tstamp 632acde9-b7fd-4f04-8cb4-d2cbb06b3595))
(pad "6" thru_hole oval locked (at 2.54 5.08 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 35354519-a28c-40c4-befd-0943e98dea53))
(pad "7" thru_hole oval locked (at 0 7.62 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 9 "Net-(PIR1-Pad2)") (tstamp 38f2d955-ea7a-4a21-aba6-02ae23f1bd4a))
(pad "8" thru_hole oval locked (at 2.54 7.62 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 7 "/TXD") (tstamp 6b25f522-8e2d-4cd8-9d5d-a2b80f60133b))
(pad "9" thru_hole oval locked (at 0 10.16 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp dabe541b-b164-4180-97a4-5ca761b86800))
(pad "10" thru_hole oval locked (at 2.54 10.16 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 8 "/RXD") (tstamp e12e827e-36be-4503-8eef-6fc7e8bc5d49))
(pad "11" thru_hole oval locked (at 0 12.7 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp 9dab0cb7-2557-4419-963b-5ae736517f62))
(pad "12" thru_hole oval locked (at 2.54 12.7 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp 417f13e4-c121-485a-a6b5-8b55e70350b8))
(pad "13" thru_hole oval locked (at 0 15.24 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp c201e1b2-fc01-4110-bdaa-a33290468c83))
(pad "14" thru_hole oval locked (at 2.54 15.24 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 0088d107-13d8-496c-8da6-7bbeb9d096b0))
(pad "15" thru_hole oval locked (at 0 17.78 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp 6a780180-586a-4241-a52d-dc7a5ffcc966))
(pad "16" thru_hole oval locked (at 2.54 17.78 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp 68e09be7-3bbc-4443-a838-209ce20b2bef))
(pad "17" thru_hole oval locked (at 0 20.32 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (tstamp 67621f9e-0a6a-4778-ad69-04dcf300659c))
(pad "18" thru_hole oval locked (at 2.54 20.32 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp 128e34ce-eee7-477d-b905-a493e98db783))
(pad "19" thru_hole oval locked (at 0 22.86 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 19 "Net-(R6-Pad2)") (tstamp c801d42e-dd94-493e-bd2f-6c3ddad43f55))
(pad "20" thru_hole oval locked (at 2.54 22.86 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 3172f2e2-18d2-4a80-ae30-5707b3409798))
(pad "21" thru_hole oval locked (at 0 25.4 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 20 "Net-(R7-Pad2)") (tstamp 712d6a7d-2b62-464f-b745-fd2a6b0187f6))
(pad "22" thru_hole oval locked (at 2.54 25.4 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp b3d08afa-f296-4e3b-8825-73b6331d35bf))
(pad "23" thru_hole oval locked (at 0 27.94 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 21 "Net-(R8-Pad2)") (tstamp 98e81e80-1f85-4152-be3f-99785ea97751))
(pad "24" thru_hole oval locked (at 2.54 27.94 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp 842e430f-0c35-45f3-a0b5-95ae7b7ae388))
(pad "25" thru_hole oval locked (at 0 30.48 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef))
(pad "26" thru_hole oval locked (at 2.54 30.48 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp 03d88a85-11fd-47aa-954c-c318bb15294a))
(pad "27" thru_hole oval locked (at 0 33.02 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 6 "Net-(R3-Pad2)") (tstamp 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b))
(pad "28" thru_hole oval locked (at 2.54 33.02 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 5 "Net-(R2-Pad2)") (tstamp 0dcdf1b8-13c6-48b4-bd94-5d26038ff231))
(pad "29" thru_hole oval locked (at 0 35.56 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp dde3dba8-1b81-466c-93a3-c284ff4da1ef))
(pad "30" thru_hole oval locked (at 2.54 35.56 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 58dc14f9-c158-4824-a84e-24a6a482a7a4))
(pad "31" thru_hole oval locked (at 0 38.1 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp f976e2cc-36f9-4479-a816-2c74d1d5da6f))
(pad "32" thru_hole oval locked (at 2.54 38.1 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp b635b16e-60bb-4b3e-9fc3-47d34eef8381))
(pad "33" thru_hole oval locked (at 0 40.64 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp 13475e15-f37c-4de8-857e-1722b0c39513))
(pad "34" thru_hole oval locked (at 2.54 40.64 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 2732632c-4768-42b6-bf7f-14643424019e))
(pad "35" thru_hole oval locked (at 0 43.18 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp 854dd5d4-5fd2-4730-bd49-a9cd8299a065))
(pad "36" thru_hole oval locked (at 2.54 43.18 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp 120a7b0f-ddfd-4447-85c1-35665465acdb))
(pad "37" thru_hole oval locked (at 0 45.72 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp 8d55e186-3e11-40e8-a65e-b36a8a00069e))
(pad "38" thru_hole oval locked (at 2.54 45.72 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp 48f827a8-6e22-4a2e-abdc-c2a03098d883))
(pad "39" thru_hole oval locked (at 0 48.26 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp e877bf4a-4210-4bd3-b7b0-806eb4affc5b))
(pad "40" thru_hole oval locked (at 2.54 48.26 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS") (tstamp cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_2x20.wrl"
(offset (xyz 1.269999981 -24.12999964 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x04" (layer "F.Cu")
(tedit 588FBD3A) (tstamp 00000000-0000-0000-0000-000058831780)
(at 176.3785 95.0525 -90)
(descr "Through hole pin header")
(tags "pin header")
(path "/00000000-0000-0000-0000-00005704a9c3")
(attr through_hole)
(fp_text reference "SENS1" (at 0 -5.1 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b)
)
(fp_text value "I2C_SENS_1" (at 0 -3.1 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4)
)
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97))
(fp_line (start -1.27 8.89) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0))
(fp_line (start -1.27 1.27) (end -1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer "F.SilkS") (width 0.15) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
(fp_line (start 1.27 1.27) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(fp_line (start 1.75 -1.75) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
(fp_line (start -1.75 9.4) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
(fp_line (start -1.75 -1.75) (end -1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(pad "1" thru_hole rect locked (at 0 0 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306))
(pad "2" thru_hole oval locked (at 0 2.54 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8))
(pad "3" thru_hole oval locked (at 0 5.08 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 18 "Net-(R5-Pad2)") (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e))
(pad "4" thru_hole oval locked (at 0 7.62 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 17 "Net-(R4-Pad2)") (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_1x04.wrl"
(offset (xyz 0 -3.809999943 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x04" (layer "F.Cu")
(tedit 588FBD33) (tstamp 00000000-0000-0000-0000-000058831788)
(at 176.3785 89.9725 -90)
(descr "Through hole pin header")
(tags "pin header")
(path "/00000000-0000-0000-0000-00005752a123")
(attr through_hole)
(fp_text reference "SENS2" (at 0 -5.1 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338)
)
(fp_text value "I2C_SENS_1" (at 0 -3.1 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9)
)
(fp_line (start 1.27 1.27) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd))
(fp_line (start -1.27 8.89) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 4780a290-d25c-4459-9579-eba3f7678762))
(fp_line (start -1.27 1.27) (end -1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer "F.SilkS") (width 0.15) (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7))
(fp_line (start -1.75 9.4) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
(fp_line (start 1.75 -1.75) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(fp_line (start -1.75 -1.75) (end -1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
(pad "1" thru_hole rect locked (at 0 0 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
(pad "2" thru_hole oval locked (at 0 2.54 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
(pad "3" thru_hole oval locked (at 0 5.08 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 18 "Net-(R5-Pad2)") (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
(pad "4" thru_hole oval locked (at 0 7.62 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 17 "Net-(R4-Pad2)") (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_1x04.wrl"
(offset (xyz 0 -3.809999943 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x04" (layer "F.Cu")
(tedit 588FBD12) (tstamp 00000000-0000-0000-0000-000058831790)
(at 176.3785 84.8925 -90)
(descr "Through hole pin header")
(tags "pin header")
(path "/00000000-0000-0000-0000-00005752a2f7")
(attr through_hole)
(fp_text reference "SENS3" (at 0 -5.1 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8)
)
(fp_text value "I2C_SENS_1" (at 0 -3.1 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d)
)
(fp_line (start -1.27 8.89) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067))
(fp_line (start 1.27 1.27) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer "F.SilkS") (width 0.15) (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
(fp_line (start -1.27 1.27) (end -1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
(fp_line (start -1.75 -1.75) (end -1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
(fp_line (start -1.75 9.4) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp a15a7506-eae4-4933-84da-9ad754258706))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
(fp_line (start 1.75 -1.75) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(pad "1" thru_hole rect locked (at 0 0 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160))
(pad "2" thru_hole oval locked (at 0 2.54 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d))
(pad "3" thru_hole oval locked (at 0 5.08 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 18 "Net-(R5-Pad2)") (tstamp ffd175d1-912a-4224-be1e-a8198680f46b))
(pad "4" thru_hole oval locked (at 0 7.62 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 17 "Net-(R4-Pad2)") (tstamp 8412992d-8754-44de-9e08-115cec1a3eff))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_1x04.wrl"
(offset (xyz 0 -3.809999943 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Housings_DIP:DIP-8_W7.62mm" (layer "F.Cu")
(tedit 588FBD0C) (tstamp 00000000-0000-0000-0000-00005883179c)
(at 194.6275 84.6455)
(descr "8-lead dip package, row spacing 7.62 mm (300 mils)")
(tags "dil dip 2.54 300")
(path "/00000000-0000-0000-0000-000056fb5761")
(attr through_hole)
(fp_text reference "U1" (at 0 -5.22) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa02e544-13f5-4cf8-a5f4-3e6cda006090)
)
(fp_text value "CAT24C32WI-GT3" (at 0 -3.72) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a44418c-7bb4-4e99-8836-57f153c19721)
)
(fp_line (start 0.135 -2.295) (end 7.485 -2.295) (layer "F.SilkS") (width 0.15) (tstamp 0a3cc030-c9dd-4d74-9d50-715ed2b361a2))
(fp_line (start 7.485 9.915) (end 7.485 8.645) (layer "F.SilkS") (width 0.15) (tstamp 15875808-74d5-4210-b8ca-aa8fbc04ae21))
(fp_line (start 7.485 -2.295) (end 7.485 -1.025) (layer "F.SilkS") (width 0.15) (tstamp 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd))
(fp_line (start 0.135 9.915) (end 7.485 9.915) (layer "F.SilkS") (width 0.15) (tstamp 8322f275-268c-4e87-a69f-4cfbf05e747f))
(fp_line (start 0.135 -2.295) (end 0.135 -1.025) (layer "F.SilkS") (width 0.15) (tstamp b1169a2d-8998-4b50-a48d-c520bcc1b8e1))
(fp_line (start 0.135 -1.025) (end -0.8 -1.025) (layer "F.SilkS") (width 0.15) (tstamp b6270a28-e0d9-4655-a18a-03dbf007b940))
(fp_line (start 0.135 9.915) (end 0.135 8.645) (layer "F.SilkS") (width 0.15) (tstamp dd00c2e1-6027-4717-b312-4fab3ee52002))
(fp_line (start -1.05 -2.45) (end -1.05 10.1) (layer "F.CrtYd") (width 0.05) (tstamp 0147f16a-c952-4891-8f53-a9fb8cddeb8d))
(fp_line (start -1.05 10.1) (end 8.65 10.1) (layer "F.CrtYd") (width 0.05) (tstamp 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f))
(fp_line (start 8.65 -2.45) (end 8.65 10.1) (layer "F.CrtYd") (width 0.05) (tstamp d1262c4d-2245-4c4f-8f35-7bb32cd9e21e))
(fp_line (start -1.05 -2.45) (end 8.65 -2.45) (layer "F.CrtYd") (width 0.05) (tstamp d22e95aa-f3db-4fbc-a331-048a2523233e))
(pad "1" thru_hole oval locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp f3490fa5-5a27-423b-af60-53609669542c))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 1860e030-7a36-4298-b7fc-a16d48ab15ba))
(pad "3" thru_hole oval locked (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 3dcc657b-55a1-48e0-9667-e01e7b6b08b5))
(pad "4" thru_hole oval locked (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 67f6e996-3c99-493c-8f6f-e739e2ed5d7a))
(pad "5" thru_hole oval locked (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 6 "Net-(R3-Pad2)") (tstamp 32667662-ae86-4904-b198-3e95f11851bf))
(pad "6" thru_hole oval locked (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 5 "Net-(R2-Pad2)") (tstamp a05d7640-f2f6-4ba7-8c51-5a4af431fc13))
(pad "7" thru_hole oval locked (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 4 "Net-(JP1-Pad1)") (tstamp 13abf99d-5265-4779-8973-e94370fd18ff))
(pad "8" thru_hole oval locked (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (tstamp a7520ad3-0f8b-4788-92d4-8ffb277041e6))
(model "Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x04" (layer "F.Cu")
(tedit 597050E7) (tstamp 00000000-0000-0000-0000-0000588317a4)
(at 157.0035 84.9125 90)
(descr "Through hole pin header")
(tags "pin header")
(path "/00000000-0000-0000-0000-0000574eb04e")
(attr through_hole)
(fp_text reference "UART" (at -2.7175 4.0325 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78cbdd6c-4878-4cc5-9a58-0e506478e37d)
)
(fp_text value "CONN_01X04" (at 0 -3.1 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d)
)
(fp_line (start -1.27 8.89) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer "F.SilkS") (width 0.15) (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2))
(fp_line (start 1.27 1.27) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp afb8e687-4a13-41a1-b8c0-89a749e897fe))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae))
(fp_line (start -1.27 1.27) (end -1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp da469d11-a8a4-414b-9449-d151eeaf4853))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp f1830a1b-f0cc-47ae-a2c9-679c82032f14))
(fp_line (start -1.75 9.4) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 62c076a3-d618-44a2-9042-9a08b3576787))
(fp_line (start -1.75 -1.75) (end -1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6))
(fp_line (start 1.75 -1.75) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12))
(pad "1" thru_hole rect locked (at 0 0 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (tstamp e8314017-7be6-4011-9179-37449a29b311))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 7 "/TXD") (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 8 "/RXD") (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_1x04.wrl"
(offset (xyz 0 -3.809999943 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "logo:anavi-logo" (layer "F.Cu")
(tedit 588538F6) (tstamp 00000000-0000-0000-0000-000058884b14)
(at 168.148 102.616)
(attr through_hole)
(fp_text reference "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6)
)
(fp_text value "LOGO" (at 0.75 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp cb24efdd-07c6-4317-9277-131625b065ac)
)
(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 5bcace5d-edd0-4e19-92d0-835e43cf8eb2))
)
(footprint "Mounting_Holes:MountingHole_2.7mm_M2.5_DIN965_Pad" (layer "F.Cu")
(tedit 588FBCDB) (tstamp 00000000-0000-0000-0000-0000588c38c3)
(at 152 78.5)
(descr "Mounting Hole 2.7mm, M2.5, DIN965")
(tags "mounting hole 2.7mm m2.5 din965")
(attr through_hole)
(fp_text reference "REF1" (at 0 -3.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17)
)
(fp_text value "MountingHole_2.7mm_M2.5_DIN965_Pad" (at 0 3.35) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047)
)
(fp_circle (center 0 0) (end 2.35 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(fp_circle (center 0 0) (end 2.6 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
(pad "1" thru_hole circle locked (at 0 0) (size 4.7 4.7) (drill 2.7) (layers *.Cu *.Mask "F.SilkS") (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
)
(footprint "Mounting_Holes:MountingHole_2.7mm_M2.5_DIN965_Pad" (layer "F.Cu")
(tedit 588FBCD6) (tstamp 00000000-0000-0000-0000-0000588c38d0)
(at 210 78.5)
(descr "Mounting Hole 2.7mm, M2.5, DIN965")
(tags "mounting hole 2.7mm m2.5 din965")
(attr through_hole)
(fp_text reference "REF2" (at 0 -3.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097)
)
(fp_text value "MountingHole_2.7mm_M2.5_DIN965_Pad" (at 0 3.35) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3)
)
(fp_circle (center 0 0) (end 2.35 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76))
(fp_circle (center 0 0) (end 2.6 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
(pad "2" thru_hole circle locked (at 0 0) (size 4.7 4.7) (drill 2.7) (layers *.Cu *.Mask "F.SilkS") (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222))
)
(footprint "Mounting_Holes:MountingHole_2.7mm_M2.5_DIN965_Pad" (layer "F.Cu")
(tedit 588FBCC1) (tstamp 00000000-0000-0000-0000-0000588c398a)
(at 210 101.5)
(descr "Mounting Hole 2.7mm, M2.5, DIN965")
(tags "mounting hole 2.7mm m2.5 din965")
(attr through_hole)
(fp_text reference "REF3" (at 0 -3.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955)
)
(fp_text value "MountingHole_2.7mm_M2.5_DIN965_Pad" (at 0 3.35) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7)
)
(fp_circle (center 0 0) (end 2.35 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(fp_circle (center 0 0) (end 2.6 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(pad "3" thru_hole circle locked (at 0 0) (size 4.7 4.7) (drill 2.7) (layers *.Cu *.Mask "F.SilkS") (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
)
(footprint "Mounting_Holes:MountingHole_2.7mm_M2.5_DIN965_Pad" (layer "F.Cu")
(tedit 588FBCE4) (tstamp 00000000-0000-0000-0000-0000588c39a5)
(at 152 101.5)
(descr "Mounting Hole 2.7mm, M2.5, DIN965")
(tags "mounting hole 2.7mm m2.5 din965")
(attr through_hole)
(fp_text reference "REF4" (at 0 -3.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db36f6e3-e72a-487f-bda9-88cc84536f62)
)
(fp_text value "MountingHole_2.7mm_M2.5_DIN965_Pad" (at 0 3.35) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120)
)
(fp_circle (center 0 0) (end 2.35 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80))
(fp_circle (center 0 0) (end 2.6 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
(pad "4" thru_hole circle locked (at 0 0) (size 4.7 4.7) (drill 2.7) (layers *.Cu *.Mask "F.SilkS") (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
)
(footprint "w_conn_misc:dc_socket" (layer "F.Cu")
(tedit 5991FD96) (tstamp 00000000-0000-0000-0000-0000596e2b20)
(at 159.8295 102.1715)
(descr "Socket, DC power supply")
(path "/00000000-0000-0000-0000-0000596e2e5e")
(attr through_hole)
(fp_text reference "DC1" (at 0 8.6995) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733)
)
(fp_text value "dc_jack" (at -0.0635 -8.9535) (layer "F.SilkS") hide
(effects (font (size 1.8 1.8) (thickness 0.4)))
(tstamp be645d0f-8568-47a0-a152-e3ddd33563eb)
)
(fp_line (start -4.50088 -7.29996) (end -4.50088 7.29996) (layer "F.SilkS") (width 0.381) (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee))
(fp_line (start 4.50088 -7.29996) (end -4.50088 -7.29996) (layer "F.SilkS") (width 0.381) (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278))
(fp_line (start -4.50088 7.29996) (end 4.50088 7.29996) (layer "F.SilkS") (width 0.381) (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46))
(fp_line (start 4.50088 7.29996) (end 4.50088 -7.29996) (layer "F.SilkS") (width 0.381) (tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b))
(fp_line (start -4.50088 2.79908) (end 4.50088 2.79908) (layer "F.SilkS") (width 0.381) (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3))
(pad "1" thru_hole oval locked (at 5.30098 -3.50012) (size 1.99898 4.0005) (drill oval 1.00076 2.99974) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770))
(pad "2" thru_hole oval locked (at 0 -0.24892) (size 4.0005 1.99898) (drill oval 2.99974 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp cb16d05e-318b-4e51-867b-70d791d75bea))
(pad "3" thru_hole oval locked (at 0 -6.25094) (size 4.50088 1.99898) (drill oval 3.50012 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 16 "Net-(DC1-Pad3)") (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47))
(model "walter/conn_misc/dc_socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x03" (layer "F.Cu")
(tedit 596FF4D6) (tstamp 00000000-0000-0000-0000-0000596e877c)
(at 151.892 89.9795)
(descr "Through hole pin header")
(tags "pin header")
(path "/00000000-0000-0000-0000-0000596e280f")
(attr through_hole)
(fp_text reference "PIR" (at 0 -2.6035) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21ae9c3a-7138-444e-be38-56a4842ab594)
)
(fp_text value "CONN_01X03" (at 0 -3.1) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863)
)
(fp_line (start -1.27 6.35) (end 1.27 6.35) (layer "F.SilkS") (width 0.15) (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
(fp_line (start -1.27 1.27) (end -1.27 6.35) (layer "F.SilkS") (width 0.15) (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
(fp_line (start 1.27 6.35) (end 1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer "F.SilkS") (width 0.15) (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
(fp_line (start -1.75 6.85) (end 1.75 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
(fp_line (start 1.75 -1.75) (end 1.75 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
(fp_line (start -1.75 -1.75) (end -1.75 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))
(pad "1" thru_hole rect locked (at 0 0) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 3 "+5V") (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
(pad "2" thru_hole oval locked (at 0 2.54) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 9 "Net-(PIR1-Pad2)") (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d))
(pad "3" thru_hole oval locked (at 0 5.08) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 2 "GND") (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl"
(offset (xyz 0 -2.539999962 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "SO-8" (layer "F.Cu")
(tedit 596E39BD) (tstamp 00000000-0000-0000-0000-0000596e9da2)
(at 183.388 96.774 180)
(descr "SO-8 Surface Mount Small Outline 150mil 8pin Package")
(tags "Power Integrations D Package")
(path "/00000000-0000-0000-0000-0000596e3489")
(attr through_hole)
(fp_text reference "Q1" (at 0 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d67a417-188f-4014-9282-000265d80009)
)
(fp_text value "IRF8721PBF-1" (at 0 0 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84e5506c-143e-495f-9aa4-d3a71622f213)
)
(fp_line (start -2.54 1.397) (end 2.54 1.397) (layer "F.SilkS") (width 0.15) (tstamp 097edb1b-8998-4e70-b670-bba125982348))
(fp_line (start -2.54 1.905) (end -2.54 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077))
(fp_line (start -2.54 1.905) (end 2.54 1.905) (layer "F.SilkS") (width 0.15) (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99))
(fp_line (start -2.54 -1.905) (end 2.54 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e))
(fp_line (start 2.54 1.905) (end 2.54 -1.905) (layer "F.SilkS") (width 0.15) (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656))
(fp_circle (center -1.905 0.762) (end -1.778 0.762) (layer "F.SilkS") (width 0.15) (fill none) (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a))
(pad "1" smd oval locked (at -1.905 2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534))
(pad "2" smd oval locked (at -0.635 2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a))
(pad "3" smd oval locked (at 0.635 2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
(pad "4" smd oval locked (at 1.905 2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(Q1-Pad4)") (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
(pad "5" smd oval locked (at 1.905 -2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(Q1-Pad5)") (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
(pad "6" smd oval locked (at 0.635 -2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(Q1-Pad5)") (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
(pad "7" smd oval locked (at -0.635 -2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(Q1-Pad5)") (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
(pad "8" smd oval locked (at -1.905 -2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(Q1-Pad5)") (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
)
(footprint "SO-8" (layer "F.Cu")
(tedit 596E39B8) (tstamp 00000000-0000-0000-0000-0000596e9db4)
(at 183.515 88.773 180)
(descr "SO-8 Surface Mount Small Outline 150mil 8pin Package")
(tags "Power Integrations D Package")
(path "/00000000-0000-0000-0000-0000596e3558")
(attr through_hole)
(fp_text reference "Q2" (at 0 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65134029-dbd2-409a-85a8-13c2a33ff019)
)
(fp_text value "IRF8721PBF-1" (at 0 0 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb)
)
(fp_line (start -2.54 -1.905) (end 2.54 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 101ef598-601d-400e-9ef6-d655fbb1dbfa))
(fp_line (start -2.54 1.905) (end -2.54 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 6781326c-6e0d-4753-8f28-0f5c687e01f9))
(fp_line (start -2.54 1.397) (end 2.54 1.397) (layer "F.SilkS") (width 0.15) (tstamp 7f52d787-caa3-4a92-b1b2-19d554dc29a4))
(fp_line (start 2.54 1.905) (end 2.54 -1.905) (layer "F.SilkS") (width 0.15) (tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb))
(fp_line (start -2.54 1.905) (end 2.54 1.905) (layer "F.SilkS") (width 0.15) (tstamp c8029a4c-945d-42ca-871a-dd73ff50a1a3))
(fp_circle (center -1.905 0.762) (end -1.778 0.762) (layer "F.SilkS") (width 0.15) (fill none) (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151))
(pad "1" smd oval locked (at -1.905 2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 5b34a16c-5a14-4291-8242-ea6d6ac54372))
(pad "2" smd oval locked (at -0.635 2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 35a9f71f-ba35-47f6-814e-4106ac36c51e))
(pad "3" smd oval locked (at 0.635 2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp c094494a-f6f7-43fc-a007-4951484ddf3a))
(pad "4" smd oval locked (at 1.905 2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "Net-(Q2-Pad4)") (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292))
(pad "5" smd oval locked (at 1.905 -2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(Q2-Pad5)") (tstamp e40e8cef-4fb0-4fc3-be09-3875b2cc8469))
(pad "6" smd oval locked (at 0.635 -2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(Q2-Pad5)") (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981))
(pad "7" smd oval locked (at -0.635 -2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(Q2-Pad5)") (tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87))
(pad "8" smd oval locked (at -1.905 -2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(Q2-Pad5)") (tstamp e65b62be-e01b-4688-a999-1d1be370c4ae))
)
(footprint "SO-8" (layer "F.Cu")
(tedit 596E39B4) (tstamp 00000000-0000-0000-0000-0000596e9dc6)
(at 190.373 88.646 180)
(descr "SO-8 Surface Mount Small Outline 150mil 8pin Package")
(tags "Power Integrations D Package")
(path "/00000000-0000-0000-0000-0000596e35f3")
(attr through_hole)
(fp_text reference "Q3" (at 0 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64)
)
(fp_text value "IRF8721PBF-1" (at 0 0 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e)
)
(fp_line (start -2.54 1.905) (end 2.54 1.905) (layer "F.SilkS") (width 0.15) (tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a))
(fp_line (start 2.54 1.905) (end 2.54 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 6fd4442e-30b3-428b-9306-61418a63d311))
(fp_line (start -2.54 1.905) (end -2.54 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42))
(fp_line (start -2.54 -1.905) (end 2.54 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c))
(fp_line (start -2.54 1.397) (end 2.54 1.397) (layer "F.SilkS") (width 0.15) (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b))
(fp_circle (center -1.905 0.762) (end -1.778 0.762) (layer "F.SilkS") (width 0.15) (fill none) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
(pad "1" smd oval locked (at -1.905 2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 3fd54105-4b7e-4004-9801-76ec66108a22))
(pad "2" smd oval locked (at -0.635 2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be))
(pad "3" smd oval locked (at 0.635 2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3))
(pad "4" smd oval locked (at 1.905 2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(Q3-Pad4)") (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e))
(pad "5" smd oval locked (at 1.905 -2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(Q3-Pad5)") (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171))
(pad "6" smd oval locked (at 0.635 -2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(Q3-Pad5)") (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459))
(pad "7" smd oval locked (at -0.635 -2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(Q3-Pad5)") (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490))
(pad "8" smd oval locked (at -1.905 -2.794 180) (size 0.6096 1.4732) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(Q3-Pad5)") (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5))
)
(footprint "myfootprint:TerminalBlock_4PIN" (layer "F.Cu")
(tedit 596FF17E) (tstamp 00000000-0000-0000-0000-0000596e9de0)
(at 189.1665 100.9015)
(descr "4-way 5mm pitch terminal block, Phoenix MKDS series")
(path "/00000000-0000-0000-0000-0000596e3340")
(attr through_hole)
(fp_text reference "RGB1" (at 7.5 5.9) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a5e521b9-814e-4853-a5ac-f158785c6269)
)
(fp_text value "Screw_Terminal_1x04" (at 7.5 -6.6) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 262f1ea9-0133-4b43-be36-456207ea857c)
)
(fp_circle (center 5 0.1) (end 3 0.1) (layer "F.SilkS") (width 0.15) (fill none) (tstamp 22999e73-da32-43a5-9163-4b3a41614f25))
(fp_circle (center 0 0.1) (end 2 0.1) (layer "F.SilkS") (width 0.15) (fill none) (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb))
(fp_circle (center 15 0.1) (end 13 0.1) (layer "F.SilkS") (width 0.15) (fill none) (tstamp 81a15393-727e-448b-a777-b18773023d89))
(fp_circle (center 10 0.1) (end 8 0.1) (layer "F.SilkS") (width 0.15) (fill none) (tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114))
(fp_line (start 17.7 4.8) (end -2.7 4.8) (layer "F.CrtYd") (width 0.05) (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573))
(fp_line (start -2.7 4.8) (end -2.7 -5.4) (layer "F.CrtYd") (width 0.05) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9))
(fp_line (start -2.7 -5.4) (end 17.7 -5.4) (layer "F.CrtYd") (width 0.05) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee))
(fp_line (start 17.7 -5.4) (end 17.7 4.8) (layer "F.CrtYd") (width 0.05) (tstamp ec5c2062-3a41-4636-8803-069e60a1641a))
(pad "1" thru_hole rect locked (at 0 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask)
(net 16 "Net-(DC1-Pad3)") (tstamp c09938fd-06b9-4771-9f63-2311626243b3))
(pad "2" thru_hole circle locked (at 5 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask)
(net 15 "Net-(Q3-Pad5)") (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43))
(pad "3" thru_hole circle locked (at 10 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask)
(net 13 "Net-(Q2-Pad5)") (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc))
(pad "4" thru_hole circle locked (at 15 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask)
(net 11 "Net-(Q1-Pad5)") (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4))
(model "Terminal_Blocks.3dshapes/TerminalBlock_Pheonix_MKDS1.5-4pol.wrl"
(offset (xyz 7.500619887 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5991FD90) (tstamp 00000000-0000-0000-0000-000059704c46)
(at 163.576 89.662)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-0000570c0762")
(attr smd)
(fp_text reference "R4" (at 1.778 1.524) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302)
)
(fp_text value "4.7K" (at 0 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 2846428d-39de-4eae-8ce2-64955d56c493))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 59ec3156-036e-4049-89db-91a9dd07095f))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(R4-Pad2)") (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5991FD5E) (tstamp 00000000-0000-0000-0000-000059704c56)
(at 157.734 89.662)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-0000570c0bd5")
(attr smd)
(fp_text reference "R5" (at -1.524 1.524) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 88668202-3f0b-4d07-84d4-dcd790f57272)
)
(fp_text value "4.7K" (at 0 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4)
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(R5-Pad2)") (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5991FDD6) (tstamp 00000000-0000-0000-0000-00005992023f)
(at 179.451 84.709 90)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-00005991faaa")
(attr smd)
(fp_text reference "R6" (at 2.54 0 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp b6135480-ace6-42b2-9c47-856ef57cded1)
)
(fp_text value "220R" (at 0 1.9 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75)
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386))
(pad "1" smd rect locked (at -1.1 0 90) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(Q1-Pad4)") (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
(pad "2" smd rect locked (at 1.1 0 90) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "Net-(R6-Pad2)") (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131))