-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHalf_Shield.kicad_pcb
executable file
·4992 lines (4935 loc) · 394 KB
/
Half_Shield.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 20171130) (host pcbnew 5.0.2-bee76a0~70~ubuntu18.04.1)
(general
(thickness 1.6)
(drawings 86)
(tracks 584)
(zones 0)
(modules 49)
(nets 45)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal hide)
(32 B.Adhes user hide)
(33 F.Adhes user hide)
(34 B.Paste user hide)
(35 F.Paste user hide)
(36 B.SilkS user hide)
(37 F.SilkS user)
(38 B.Mask user hide)
(39 F.Mask user)
(40 Dwgs.User user hide)
(41 Cmts.User user hide)
(42 Eco1.User user hide)
(43 Eco2.User user hide)
(44 Edge.Cuts user)
(45 Margin user hide)
(46 B.CrtYd user hide)
(47 F.CrtYd user hide)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.25)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.1)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.7 1.7)
(pad_drill 1)
(pad_to_mask_clearance 0)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010f0_ffffffff)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers_1.4/"))
)
(net 0 "")
(net 1 GND)
(net 2 Relay_IN1)
(net 3 Relay_IN2)
(net 4 "Net-(Arduino_Block1-Pad30)")
(net 5 "Net-(Arduino_Block1-Pad28)")
(net 6 "Net-(Arduino_Block1-Pad26)")
(net 7 CS)
(net 8 "Net-(Arduino_Block1-Pad24)")
(net 9 SDI)
(net 10 "Net-(Arduino_Block1-Pad22)")
(net 11 SDO)
(net 12 "Net-(Arduino_Block1-Pad20)")
(net 13 CLK)
(net 14 "Net-(Arduino_Block1-Pad18)")
(net 15 "Net-(Arduino_Block1-Pad16)")
(net 16 "Net-(Arduino_Block1-Pad14)")
(net 17 "Net-(Arduino_Block1-Pad12)")
(net 18 "Net-(Arduino_Block1-Pad10)")
(net 19 "Net-(Arduino_Block1-Pad8)")
(net 20 "Net-(Arduino_Block1-Pad6)")
(net 21 "Net-(Arduino_Block1-Pad4)")
(net 22 +5V)
(net 23 pH_TX)
(net 24 pH_RX)
(net 25 "Net-(PT100_Input1-Pad3)")
(net 26 "Net-(PT100_Input1-Pad2)")
(net 27 "Net-(AC-L1-Pad1)")
(net 28 "Net-(AC-N1-Pad1)")
(net 29 "Net-(LCD1-Pad3)")
(net 30 "Net-(LCD1-Pad15)")
(net 31 "Net-(PT100_Input1-Pad4)")
(net 32 "Net-(A_Buck_9V1-Pad1)")
(net 33 "Net-(Arduino_Block2-Pad4)")
(net 34 "Net-(Arduino_Block2-Pad3)")
(net 35 "Net-(Cbst1-Pad1)")
(net 36 "Net-(Cbst1-Pad2)")
(net 37 "Net-(Cout1-Pad1)")
(net 38 "Net-(Rfbb1-Pad1)")
(net 39 "Net-(C2-Pad2)")
(net 40 "Net-(C3-Pad2)")
(net 41 "Net-(C4-Pad1)")
(net 42 "Net-(C5-Pad2)")
(net 43 "Net-(C8-Pad2)")
(net 44 Buck_5V)
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +5V)
(add_net Buck_5V)
(add_net CLK)
(add_net CS)
(add_net GND)
(add_net "Net-(AC-L1-Pad1)")
(add_net "Net-(AC-N1-Pad1)")
(add_net "Net-(A_Buck_9V1-Pad1)")
(add_net "Net-(Arduino_Block1-Pad10)")
(add_net "Net-(Arduino_Block1-Pad12)")
(add_net "Net-(Arduino_Block1-Pad14)")
(add_net "Net-(Arduino_Block1-Pad16)")
(add_net "Net-(Arduino_Block1-Pad18)")
(add_net "Net-(Arduino_Block1-Pad20)")
(add_net "Net-(Arduino_Block1-Pad22)")
(add_net "Net-(Arduino_Block1-Pad24)")
(add_net "Net-(Arduino_Block1-Pad26)")
(add_net "Net-(Arduino_Block1-Pad28)")
(add_net "Net-(Arduino_Block1-Pad30)")
(add_net "Net-(Arduino_Block1-Pad4)")
(add_net "Net-(Arduino_Block1-Pad6)")
(add_net "Net-(Arduino_Block1-Pad8)")
(add_net "Net-(Arduino_Block2-Pad3)")
(add_net "Net-(Arduino_Block2-Pad4)")
(add_net "Net-(C2-Pad2)")
(add_net "Net-(C3-Pad2)")
(add_net "Net-(C4-Pad1)")
(add_net "Net-(C5-Pad2)")
(add_net "Net-(C8-Pad2)")
(add_net "Net-(Cbst1-Pad1)")
(add_net "Net-(Cbst1-Pad2)")
(add_net "Net-(Cout1-Pad1)")
(add_net "Net-(LCD1-Pad15)")
(add_net "Net-(LCD1-Pad3)")
(add_net "Net-(PT100_Input1-Pad2)")
(add_net "Net-(PT100_Input1-Pad3)")
(add_net "Net-(PT100_Input1-Pad4)")
(add_net "Net-(Rfbb1-Pad1)")
(add_net Relay_IN1)
(add_net Relay_IN2)
(add_net SDI)
(add_net SDO)
(add_net pH_RX)
(add_net pH_TX)
)
(module SOT95P280X110-6N:SOT95P280X110-6N (layer F.Cu) (tedit 5C903060) (tstamp 5C846AAD)
(at 143.4236 107.3762 270)
(path /5C8766E5)
(attr smd)
(fp_text reference U1 (at -0.0508 -2.5248 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.125)))
)
(fp_text value TPS561208DDC (at 0.0508 0.0254) (layer F.SilkS) hide
(effects (font (size 0.25 0.25) (thickness 0.05)))
)
(fp_circle (center -2.4 -1) (end -2.3 -1) (layer Eco2.User) (width 0.2))
(fp_circle (center -2.4 -1) (end -2.3 -1) (layer F.SilkS) (width 0.2))
(fp_line (start -1.13 -1.5) (end -1.13 -1.78) (layer Eco1.User) (width 0.05))
(fp_line (start -2.13 -1.5) (end -1.13 -1.5) (layer Eco1.User) (width 0.05))
(fp_line (start -2.13 1.5) (end -2.13 -1.5) (layer Eco1.User) (width 0.05))
(fp_line (start -1.13 1.5) (end -2.13 1.5) (layer Eco1.User) (width 0.05))
(fp_line (start -1.13 1.78) (end -1.13 1.5) (layer Eco1.User) (width 0.05))
(fp_line (start 1.13 1.78) (end -1.13 1.78) (layer Eco1.User) (width 0.05))
(fp_line (start 1.13 1.5) (end 1.13 1.78) (layer Eco1.User) (width 0.05))
(fp_line (start 2.13 1.5) (end 1.13 1.5) (layer Eco1.User) (width 0.05))
(fp_line (start 2.13 -1.5) (end 2.13 1.5) (layer Eco1.User) (width 0.05))
(fp_line (start 1.13 -1.5) (end 2.13 -1.5) (layer Eco1.User) (width 0.05))
(fp_line (start 1.13 -1.78) (end 1.13 -1.5) (layer Eco1.User) (width 0.05))
(fp_line (start -1.13 -1.78) (end 1.13 -1.78) (layer Eco1.User) (width 0.05))
(fp_line (start -0.88 1.53) (end 0.88 1.53) (layer F.SilkS) (width 0.127))
(fp_line (start 0.88 -1.53) (end -0.88 -1.53) (layer F.SilkS) (width 0.127))
(fp_line (start -0.88 1.53) (end -0.88 -1.53) (layer Eco2.User) (width 0.127))
(fp_line (start 0.88 1.53) (end -0.88 1.53) (layer Eco2.User) (width 0.127))
(fp_line (start 0.88 -1.53) (end 0.88 1.53) (layer Eco2.User) (width 0.127))
(fp_line (start -0.88 -1.53) (end 0.88 -1.53) (layer Eco2.User) (width 0.127))
(pad 3 smd rect (at -1.255 0.95 270) (size 1.25 0.59) (layers F.Cu F.Paste F.Mask)
(net 32 "Net-(A_Buck_9V1-Pad1)"))
(pad 2 smd rect (at -1.255 0 270) (size 1.25 0.59) (layers F.Cu F.Paste F.Mask)
(net 35 "Net-(Cbst1-Pad1)"))
(pad 1 smd rect (at -1.255 -0.95 270) (size 1.25 0.59) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 4 smd rect (at 1.255 0.95 270) (size 1.25 0.59) (layers F.Cu F.Paste F.Mask)
(net 38 "Net-(Rfbb1-Pad1)"))
(pad 5 smd rect (at 1.255 0 270) (size 1.25 0.59) (layers F.Cu F.Paste F.Mask)
(net 32 "Net-(A_Buck_9V1-Pad1)"))
(pad 6 smd rect (at 1.255 -0.95 270) (size 1.25 0.59) (layers F.Cu F.Paste F.Mask)
(net 36 "Net-(Cbst1-Pad2)"))
)
(module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer F.Cu) (tedit 5C42CB0E) (tstamp 5C42CCF8)
(at 138.5824 99.6188)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(path /5A6F12DD)
(fp_text reference A_Buck_9V1 (at 0 -2.33) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value HEADER_1 (at 0 2.33) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "Net-(A_Buck_9V1-Pad1)"))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Another_lcd_footprint:WC1602A_mod (layer F.Cu) (tedit 5A83FC7A) (tstamp 5C69145C)
(at 109.474 35.5981)
(descr "LCD 16x2 http://www.wincomlcd.com/pdf/WC1602A-SFYLYHTC06.pdf")
(tags "LCD 16x2 Alphanumeric 16pin")
(path /5A480176)
(fp_text reference LCD1 (at 44.6024 -0.2413) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WC1602A (at -4.31 34.66) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -8.14 33.64) (end 72.14 33.64) (layer F.SilkS) (width 0.12))
(fp_line (start 72.14 33.64) (end 72.14 -2.64) (layer F.SilkS) (width 0.12))
(fp_line (start 72.14 -2.64) (end -7.34 -2.64) (layer F.SilkS) (width 0.12))
(fp_line (start -8.14 -2.64) (end -8.14 33.64) (layer F.SilkS) (width 0.12))
(fp_line (start -8.13 -2.64) (end -7.34 -2.64) (layer F.SilkS) (width 0.12))
(fp_line (start -8.25 -2.75) (end -8.25 33.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -8.25 33.75) (end 72.25 33.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 72.25 -2.75) (end 72.25 33.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -3) (end 1.5 -3) (layer F.SilkS) (width 0.12))
(fp_line (start -8.25 -2.75) (end 72.25 -2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 -2.5) (end 0 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 0 -1.5) (end -1 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start -1 -2.5) (end -8 -2.5) (layer F.Fab) (width 0.1))
(fp_text user %R (at 30.37 14.74) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.1)))
)
(fp_line (start 0.2 8) (end 63.7 8) (layer F.SilkS) (width 0.12))
(fp_line (start -0.29972 22.49932) (end -0.29972 8.5) (layer F.SilkS) (width 0.12))
(fp_line (start 63.70066 23) (end 0.2 23) (layer F.SilkS) (width 0.12))
(fp_line (start 64.2 8.5) (end 64.2 22.5) (layer F.SilkS) (width 0.12))
(fp_arc (start 63.7 8.5) (end 63.7 8) (angle 90) (layer F.SilkS) (width 0.12))
(fp_arc (start 63.70066 22.49932) (end 64.20104 22.49932) (angle 90) (layer F.SilkS) (width 0.12))
(fp_arc (start 0.20066 22.49932) (end 0.20066 22.9997) (angle 90) (layer F.SilkS) (width 0.12))
(fp_arc (start 0.20066 8.49884) (end -0.29972 8.49884) (angle 90) (layer F.SilkS) (width 0.12))
(fp_line (start -5 3) (end 68 3) (layer F.SilkS) (width 0.12))
(fp_line (start 68 3) (end 68 28) (layer F.SilkS) (width 0.12))
(fp_line (start 68 28) (end -5 28) (layer F.SilkS) (width 0.12))
(fp_line (start -5 28) (end -5 3) (layer F.SilkS) (width 0.12))
(fp_line (start 1 -2.5) (end 72 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start 72 -2.5) (end 72 33.5) (layer F.Fab) (width 0.1))
(fp_line (start 72 33.5) (end -8 33.5) (layer F.Fab) (width 0.1))
(fp_line (start -8 33.5) (end -8 -2.5) (layer F.Fab) (width 0.1))
(pad 1 thru_hole rect (at 0 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole oval (at 2.54 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 39 "Net-(C2-Pad2)"))
(pad 3 thru_hole oval (at 5.08 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 29 "Net-(LCD1-Pad3)"))
(pad 4 thru_hole oval (at 7.62 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 20 "Net-(Arduino_Block1-Pad6)"))
(pad 5 thru_hole oval (at 10.16 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 1 GND))
(pad 6 thru_hole oval (at 12.7 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 21 "Net-(Arduino_Block1-Pad4)"))
(pad 7 thru_hole oval (at 15.24 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask))
(pad 8 thru_hole oval (at 17.78 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask))
(pad 9 thru_hole oval (at 20.32 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask))
(pad 10 thru_hole oval (at 22.86 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask))
(pad 11 thru_hole oval (at 25.4 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 19 "Net-(Arduino_Block1-Pad8)"))
(pad 12 thru_hole oval (at 27.94 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 18 "Net-(Arduino_Block1-Pad10)"))
(pad 13 thru_hole oval (at 30.48 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 17 "Net-(Arduino_Block1-Pad12)"))
(pad 14 thru_hole oval (at 33.02 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 16 "Net-(Arduino_Block1-Pad14)"))
(pad 15 thru_hole oval (at 35.56 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 30 "Net-(LCD1-Pad15)"))
(pad 16 thru_hole oval (at 38.1 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 1 GND))
(pad "" thru_hole circle (at 69.49948 31.0007) (size 3 3) (drill 2.5) (layers *.Cu *.Mask))
(pad "" thru_hole circle (at 69.5 0) (size 3 3) (drill 2.5) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/Displays.3dshapes/WC1602A.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ${KISYS3DMOD}/Display.3dshapes/WC1602A.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_2x18_Pitch2.54mm (layer B.Cu) (tedit 5A75E7A6) (tstamp 5A58EA5F)
(at 129.2352 51.9557 180)
(descr "Through hole straight pin header, 2x18, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x18 2.54mm double row")
(path /5A4DFCCE)
(fp_text reference Arduino_Block1 (at 5.1308 -21.3995 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value HEADER_18x2 (at 1.27 -45.51 180) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 1.27 -21.59 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 4.35 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 4.35 -44.95) (end 4.35 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 -44.95) (end 4.35 -44.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 1.8) (end -1.8 -44.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start 1.27 1.33) (end 3.87 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start 1.27 -1.27) (end 1.27 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end 1.27 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start 3.87 1.33) (end 3.87 -44.51) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end -1.33 -44.51) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -44.51) (end 3.87 -44.51) (layer B.SilkS) (width 0.12))
(fp_line (start -1.27 0) (end 0 1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 -44.45) (end -1.27 0) (layer B.Fab) (width 0.1))
(fp_line (start 3.81 -44.45) (end -1.27 -44.45) (layer B.Fab) (width 0.1))
(fp_line (start 3.81 1.27) (end 3.81 -44.45) (layer B.Fab) (width 0.1))
(fp_line (start 0 1.27) (end 3.81 1.27) (layer B.Fab) (width 0.1))
(pad 36 thru_hole oval (at 2.54 -43.18 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 35 thru_hole oval (at 0 -43.18 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 34 thru_hole oval (at 2.54 -40.64 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 33 thru_hole oval (at 0 -40.64 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 32 thru_hole oval (at 2.54 -38.1 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 31 thru_hole oval (at 0 -38.1 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 30 thru_hole oval (at 2.54 -35.56 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(Arduino_Block1-Pad30)"))
(pad 29 thru_hole oval (at 0 -35.56 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 Relay_IN1))
(pad 28 thru_hole oval (at 2.54 -33.02 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "Net-(Arduino_Block1-Pad28)"))
(pad 27 thru_hole oval (at 0 -33.02 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 Relay_IN2))
(pad 26 thru_hole oval (at 2.54 -30.48 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "Net-(Arduino_Block1-Pad26)"))
(pad 25 thru_hole oval (at 0 -30.48 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 CS))
(pad 24 thru_hole oval (at 2.54 -27.94 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "Net-(Arduino_Block1-Pad24)"))
(pad 23 thru_hole oval (at 0 -27.94 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 SDI))
(pad 22 thru_hole oval (at 2.54 -25.4 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "Net-(Arduino_Block1-Pad22)"))
(pad 21 thru_hole oval (at 0 -25.4 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 SDO))
(pad 20 thru_hole oval (at 2.54 -22.86 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "Net-(Arduino_Block1-Pad20)"))
(pad 19 thru_hole oval (at 0 -22.86 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 CLK))
(pad 18 thru_hole oval (at 2.54 -20.32 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "Net-(Arduino_Block1-Pad18)"))
(pad 17 thru_hole oval (at 0 -20.32 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 16 thru_hole oval (at 2.54 -17.78 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "Net-(Arduino_Block1-Pad16)"))
(pad 15 thru_hole oval (at 0 -17.78 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 14 thru_hole oval (at 2.54 -15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "Net-(Arduino_Block1-Pad14)"))
(pad 13 thru_hole oval (at 0 -15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 12 thru_hole oval (at 2.54 -12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "Net-(Arduino_Block1-Pad12)"))
(pad 11 thru_hole oval (at 0 -12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 10 thru_hole oval (at 2.54 -10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "Net-(Arduino_Block1-Pad10)"))
(pad 9 thru_hole oval (at 0 -10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 8 thru_hole oval (at 2.54 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "Net-(Arduino_Block1-Pad8)"))
(pad 7 thru_hole oval (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 6 thru_hole oval (at 2.54 -5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "Net-(Arduino_Block1-Pad6)"))
(pad 5 thru_hole oval (at 0 -5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 4 thru_hole oval (at 2.54 -2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "Net-(Arduino_Block1-Pad4)"))
(pad 3 thru_hole oval (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 2 thru_hole oval (at 2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 +5V))
(pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 +5V))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_2x18_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x18_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm (layer B.Cu) (tedit 5A8A58B6) (tstamp 5A58EA77)
(at 111.4044 51.9557 270)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(path /5A4EEEDE)
(fp_text reference Arduino_Block2 (at 2.5019 -3.9624) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value HEADER_4 (at 0 -9.95 270) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 -3.81 180) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 -9.4) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 -9.4) (end 1.8 -9.4) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 1.8) (end -1.8 -9.4) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start 1.33 -1.27) (end 1.33 -8.95) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end -1.33 -8.95) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -8.95) (end 1.33 -8.95) (layer B.SilkS) (width 0.12))
(fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 -8.89) (end -1.27 0.635) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 -8.89) (end -1.27 -8.89) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end 1.27 -8.89) (layer B.Fab) (width 0.1))
(fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
(pad 4 thru_hole oval (at 0 -7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "Net-(Arduino_Block2-Pad4)"))
(pad 3 thru_hole oval (at 0 -5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 "Net-(Arduino_Block2-Pad3)"))
(pad 2 thru_hole oval (at 0 -2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 pH_TX))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 pH_RX))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x06_Pitch2.54mm (layer B.Cu) (tedit 5A75E79F) (tstamp 5A5D0A98)
(at 124.1552 100.2665 90)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(path /5A4F17D9)
(fp_text reference Arduino_Block3 (at 2.2733 -6.858 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value HEADER_6 (at 0 -15.03 90) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 -6.35) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 -14.5) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 -14.5) (end 1.8 -14.5) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 1.8) (end -1.8 -14.5) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start 1.33 -1.27) (end 1.33 -14.03) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end -1.33 -14.03) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -14.03) (end 1.33 -14.03) (layer B.SilkS) (width 0.12))
(fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 -13.97) (end -1.27 0.635) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 -13.97) (end -1.27 -13.97) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end 1.27 -13.97) (layer B.Fab) (width 0.1))
(fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
(pad 6 thru_hole oval (at 0 -12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 5 thru_hole oval (at 0 -10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 4 thru_hole oval (at 0 -7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 3 thru_hole oval (at 0 -5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 2 thru_hole oval (at 0 -2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x06_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x08_Pitch2.54mm (layer F.Cu) (tedit 5A75E798) (tstamp 5A58EAAD)
(at 127.8636 105.6132 270)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(path /5A4A1986)
(fp_text reference Keypad1 (at -2.3876 8.8392) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value HEADER_8 (at 0 20.11 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 8.89) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 19.55) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 19.55) (end 1.8 19.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 19.11) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 19.11) (end 1.33 19.11) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 19.05) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 19.05) (end -1.27 19.05) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 19.05) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(pad 8 thru_hole oval (at 0 17.78 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "Net-(Arduino_Block1-Pad16)"))
(pad 7 thru_hole oval (at 0 15.24 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "Net-(Arduino_Block1-Pad18)"))
(pad 6 thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "Net-(Arduino_Block1-Pad20)"))
(pad 5 thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "Net-(Arduino_Block1-Pad22)"))
(pad 4 thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "Net-(Arduino_Block1-Pad24)"))
(pad 3 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "Net-(Arduino_Block1-Pad26)"))
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "Net-(Arduino_Block1-Pad28)"))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(Arduino_Block1-Pad30)"))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x08_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Socket_Strips:Socket_Strip_Straight_1x05_Pitch2.54mm (layer F.Cu) (tedit 5A675685) (tstamp 5A755B52)
(at 137.5156 73.8505)
(descr "Through hole straight socket strip, 1x05, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x05 2.54mm single row")
(path /5A48E2AC)
(fp_text reference pH_carrier1 (at -1.9812 4.5847 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value HEADER_5 (at 0 12.49) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 -2.33 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end -1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 11.49) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 11.43) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 11.43) (end 1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -1.27) (end -1.27 11.43) (layer F.Fab) (width 0.1))
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 +5V))
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 pH_TX))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 pH_RX))
(model ${KISYS3DMOD}/Socket_Strips.3dshapes/Socket_Strip_Straight_1x05_Pitch2.54mm.wrl
(offset (xyz 0 -5.079999923706055 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 270))
)
(model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x05_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module TerminalBlock_Phoenix:TerminalBlock_Phoenix_PT-3.5mm_4pol (layer B.Cu) (tedit 5A7016E4) (tstamp 5A742E71)
(at 159.509426 58.350304 90)
(descr "4-way 3.5mm pitch terminal block, Phoenix PT series")
(path /5A6A53CB)
(fp_text reference PT100_Input1 (at 5.2324 -5.8928 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value Screw_Terminal_01x04 (at 5.25 -6 90) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 5.25 0 270) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.9 3.3) (end 12.4 3.3) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.9 -4.7) (end -1.9 3.3) (layer B.CrtYd) (width 0.05))
(fp_line (start 12.4 -4.7) (end -1.9 -4.7) (layer B.CrtYd) (width 0.05))
(fp_line (start 12.4 3.3) (end 12.4 -4.7) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.1) (end 1.75 -4.5) (layer B.SilkS) (width 0.15))
(fp_line (start 5.25 -4.1) (end 5.25 -4.5) (layer B.SilkS) (width 0.15))
(fp_line (start 8.75 -4.1) (end 8.75 -4.5) (layer B.SilkS) (width 0.15))
(fp_line (start -1.75 -3) (end 12.25 -3) (layer B.SilkS) (width 0.15))
(fp_line (start -1.75 -4.1) (end 12.25 -4.1) (layer B.SilkS) (width 0.15))
(fp_line (start -1.75 3.1) (end -1.75 -4.5) (layer B.SilkS) (width 0.15))
(fp_line (start 12.25 -4.5) (end 12.25 3.1) (layer B.SilkS) (width 0.15))
(fp_line (start 12.25 3.1) (end -1.75 3.1) (layer B.SilkS) (width 0.15))
(pad 3 thru_hole circle (at 7 0 90) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 25 "Net-(PT100_Input1-Pad3)"))
(pad 4 thru_hole circle (at 10.5 0 90) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 31 "Net-(PT100_Input1-Pad4)"))
(pad 2 thru_hole circle (at 3.5 0 90) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 26 "Net-(PT100_Input1-Pad2)"))
(pad 1 thru_hole rect (at 0 0 90) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_PT-3.5mm_4pol.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connectors:Stereo_Jack_3.5mm_Switch_Ledino_KB3SPRS (layer B.Cu) (tedit 5A8E07A0) (tstamp 5A742E21)
(at 175.768 62.484 180)
(descr https://www.reichelt.de/index.html?ACTION=7&LA=3&OPEN=0&INDEX=0&FILENAME=C160%252FKB3SPRS.pdf)
(tags "jack stereo TRS")
(path /5A69902D)
(fp_text reference PT100_Jack1 (at 3.3528 4.318 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value Jack_3.5mm_5pin (at 2.3 12.2 180) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -9.3 7.6) (end -9.3 1.6) (layer B.Fab) (width 0.1))
(fp_line (start -9.3 1.6) (end -5.7 1.6) (layer B.Fab) (width 0.1))
(fp_line (start -9.3 7.6) (end -5.7 7.6) (layer B.Fab) (width 0.1))
(fp_line (start -5.7 10.7) (end -5.7 -0.9) (layer B.Fab) (width 0.1))
(fp_line (start -5.7 -0.9) (end 8.6 -0.9) (layer B.Fab) (width 0.1))
(fp_line (start 8.6 -0.9) (end 8.6 10.7) (layer B.Fab) (width 0.1))
(fp_line (start 8.6 10.7) (end -5.7 10.7) (layer B.Fab) (width 0.1))
(fp_text user %R (at 2.7 4.6 180) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -9.8 -2) (end 9.1 -2) (layer B.CrtYd) (width 0.05))
(fp_line (start 9.1 11.4) (end -9.8 11.4) (layer B.CrtYd) (width 0.05))
(fp_line (start -5.8 10.8) (end 2.2 10.8) (layer B.SilkS) (width 0.15))
(fp_line (start 6 10.8) (end 8.7 10.8) (layer B.SilkS) (width 0.15))
(fp_line (start 8.7 10.8) (end 8.7 -1) (layer B.SilkS) (width 0.15))
(fp_line (start 8.7 -1) (end 8.6 -1) (layer B.SilkS) (width 0.15))
(fp_line (start 6 -1) (end 1.9 -1) (layer B.SilkS) (width 0.15))
(fp_line (start -1.9 -1) (end -5.8 -1) (layer B.SilkS) (width 0.15))
(fp_line (start -5.8 -1) (end -5.8 10.8) (layer B.SilkS) (width 0.15))
(fp_line (start -5.8 7.7) (end -9.4 7.7) (layer B.SilkS) (width 0.15))
(fp_line (start -9.4 7.7) (end -9.4 1.5) (layer B.SilkS) (width 0.15))
(fp_line (start -9.4 1.5) (end -5.8 1.5) (layer B.SilkS) (width 0.15))
(fp_line (start -9.8 11.4) (end -9.8 -2) (layer B.CrtYd) (width 0.05))
(fp_line (start 9.1 -2) (end 9.1 11.4) (layer B.CrtYd) (width 0.05))
(pad 1 thru_hole oval (at 0 0 180) (size 4 2.2) (drill 1.3) (layers *.Cu *.Mask)
(net 31 "Net-(PT100_Input1-Pad4)"))
(pad 4 thru_hole oval (at 7.3 0.5 90) (size 4 2.2) (drill 1.3) (layers *.Cu *.Mask))
(pad 5 thru_hole oval (at 2.9 7.1 180) (size 4 2.2) (drill 1.3) (layers *.Cu *.Mask))
(pad 2 thru_hole oval (at 4.1 9.8 180) (size 4 2.2) (drill 1.3) (layers *.Cu *.Mask)
(net 25 "Net-(PT100_Input1-Pad3)"))
(pad 3 thru_hole oval (at -3.9 4.6 180) (size 2.2 4) (drill 1.3) (layers *.Cu *.Mask)
(net 26 "Net-(PT100_Input1-Pad2)"))
(model ${KISYS3DMOD}/Connectors.3dshapes/Stereo_Jack_3.5mm_Switch_Ledino_KB3SPRS.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model /home/konthank/Downloads/CUI_SJ1-3513N/CUI_SJ1-3513N.step
(offset (xyz -9.1 4.5 3))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 180))
)
)
(module Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm (layer F.Cu) (tedit 5A700E46) (tstamp 5A743D6B)
(at 143.6116 92.2528 90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(path /5A577E55)
(fp_text reference Relay_control1 (at -2.4384 3.5052 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value HEADER_4 (at 0 9.95 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 3.81 180) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(pad 4 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 Relay_IN1))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 Relay_IN2))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 +5V))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x04_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x04_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm (layer F.Cu) (tedit 5A6F6638) (tstamp 5A743D25)
(at 160.274 92.2528 90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(path /5A578074)
(fp_text reference Relay_pwr1 (at -2.4384 2.286 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value HEADER_3 (at 0 7.41 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 2.54 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 3 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 44 Buck_5V))
(model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x03_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer B.Cu) (tedit 5A6F65C9) (tstamp 5A6ED461)
(at 153.110949 125.618646)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(path /5A6F1193)
(fp_text reference A_Buck1 (at -2.363829 -1.635433 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value HEADER_1 (at 0 -2.33) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 -1.27) (end -1.27 0.635) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.33 -1.33) (end 1.33 -1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end -1.33 -1.33) (layer B.SilkS) (width 0.12))
(fp_line (start 1.33 -1.27) (end 1.33 -1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.8 1.8) (end -1.8 -1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end 1.8 -1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 -90) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "Net-(AC-L1-Pad1)"))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x01_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer B.Cu) (tedit 5A6F65BD) (tstamp 5A6ED3E6)
(at 148.259549 125.580546)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(path /5A6F1201)
(fp_text reference A_Buck2 (at -2.569569 -1.787833 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value HEADER_1 (at 0 -2.33) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 -90) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end 1.8 -1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 1.8) (end -1.8 -1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start 1.33 -1.27) (end 1.33 -1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end -1.33 -1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 1.33 -1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 -1.27) (end -1.27 0.635) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "Net-(AC-N1-Pad1)"))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x01_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer B.Cu) (tedit 5A6F6560) (tstamp 5C8BEE87)
(at 148.323049 99.659846)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(path /5A6F1243)
(fp_text reference A_Buck_GND1 (at 2.782211 3.718887 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value HEADER_1 (at 0 -2.33) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 -1.27) (end -1.27 0.635) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.33 -1.33) (end 1.33 -1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end -1.33 -1.33) (layer B.SilkS) (width 0.12))
(fp_line (start 1.33 -1.27) (end 1.33 -1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.8 1.8) (end -1.8 -1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end 1.8 -1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 -90) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x01_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer B.Cu) (tedit 5A6F6606) (tstamp 5A75E505)
(at 176.137176 125.383292 180)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(path /5A6F1484)
(fp_text reference R_Buck2 (at 2.393481 1.606849 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value HEADER_1 (at 0 -2.33 180) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 90) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end 1.8 -1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 1.8) (end -1.8 -1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start 1.33 -1.27) (end 1.33 -1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end -1.33 -1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 1.33 -1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 -1.27) (end -1.27 0.635) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))