-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHP6632B_relay_board.kicad_pcb
14742 lines (14711 loc) · 610 KB
/
HP6632B_relay_board.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 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Relay board for HPAK 66xxB series PSUs (A6)")
(comment 1 "Option 760, adapted for full feed through to front binding posts")
(comment 4 "AISLER Project ID: BVPNUVSL")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "unconnected-(J1-Pin_1-Pad1)")
(net 2 "+15V")
(net 3 "GND")
(net 4 "unconnected-(J1-Pin_4-Pad4)")
(net 5 "unconnected-(J1-Pin_5-Pad5)")
(net 6 "/SENSE_A-")
(net 7 "Net-(F601-Pad2)")
(net 8 "unconnected-(J1-Pin_8-Pad8)")
(net 9 "/SENSE_A+")
(net 10 "Net-(F602-Pad2)")
(net 11 "/OUT_P+")
(net 12 "/OUT_P-")
(net 13 "/SENSE_P+")
(net 14 "/SENSE_P-")
(net 15 "Earth")
(net 16 "/RLY_SEN_REM_R")
(net 17 "/RLY_OUT_REV")
(net 18 "unconnected-(J620-Pin_1-Pad1)")
(net 19 "/RLY_SEN_LOC")
(net 20 "/REL_OUT_NORM")
(net 21 "unconnected-(J620-Pin_4-Pad4)")
(net 22 "unconnected-(J620-Pin_5-Pad5)")
(net 23 "/REL_SEN_REM_N")
(net 24 "/OUT_A+")
(net 25 "unconnected-(J620-Pin_8-Pad8)")
(net 26 "/OUT_A-")
(net 27 "Net-(K601-Pad1)")
(net 28 "Net-(R1-Pad1)")
(net 29 "unconnected-(K601-Pad6)")
(net 30 "Net-(K602-Pad4)")
(net 31 "Net-(K602-Pad13)")
(net 32 "unconnected-(K601-Pad11)")
(net 33 "Net-(K604-Pad1)")
(net 34 "Net-(K605-Pad1)")
(net 35 "Net-(R3-Pad1)")
(net 36 "Net-(U601-O5)")
(net 37 "Net-(U601-O4)")
(net 38 "unconnected-(K602-Pad8)")
(net 39 "unconnected-(K602-Pad9)")
(net 40 "Net-(U601-O3)")
(net 41 "Net-(U601-O2)")
(net 42 "Net-(U601-O1)")
(net 43 "unconnected-(K603-Pad6)")
(net 44 "unconnected-(K603-Pad11)")
(net 45 "unconnected-(U601-O7-Pad10)")
(net 46 "unconnected-(U601-O6-Pad11)")
(net 47 "Net-(K602-Pad1)")
(net 48 "Net-(K603-Pad1)")
(net 49 "Net-(R5-Pad1)")
(footprint "mylib:Fuse_Littelfuse_395Series" (layer "F.Cu")
(tstamp 3cb6a01b-facd-4cd7-9382-b86b52574bc5)
(at 113.665 68.072 180)
(descr "Fuse, TE5, Littelfuse/Wickmann, No. 460, No560,")
(tags "Fuse TE5 Littelfuse/Wickmann No. 460 No560 ")
(property "MFN" "Bussmann")
(property "PN" "SS-5H-1.25A-APH")
(property "Sheetfile" "HP6632B_relay_board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Fuse")
(property "ki_keywords" "fuse")
(path "/3c66c447-2eb5-4ec4-a042-9b0cddd8d5a4")
(attr through_hole)
(fp_text reference "F601" (at 2.54 3.048) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff5029e5-078f-4abc-afe3-055172bf7317)
)
(fp_text value "1.25A" (at 2.35 3.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de7841f5-f5ff-4abb-82dc-f41b98b87c21)
)
(fp_text user "${REFERENCE}" (at 2.75 -1.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 379cfae5-9515-40df-b22b-5fce1a6843cd)
)
(fp_line (start -1.83 -2.12) (end -1.83 2.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59e2f49e-7d7e-477d-8604-3aca859ca4b2))
(fp_line (start -1.83 -2.12) (end 6.91 -2.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5772bcf6-6773-4b69-a20e-b92ae2655958))
(fp_line (start 6.91 2.12) (end -1.83 2.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01054901-3dd2-49c0-8181-4c0cc61e01ac))
(fp_line (start 6.91 2.12) (end 6.91 -2.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bc5fc979-8994-4959-ba66-8efe0e5560b6))
(fp_line (start -1.96 -2.25) (end -1.96 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp abc69abf-7076-40ca-90b8-60124178d06a))
(fp_line (start -1.96 -2.25) (end 7.04 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 639cd697-6e4b-4cf8-b7fd-4103c3609502))
(fp_line (start 7.04 2.25) (end -1.96 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a3c858b-6c07-4e02-9240-8a25b3764a61))
(fp_line (start 7.04 2.25) (end 7.04 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 77187528-95ea-4256-a83e-9a0f6a61bd9c))
(fp_line (start -1.71 -2) (end -1.71 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55aa3dda-b221-430c-80f7-27446551ab36))
(fp_line (start -1.71 2) (end 6.79 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0baaec9-ce16-4500-95f2-0c3f20029885))
(fp_line (start 6.79 -2) (end -1.71 -2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e493a08b-df28-4a9c-834d-344a13c4db7d))
(fp_line (start 6.79 2) (end 6.79 -2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e515377b-23f4-4063-b151-1fe4e32d1f8d))
(pad "1" thru_hole circle (at 0 0 180) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/SENSE_A-") (pintype "passive") (tstamp 8c1a3022-15a2-4999-8e74-c4243254bfbf))
(pad "2" thru_hole circle (at 5.08 0.01 180) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "Net-(F601-Pad2)") (pintype "passive") (tstamp 2e29ef02-cfb7-4dbc-83c1-a3c0f822cb48))
(model "${USER_3DMOD}/Fuse_Littelfuse_395Series.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Relay_THT:Relay_DPDT_Omron_G5V-2" (layer "F.Cu")
(tstamp 41d66ef0-d943-4fe8-8d05-564478f5ab10)
(at 104.6805 47.670483 90)
(descr "http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v2.pdf")
(tags "Omron G5V-2 Relay DPDT")
(property "MFN" "TE")
(property "PN" "V23105-A5303-A201")
(property "Sheetfile" "HP6632B_relay_board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Relay Miniature Omron DPDT")
(property "ki_keywords" "Miniature Relay Dual Pole DPDT Omron")
(path "/0c143c35-a2d9-44dc-9f7f-224471d3cff8")
(attr through_hole)
(fp_text reference "K601" (at 4.744483 -2.6995 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 390c355e-15ab-488f-b78d-b264710c3c78)
)
(fp_text value "Relay DPDT" (at 17.272 20.303301 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3654f68-2c66-40b1-8271-ab301d15ecea)
)
(fp_text user "${REFERENCE}" (at 3.94 9.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16ea9f6c-5cf9-4821-86b4-d0c0f3bf4323)
)
(fp_line (start -1.54 -1.55) (end -0.33 -1.55)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09c1b978-577e-4c7a-860d-4491d8a6d22c))
(fp_line (start -1.54 -0.25) (end -1.54 -1.55)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 10dca307-11a6-4b56-8358-52b0c2452271))
(fp_line (start -1.38 -1.4) (end -1.38 19.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a78ca7c4-08d8-48d0-90cd-c714643fdd08))
(fp_line (start -1.38 19.19) (end 9 19.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4cf0b133-29a4-482b-bf12-faba08c73725))
(fp_line (start 2.3 -1.4) (end 2.3 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7096915b-f5a9-42cb-8159-b5f26ae0a223))
(fp_line (start 2.3 -0.34) (end 5.3 -0.34)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 459bbc1a-8250-4950-af4a-182f0e160465))
(fp_line (start 3.47 -0.19) (end 3.47 1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9a5c4a7-4493-462e-9006-357af1bbeb0d))
(fp_line (start 3.47 0.44) (end 2.37 0.44)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0470aa8-0c0d-4aff-830e-4d01856762a2))
(fp_line (start 3.47 0.61) (end 4.17 0.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3a1dc5f-bbb9-4c20-b3b4-c68d9fa1d6f3))
(fp_line (start 3.47 1.01) (end 4.17 1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5853b63c-e379-4e1d-9c93-118fa8a9d2b4))
(fp_line (start 4.17 -0.19) (end 3.47 -0.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e911cff8-b8cd-4fe4-95c0-cbb51abe14bd))
(fp_line (start 4.17 0.44) (end 5.27 0.44)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d50b4f52-5f85-4474-9df3-691c3e55f2cc))
(fp_line (start 4.17 1.01) (end 4.17 -0.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a025d93-e9d2-4e90-bba8-a97bcea7494d))
(fp_line (start 5.3 -0.34) (end 5.3 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d99e98c-d0be-4ce3-9a4c-b2587ef5c1a0))
(fp_line (start 9 -1.4) (end -1.38 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cfb4071e-9d12-4b09-b678-fb8494503c41))
(fp_line (start 9 19.19) (end 9 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e4fa247-8291-40a3-b4b5-2810b0fe4d1d))
(fp_line (start -1.48 -1.5) (end -1.48 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 213a227d-a52e-4f8a-a913-225d97fa6995))
(fp_line (start -1.48 -1.5) (end 9.1 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dcebe562-f2e6-490e-b2fa-26f76ae28bd5))
(fp_line (start 9.1 -1.5) (end 9.1 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1bb0d8a-2044-40e9-bef6-52532cfaabda))
(fp_line (start 9.1 19.3) (end -1.48 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c230821-4340-48c4-a4a6-257fe647e5bd))
(fp_line (start -1.24 -0.25) (end -1.24 19.04)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7faefb8f-4984-4662-917e-1d28b4b3f4b2))
(fp_line (start -1.24 -0.25) (end -0.33 -1.26)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f05e7e94-46ec-45cc-8e59-170f9d227674))
(fp_line (start -1.24 19.04) (end 8.86 19.04)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51b1c739-d550-44a7-87bb-d7e8f76b4927))
(fp_line (start 8.86 -1.26) (end -0.33 -1.26)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 72b2a53a-664a-4788-ac29-180b79504d88))
(fp_line (start 8.86 19.04) (end 8.86 -1.26)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 10a743b9-77c9-4d89-8e70-c34d766c5d89))
(pad "1" thru_hole rect (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 27 "Net-(K601-Pad1)") (pintype "passive") (tstamp 0aea4c45-d25d-40f2-ae8f-babcfb5800b7))
(pad "4" thru_hole circle (at 0 7.62 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 9 "/SENSE_A+") (pintype "passive") (tstamp 305fa1f3-179a-4e11-95a8-03074c1877e6))
(pad "6" thru_hole circle (at 0 12.7 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 29 "unconnected-(K601-Pad6)") (pintype "passive+no_connect") (tstamp f5146e77-6f8a-4974-a2a5-699cea0b1e9c))
(pad "8" thru_hole circle (at 0 17.78 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 13 "/SENSE_P+") (pintype "passive") (tstamp 1ed772e7-a112-4488-9a48-c5235ec57cb3))
(pad "9" thru_hole circle (at 7.62 17.78 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 14 "/SENSE_P-") (pintype "passive") (tstamp 0c2d2239-d159-4993-adaa-f7f8350726a4))
(pad "11" thru_hole circle (at 7.62 12.7 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(K601-Pad11)") (pintype "passive+no_connect") (tstamp 642d1751-07a4-4f8b-99a4-979a639ca4bf))
(pad "13" thru_hole circle (at 7.62 7.62 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 6 "/SENSE_A-") (pintype "passive") (tstamp cdf901f7-6e88-435c-9ea1-738d57659f81))
(pad "16" thru_hole circle (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 2 "+15V") (pintype "passive") (tstamp 7815182f-7f23-4f5f-a2c8-5c31117b223c))
(model "${KICAD6_3DMODEL_DIR}/Relay_THT.3dshapes/Relay_DPDT_Omron_G5V-2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mylib:Molex_KK-396_A-41815-0009_1x09_P3.96mm_Horizontal" (layer "F.Cu")
(tstamp 4b8da42e-4eca-4ab0-b1ee-1efd8cbe1ed7)
(at 155.042 76.2045 180)
(descr "Molex KK 396 Interconnect System, old/engineering part number: A-41815-0009 example for new part number: 09-48-1094, 9 Pins ")
(tags "connector Molex KK-396 horizontal")
(property "MFN" "Molex")
(property "PN" "09-48-1094 or 09-48-3095")
(property "Sheetfile" "HP6632B_relay_board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x09, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/c015d561-001a-4a76-be8e-e702aaa40cf5")
(attr through_hole)
(fp_text reference "J620" (at 26.518 3.6875) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa99c320-0dce-441b-9d02-f8962b86fb5f)
)
(fp_text value "Molex 09-48-1094 or 09-48-3095" (at 15.84 3.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b8f2bb3-8d2d-4a45-942a-c727e7a48908)
)
(fp_text user "${REFERENCE}" (at 15.84 -8.969) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88d1e0b1-b722-4c24-8d9e-1d2d561d839a)
)
(fp_line (start -3.1 -7.8) (end 34.8 -7.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8215b1d2-1885-4cde-b14e-c4257b92e61a))
(fp_line (start -2.305 -2) (end -2.305 2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bee4a920-41c2-4ca0-b144-434ec2d2dc63))
(fp_line (start -2.015 -9.779) (end 33.695 -9.779)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9ab87d46-4c68-4735-aa4c-76bccae423de))
(fp_line (start -2.015 1.651) (end -2.015 -9.779)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1660650-b0a2-4517-8568-e6fae732d268))
(fp_line (start -0.8 -9.779) (end -0.8 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92466bd8-afb6-4ef2-84b6-acef857ffb90))
(fp_line (start -0.8 -9.179) (end 0.8 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fae9dda-23b9-47d3-9ebb-68f346f17958))
(fp_line (start 0.8 -9.179) (end 0.8 -9.779)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 611aadbf-c4aa-4c4f-afe3-5a323bb687d3))
(fp_line (start 3.16 -9.779) (end 3.16 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8664e0ff-934b-4059-abae-e037865c05ea))
(fp_line (start 3.16 -9.179) (end 4.76 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a6f3d1f-0427-4388-8fba-aeb653437199))
(fp_line (start 4.76 -9.179) (end 4.76 -9.779)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3162c81a-2bdf-4cd8-9e5f-11d456bf9fa2))
(fp_line (start 7.12 -9.779) (end 7.12 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e0f03792-996b-4c6d-ac98-8d68698276db))
(fp_line (start 7.12 -9.179) (end 8.72 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88032dee-1c6f-4077-9c8f-367afaec77cd))
(fp_line (start 8.72 -9.179) (end 8.72 -9.779)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae6771d1-bb55-431d-970d-23097863118b))
(fp_line (start 11.08 -9.779) (end 11.08 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d0350336-68a4-49c1-86ff-6575447de1a6))
(fp_line (start 11.08 -9.179) (end 12.68 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6d62c30-3de0-4ba2-b8b5-23f31ce7bed5))
(fp_line (start 12.68 -9.179) (end 12.68 -9.779)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d08de0b9-ec9b-4267-be9f-0967ad33e62c))
(fp_line (start 15.04 -9.779) (end 15.04 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fd7a042-6f38-405c-8065-11d20f6835b8))
(fp_line (start 15.04 -9.179) (end 16.64 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91c31ff8-4b08-4610-a31c-157ab5851d42))
(fp_line (start 16.64 -9.179) (end 16.64 -9.779)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3eb851ab-5443-41ef-9c0c-40df2ead45a0))
(fp_line (start 19 -9.779) (end 19 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ede80cb9-2d22-4ed2-8e53-7e36e2095850))
(fp_line (start 19 -9.179) (end 20.6 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd18aed9-8ab0-41f0-a668-afc51efd1961))
(fp_line (start 20.6 -9.179) (end 20.6 -9.779)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e5530fe-1b7e-407b-89b5-634e7432977b))
(fp_line (start 22.96 -9.779) (end 22.96 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b7adac4-a11c-442c-9e81-7b4f0afbc416))
(fp_line (start 22.96 -9.179) (end 24.56 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5d6ac69-b008-4c33-92b7-101271e79ea3))
(fp_line (start 24.56 -9.179) (end 24.56 -9.779)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b630f1a-7ba5-4a4d-9a9b-fac0a2eab940))
(fp_line (start 26.92 -9.779) (end 26.92 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ed1b350-7915-46ba-b447-f2c165731c2f))
(fp_line (start 26.92 -9.179) (end 28.52 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3f942a3-4316-47fa-9759-1b6463d22a5f))
(fp_line (start 28.52 -9.179) (end 28.52 -9.779)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0d60054-8767-4f34-85c5-82cf60819038))
(fp_line (start 30.88 -9.779) (end 30.88 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6516557-64f3-4f67-862c-edd81982cf8c))
(fp_line (start 30.88 -9.179) (end 32.48 -9.179)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eeae4475-23f8-4a64-9de1-64ad0a6e2dca))
(fp_line (start 32.48 -9.179) (end 32.48 -9.779)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5c33421-c465-40d4-a4cf-803c4f270304))
(fp_line (start 33.695 -9.779) (end 33.695 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd3c9eaa-673b-4fd5-9160-bcfce8df03d7))
(fp_line (start 33.695 1.65) (end -2.015 1.651)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36b58f0e-5c0c-4f82-999d-4a2e16fa0f4c))
(fp_line (start -2.4 -10.169) (end -2.4 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e460a91c-d8c6-489d-8a6d-b9daedc25a99))
(fp_line (start -2.4 2.05) (end 34.1 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9cf50f8b-a359-4b5a-8231-1d52b1e68211))
(fp_line (start 34.08 -10.169) (end -2.4 -10.169)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8f93996-2792-4ece-bf77-8d9a9e96f0a7))
(fp_line (start 34.1 2.05) (end 34.08 -10.169)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e9dcb932-6be7-4e76-95af-6a5f5a1735cf))
(fp_line (start -1.905 -9.669) (end 33.585 -9.669)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b42a042-c857-4a1b-9be1-0837613df185))
(fp_line (start -1.905 -0.5) (end -1.197893 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 06b982dd-c8db-4a88-a132-febc1ca5be23))
(fp_line (start -1.905 1.55) (end -1.905 -9.669)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4946689c-3a8a-44b5-8836-a6abeb55b76a))
(fp_line (start -1.197893 0) (end -1.905 0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 942ae8c0-0a6f-4889-b2ec-d5fba7f56753))
(fp_line (start 33.585 -9.669) (end 33.585 1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af5909d9-2c64-429a-b70f-e3f9fd1d6f7c))
(fp_line (start 33.585 1.55) (end -1.905 1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 451a1bbf-4d08-42cc-a272-02a88011f62b))
(pad "1" thru_hole roundrect (at 0 0 180) (size 3.16 4.1) (drill 1.7) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.07911392405)
(net 18 "unconnected-(J620-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp 9ca0e40a-ddd3-46c6-93a5-e86a6fa3bcce))
(pad "2" thru_hole oval (at 3.96 0 180) (size 3.16 4.1) (drill 1.7) (layers "*.Cu" "*.Mask")
(net 24 "/OUT_A+") (pinfunction "Pin_2") (pintype "passive") (tstamp ed0b3158-5b07-4ba7-9fe5-1a95751fe529))
(pad "3" thru_hole oval (at 7.92 0 180) (size 3.16 4.1) (drill 1.7) (layers "*.Cu" "*.Mask")
(net 26 "/OUT_A-") (pinfunction "Pin_3") (pintype "passive") (tstamp 13305bfb-1204-4faf-af4d-aa98451aa2d6))
(pad "4" thru_hole oval (at 11.88 0 180) (size 3.16 4.1) (drill 1.7) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(J620-Pin_4-Pad4)") (pinfunction "Pin_4") (pintype "passive+no_connect") (tstamp 5d1c2520-65a7-46d9-ba48-ed41fe81425b))
(pad "5" thru_hole oval (at 15.84 0 180) (size 3.16 4.1) (drill 1.7) (layers "*.Cu" "*.Mask")
(net 22 "unconnected-(J620-Pin_5-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 921ef9e2-d224-4018-9e11-002fff34e3ee))
(pad "6" thru_hole oval (at 19.8 0 180) (size 3.16 4.1) (drill 1.7) (layers "*.Cu" "*.Mask")
(net 9 "/SENSE_A+") (pinfunction "Pin_6") (pintype "passive") (tstamp 88db0cae-c122-450f-a665-ff7b53b50d96))
(pad "7" thru_hole oval (at 23.76 0 180) (size 3.16 4.1) (drill 1.7) (layers "*.Cu" "*.Mask")
(net 6 "/SENSE_A-") (pinfunction "Pin_7") (pintype "passive") (tstamp 720bf97a-5832-4dc5-a568-c14cbcab1c22))
(pad "8" thru_hole oval (at 27.72 0 180) (size 3.16 4.1) (drill 1.7) (layers "*.Cu" "*.Mask")
(net 25 "unconnected-(J620-Pin_8-Pad8)") (pinfunction "Pin_8") (pintype "passive+no_connect") (tstamp 31ef7391-212e-44fc-9efc-f1ce3ce72253))
(pad "9" thru_hole oval (at 31.68 0 180) (size 3.16 4.1) (drill 1.7) (layers "*.Cu" "*.Mask")
(net 15 "Earth") (pinfunction "Pin_9") (pintype "passive") (tstamp e5168527-4911-49d6-81e2-9f7bc69a383b))
(model "${USER_3DMOD}/Molex_KK-396_A-41815-0009_1x09_P3.96mm_Horizontal.stp"
(offset (xyz 15.8 9.75 -4))
(scale (xyz 1 1 1))
(rotate (xyz 90 180 0))
)
)
(footprint "Connector_FFC-FPC:TE_84953-8_1x08-1MP_P1.0mm_Horizontal" (layer "F.Cu")
(tstamp 50366fc8-0d4d-417c-8725-e5f428b77281)
(at 97.155 36.0946 -90)
(descr "TE FPC connector, 08 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4")
(tags "te fpc 84953")
(property "MFN" "Wurth")
(property "PN" "68610814422")
(property "Sheetfile" "HP6632B_relay_board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/05a1b43e-b624-46e8-9d8a-3ca250b53fa1")
(attr smd)
(fp_text reference "J610" (at -6.3766 -4.08 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8fd163bb-c28c-41dc-a0d6-edeb796eeb7f)
)
(fp_text value "68610814422 8 pos 1mm FFC" (at 0 7.7 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9788365-8105-4ed7-8ad3-d6bcb0708e71)
)
(fp_text user "${REFERENCE}" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31e96c55-84d7-4942-8d86-e7c067837333)
)
(fp_line (start -8.07 3.6) (end -7.045 3.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5652ddc-edf9-45c3-92cc-1d77acaa4ae8))
(fp_line (start -8.07 4.71) (end -8.07 3.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 864a5e4c-d145-42cc-a73b-af99b68ef0b8))
(fp_line (start -7.045 3.6) (end -7.045 3.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea9aef69-3259-4021-8cc6-c424354a4eb0))
(fp_line (start -4.89 -0.91) (end -4.065 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e95daf46-6fb9-4518-b51c-61eb840a5f45))
(fp_line (start -4.065 -0.91) (end -4.065 -2.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc2071aa-3034-4d00-a1b2-718407d9873b))
(fp_line (start 4.065 -0.91) (end 4.89 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab20f50f-bc19-4ad0-b430-fb3e77c55ef1))
(fp_line (start 7.045 3.06) (end 7.045 3.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 631b156f-beef-4f3f-a487-a578f5448317))
(fp_line (start 7.045 3.6) (end 8.07 3.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5a90bd1-dd1b-4728-ad8e-f563e0dadb9e))
(fp_line (start 8.07 3.6) (end 8.07 4.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf571bb5-fb76-4811-9f81-9c53d720dab6))
(fp_line (start 8.07 4.71) (end -8.07 4.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4f80cbc3-f3f7-45d4-9043-955515e17419))
(fp_line (start -8.46 -3.3) (end -8.46 7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cac051c4-e024-4cc7-81c4-bd3ac87e08f5))
(fp_line (start -8.46 7) (end 8.46 7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp faf46f0f-ef71-4bd2-9e7f-830810252b97))
(fp_line (start 8.46 -3.3) (end -8.46 -3.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 911b438a-6700-48ee-a86c-b3986833379a))
(fp_line (start 8.46 7) (end 8.46 -3.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9382d0f-d711-40e6-9300-3a06d579d19e))
(fp_line (start -7.96 3.71) (end -6.935 3.71)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7045216e-ab8f-44bb-98f0-8e68a2379514))
(fp_line (start -7.96 4.6) (end -7.96 3.71)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50abb677-210b-467b-9e42-dbf7f7f81ded))
(fp_line (start -7.96 5.61) (end -6.935 5.61)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bf7e7c92-0ddf-4fd1-b761-4228caaf6479))
(fp_line (start -7.96 6.5) (end -7.96 5.61)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28f0eb6a-18cd-4c80-8d56-9513f66f5239))
(fp_line (start -6.935 -0.8) (end 6.935 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87cb6a59-5da5-4e11-8c44-2a3a83a05ca0))
(fp_line (start -6.935 3.71) (end -6.935 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5e13c09f-eab3-4439-85ed-94f4e8293ffd))
(fp_line (start -6.935 5.61) (end -6.935 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbfc15da-0513-4383-9a8f-e26a11537edb))
(fp_line (start -4 -0.8) (end -3.5 0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 660a181c-2b5c-4739-a6e0-f8936a0c5b96))
(fp_line (start -3.5 0.2) (end -3 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 993fe359-a2ca-49d9-a7e0-ed0e08ee6c61))
(fp_line (start 6.935 -0.8) (end 6.935 3.71)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2dbb4d56-ab2e-4bca-802c-ae9a58f6b594))
(fp_line (start 6.935 3.71) (end 7.96 3.71)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 502f7f9b-11ee-4704-a6dc-1f886094a765))
(fp_line (start 6.935 4.6) (end 6.935 5.61)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bef66b0e-5c1a-4d69-af94-a4011002262f))
(fp_line (start 6.935 5.61) (end 7.96 5.61)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b00a7c5-9cec-4c81-b05c-641aa2c75ed2))
(fp_line (start 7.96 3.71) (end 7.96 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4b22479-a225-4610-adca-d3416b360964))
(fp_line (start 7.96 4.6) (end -7.96 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f791c838-5358-418f-b3cb-6b1a065f3944))
(fp_line (start 7.96 5.61) (end 7.96 6.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b19c5095-6de0-463f-b495-23e530db0abb))
(fp_line (start 7.96 6.5) (end -7.96 6.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b6f1419-664c-41c4-8b40-1877e8094dd3))
(pad "1" smd rect (at -3.5 -1.8 270) (size 0.61 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp c7de9cd6-c923-4a35-b3b5-4343ab950bbb))
(pad "2" smd rect (at -2.5 -1.8 270) (size 0.61 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/RLY_SEN_REM_R") (pinfunction "Pin_2") (pintype "passive") (tstamp 830e394c-ed13-4b0b-93b1-b1b23fff772e))
(pad "3" smd rect (at -1.5 -1.8 270) (size 0.61 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+15V") (pinfunction "Pin_3") (pintype "passive") (tstamp aa664973-b7be-4c6d-b78e-f46a613cdc6c))
(pad "4" smd rect (at -0.5 -1.8 270) (size 0.61 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/RLY_OUT_REV") (pinfunction "Pin_4") (pintype "passive") (tstamp ea6e7a01-4ef3-42aa-892c-335693fcb8e5))
(pad "5" smd rect (at 0.5 -1.8 270) (size 0.61 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/RLY_SEN_LOC") (pinfunction "Pin_5") (pintype "passive") (tstamp 635dc810-7b7e-405e-a629-47da6ee109cb))
(pad "6" smd rect (at 1.5 -1.8 270) (size 0.61 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "/REL_OUT_NORM") (pinfunction "Pin_6") (pintype "passive") (tstamp 9b81f1f2-adff-4e0d-b4ba-f0f284c0b53b))
(pad "7" smd rect (at 2.5 -1.8 270) (size 0.61 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "/REL_SEN_REM_N") (pinfunction "Pin_7") (pintype "passive") (tstamp bf8e66ad-4a45-4b1a-98e5-39ea55c785ee))
(pad "8" smd rect (at 3.5 -1.8 270) (size 0.61 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 0914dfa6-8cf9-4172-9262-b34f90dd8cc0))
(pad "MP" smd rect (at -6.49 1 270) (size 2.68 3.6) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1f12e3ad-ad3a-40b9-b424-1c78dc886935))
(pad "MP" smd rect (at 6.49 1 270) (size 2.68 3.6) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 91349e9d-98e3-4230-a7dc-7412c296ab5f))
(model "${KICAD6_3DMODEL_DIR}/Connector_FFC-FPC.3dshapes/TE_84953-8_1x08-1MP_P1.0mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mylib:Relay_Panasonic_ST2-F" (layer "F.Cu")
(tstamp 61cab58f-e5fc-439d-96f1-c20a94af04d2)
(at 141.478 62.484 180)
(descr "Relay DPST Schrack-RT2 RM5mm 16A 250V AC Form A http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN")
(tags "Relay DPST Schrack-RT2 RM5mm 16A 250V AC Relay")
(property "MFN" "Panasonic")
(property "PN" "ST2-DC12V-F")
(property "Sheetfile" "HP6632B_relay_board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Standex Meder DIP reed relay, DPST, Closing Contacts")
(property "ki_keywords" "Single Pole Reed Relay DPST")
(path "/bd7f6dd6-d08c-4033-bc6e-c798d023b11b")
(attr through_hole)
(fp_text reference "K604" (at 0.615017 -9) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 086478e5-726d-47f3-93a8-79fe4d34ad46)
)
(fp_text value "Relay DPST" (at -0.508 9.04) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1ba6a37-92ce-487d-8905-ec07b1feded7)
)
(fp_text user "${REFERENCE}" (at -0.635 1.23) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58f59f21-a9bf-437a-b6f7-368db231e5ed)
)
(fp_line (start -15.75 -7.29) (end -14.75 -7.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea143aba-1b16-42a0-8871-10dfc7cd9e71))
(fp_line (start -15.75 -6.29) (end -15.75 -7.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d91377d0-a11c-40d2-8e1a-83a553a7185e))
(fp_line (start -15.5 -7.04) (end -15.5 6.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6ecae3c-2841-4aff-b738-db0964b59bdf))
(fp_line (start -15.5 6.96) (end 15.5 6.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f0dd18c-c6ec-45c3-abcf-8b3ced02ace5))
(fp_line (start 15.5 -7.04) (end -15.5 -7.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95780f88-668a-4185-a68a-689d4d9e64e8))
(fp_line (start 15.5 6.96) (end 15.5 -7.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd9e3ccc-b624-4301-8091-79811526e0ec))
(fp_line (start -15.75 -7.29) (end -15.75 7.21)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a811070e-e3db-46f3-9b33-9f51a2d3896c))
(fp_line (start -15.75 7.21) (end 15.75 7.21)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff986a0b-3ad6-438b-81c7-33205e42fdaf))
(fp_line (start 15.75 -7.29) (end -15.75 -7.29)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 412d07a8-1822-40f9-854f-fc93ec44fb16))
(fp_line (start 15.75 7.21) (end 15.75 -7.29)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6343f754-9d7c-488e-a48f-531b139826cf))
(fp_line (start -15.25 1.46) (end -15.25 -6.79)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 209ecd94-0ee6-4bf7-b1f7-7d318915b640))
(fp_line (start -15.25 2.46) (end -15.25 6.71)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21f2a66f-b228-449d-8984-1604c24719f7))
(fp_line (start -15.25 2.46) (end -14.75 2.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e52fb51-b4ab-4216-a796-7c09776b0fa7))
(fp_line (start -15.25 6.71) (end 15.25 6.71)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68f3c59c-fb4a-415a-b614-c243bbb05cda))
(fp_line (start -14.75 1.46) (end -15.25 1.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07340d37-1131-49b6-8a3f-a1e3f8d5cd04))
(fp_line (start -14.75 2.46) (end -14.75 1.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf7ae1f2-d860-4c59-82b0-56e12a3dc5c8))
(fp_line (start 14.75 1.46) (end 14.75 2.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b6c61f4-fd33-489b-b4d4-f0652e52d3fc))
(fp_line (start 14.75 2.46) (end 15.25 2.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 315e20d7-09ee-47e1-a961-8beac12c5959))
(fp_line (start 15.25 -6.79) (end -15.25 -6.79)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7c1e0991-9bca-43a2-a8f6-0349801a2d96))
(fp_line (start 15.25 1.46) (end 14.75 1.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6eea7701-2c1c-46b1-8441-f25f7ce8362a))
(fp_line (start 15.25 1.46) (end 15.25 -6.79)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4028b2a7-9a45-46be-bb4b-5243c062349e))
(fp_line (start 15.25 2.46) (end 15.25 6.71)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f8e7fb07-ac6a-4c10-9738-3f9f684d7d19))
(pad "1" thru_hole rect (at 12.7 -5.12) (size 2 2) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 33 "Net-(K604-Pad1)") (pintype "passive") (tstamp 4d0ae119-01cb-4749-9e76-d2c6fd6c05f5))
(pad "4" thru_hole circle (at -12.7 -5.12) (size 2 2) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 2 "+15V") (pintype "passive") (tstamp 9ca15abd-336a-4c1d-a5fc-8b439dacaff4))
(pad "5" thru_hole circle (at -12.7 5.04) (size 3 3) (drill 1.4) (layers "*.Cu" "*.Mask")
(net 24 "/OUT_A+") (pintype "passive") (tstamp ed68bede-1a54-440b-b2bf-64b452e3b1c4))
(pad "6" thru_hole circle (at -5.08 5.04) (size 3 3) (drill 1.4) (layers "*.Cu" "*.Mask")
(net 11 "/OUT_P+") (pintype "passive") (tstamp b099fda3-31a3-41b3-a7cf-2375e7a42c55))
(pad "7" thru_hole circle (at 5.08 5.04) (size 3 3) (drill 1.4) (layers "*.Cu" "*.Mask")
(net 12 "/OUT_P-") (pintype "passive") (tstamp 84dec21c-9d5c-4396-b56d-03681990ab2b))
(pad "8" thru_hole circle (at 12.7 5.04) (size 3 3) (drill 1.4) (layers "*.Cu" "*.Mask")
(net 26 "/OUT_A-") (pintype "passive") (tstamp 5bcc776f-549e-471f-8a95-62fc4aca52d9))
(model "${USER_3DMOD}/ar202・f.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "mylib:Relay_Panasonic_ST2-F" (layer "F.Cu")
(tstamp 7b86bdcc-6f11-4971-b4ce-65ea65954743)
(at 141.478 47.244)
(descr "Relay DPST Schrack-RT2 RM5mm 16A 250V AC Form A http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN")
(tags "Relay DPST Schrack-RT2 RM5mm 16A 250V AC Relay")
(property "MFN" "Panasonic")
(property "PN" "ST2-DC12V-F")
(property "Sheetfile" "HP6632B_relay_board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Standex Meder DIP reed relay, DPST, Closing Contacts")
(property "ki_keywords" "Single Pole Reed Relay DPST")
(path "/7ca4d5bc-92cb-4d48-b7b1-b0e709f04b6e")
(attr through_hole)
(fp_text reference "K605" (at 11.811 -7.874) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5aa39aae-f5d8-4944-909c-e3663d97adcd)
)
(fp_text value "Relay DPST" (at -0.508 9.04) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7eb87713-91ea-4724-b401-14a6f910da38)
)
(fp_text user "${REFERENCE}" (at -0.635 1.23) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b74b3de8-d769-4b18-9603-477be470885c)
)
(fp_line (start -15.75 -7.29) (end -14.75 -7.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bbeab1a1-e558-48ef-86ec-2183418f885c))
(fp_line (start -15.75 -6.29) (end -15.75 -7.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8dd028b9-1c3b-477d-abfc-d4c7481590d8))
(fp_line (start -15.5 -7.04) (end -15.5 6.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ecf46c6-46ff-4903-934a-dc08211b9e0d))
(fp_line (start -15.5 6.96) (end 15.5 6.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c7b3757-2541-476c-974e-f36f88e0d9d6))
(fp_line (start 15.5 -7.04) (end -15.5 -7.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f49c5c54-6ddf-4a2f-abb1-cae9460f14e9))
(fp_line (start 15.5 6.96) (end 15.5 -7.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34bac920-2437-4589-8c74-b4d129e9d09c))
(fp_line (start -15.75 -7.29) (end -15.75 7.21)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c35f970-fa51-4f7b-a1f1-7f7338fa60ba))
(fp_line (start -15.75 7.21) (end 15.75 7.21)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f8dc0f5-1bb4-4e72-b8fe-2f5187debe7a))
(fp_line (start 15.75 -7.29) (end -15.75 -7.29)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d57f39c2-0061-47e1-a0a7-f7918f54a390))
(fp_line (start 15.75 7.21) (end 15.75 -7.29)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bd6d8834-0a5f-4373-accd-d97f7834c989))
(fp_line (start -15.25 1.46) (end -15.25 -6.79)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6394913-3e81-46d3-a741-e2fa3ace1586))
(fp_line (start -15.25 2.46) (end -15.25 6.71)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d8682b8-be67-4596-bd9b-a70faac1cd20))
(fp_line (start -15.25 2.46) (end -14.75 2.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5ea992c-846f-47a8-92f9-553a066e5ada))
(fp_line (start -15.25 6.71) (end 15.25 6.71)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8979ae86-378c-42cd-80f4-eff0d95cf17b))
(fp_line (start -14.75 1.46) (end -15.25 1.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b08da4f-02f3-454e-856f-52b5fd8e1ed3))
(fp_line (start -14.75 2.46) (end -14.75 1.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 381419ca-b2dd-4076-b41b-2989adcdf789))
(fp_line (start 14.75 1.46) (end 14.75 2.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7f5290f-c1a8-4a4a-b242-0e59104abfe5))
(fp_line (start 14.75 2.46) (end 15.25 2.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 865bdc64-f728-42d6-ad86-a3d48ff4c191))
(fp_line (start 15.25 -6.79) (end -15.25 -6.79)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46fcf340-edd1-45e9-8e2a-dac6fb54052d))
(fp_line (start 15.25 1.46) (end 14.75 1.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 167c1f49-6693-4002-814e-f1108eb00b88))
(fp_line (start 15.25 1.46) (end 15.25 -6.79)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ccb7d661-6c40-402c-8881-f3def0cf708d))
(fp_line (start 15.25 2.46) (end 15.25 6.71)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b53ed92-a8ba-4324-a54c-68ed0c414d24))
(pad "1" thru_hole rect (at 12.7 -5.12 180) (size 2 2) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 34 "Net-(K605-Pad1)") (pintype "passive") (tstamp 8311b08e-5bb7-48b9-b300-406f739bce9b))
(pad "4" thru_hole circle (at -12.7 -5.12 180) (size 2 2) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 2 "+15V") (pintype "passive") (tstamp 544ff70d-c8f4-4f92-b099-7b876fbcdb24))
(pad "5" thru_hole circle (at -12.7 5.04 180) (size 3 3) (drill 1.4) (layers "*.Cu" "*.Mask")
(net 24 "/OUT_A+") (pintype "passive") (tstamp 8bf2c0d7-aee9-4570-bd1f-9778c0d555a0))
(pad "6" thru_hole circle (at -5.08 5.04 180) (size 3 3) (drill 1.4) (layers "*.Cu" "*.Mask")
(net 12 "/OUT_P-") (pintype "passive") (tstamp 0a75b40f-f524-44f3-bf82-786d1325f469))
(pad "7" thru_hole circle (at 5.08 5.04 180) (size 3 3) (drill 1.4) (layers "*.Cu" "*.Mask")
(net 11 "/OUT_P+") (pintype "passive") (tstamp 4dc1024b-d671-4e06-bb2d-0ac3dcc44e4e))
(pad "8" thru_hole circle (at 12.7 5.04 180) (size 3 3) (drill 1.4) (layers "*.Cu" "*.Mask")
(net 26 "/OUT_A-") (pintype "passive") (tstamp b3686ce5-220d-48c3-9bc6-dc135229b2cc))
(model "${USER_3DMOD}/ar202・f.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 8853c54a-9b4b-4778-a602-ea5b86f37dea)
(at 103.7844 33.6296 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "HP6632B_relay_board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/faa056b5-d8bc-47d2-af76-4acd3c44bbaf")
(attr smd)
(fp_text reference "C600" (at 0 1.8796 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc2b27ff-4023-434a-8af3-cae77a71f23b)
)
(fp_text value "100nF 25V" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58ac1fd8-8249-4a99-a5db-2ee4612b1ee0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 7c745526-b1bf-41fc-9d7c-95b189d34840)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2a83c50-a5a8-4cf9-81b4-abd824c25d93))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb5c2048-36c5-4a07-9324-e6ccc6f6177a))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef962433-44d2-4695-ab92-70533c97d881))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7506cd69-408c-4610-a322-9a2f58cd4312))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d388bfbb-ae35-44ae-aca6-78b62fbaa8ee))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a83a8c9-d61f-454e-95fe-d2fcda9192a4))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c1e9ef9-bc75-49b0-9f37-7f027057bc0c))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b082706f-5cde-4871-baff-061b5f26a644))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e737bf29-08ac-4515-9ed7-5812e61994d6))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1cb950b7-0545-42db-8072-d80430975469))
(pad "1" smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "+15V") (pintype "passive") (tstamp a93aaaa1-dc68-4689-9c1f-b683a487cf5f))
(pad "2" smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 3 "GND") (pintype "passive") (tstamp cd747c94-749f-4a23-8553-36aa54aeef36))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Relay_THT:Relay_DPDT_Omron_G5V-2" (layer "F.Cu")
(tstamp 8dd4a929-efad-4ba5-b883-d38086db6032)
(at 104.6805 58.544983 90)
(descr "http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v2.pdf")
(tags "Omron G5V-2 Relay DPDT")
(property "MFN" "TE")
(property "PN" "V23105-A5303-A201")
(property "Sheetfile" "HP6632B_relay_board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Relay Miniature Omron DPDT")
(property "ki_keywords" "Miniature Relay Dual Pole DPDT Omron")
(path "/76252408-06aa-4f34-ad0f-e227081c89d5")
(attr through_hole)
(fp_text reference "K603" (at 3.81 -2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3db40ad9-6484-49f8-a62d-27046a6b2904)
)
(fp_text value "Relay DPDT" (at 3.81 20.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c65b1a2f-e930-49c3-89d2-977b80290b13)
)
(fp_text user "${REFERENCE}" (at 3.94 9.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5eb58c5-18e7-451e-a527-ab4603dfdff4)
)
(fp_line (start -1.54 -1.55) (end -0.33 -1.55)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16027949-e707-4684-b761-90a5927ebcc8))
(fp_line (start -1.54 -0.25) (end -1.54 -1.55)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3511c76b-98b9-46fc-a023-d3b3818272bc))
(fp_line (start -1.38 -1.4) (end -1.38 19.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0dfd2c06-868c-4772-b2df-1eed048e4a97))
(fp_line (start -1.38 19.19) (end 9 19.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b03f0d4d-111a-4f2c-96a1-8e95d5ced1e3))
(fp_line (start 2.3 -1.4) (end 2.3 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19f97af5-1208-49dd-adcc-02e38ef1f596))
(fp_line (start 2.3 -0.34) (end 5.3 -0.34)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ab3bafe-c525-4a8b-a31e-f8850bef76bd))
(fp_line (start 3.47 -0.19) (end 3.47 1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 403a8a4b-e619-4116-97dd-989665e0cd93))
(fp_line (start 3.47 0.44) (end 2.37 0.44)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba15c30e-79fa-4c36-8dd3-50f3b69b53e3))
(fp_line (start 3.47 0.61) (end 4.17 0.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7aee9789-2b93-4d81-99b5-2539580945ff))
(fp_line (start 3.47 1.01) (end 4.17 1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b2682b8-0f7c-4a3a-9d53-69fdc6209ca1))
(fp_line (start 4.17 -0.19) (end 3.47 -0.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e4147b1-0d44-45bc-afbe-6e144d331378))
(fp_line (start 4.17 0.44) (end 5.27 0.44)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81aa7d3f-571e-42ac-8a03-263c6b84419a))
(fp_line (start 4.17 1.01) (end 4.17 -0.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14acfa48-46f0-4d9e-86e9-41cb2a79d137))
(fp_line (start 5.3 -0.34) (end 5.3 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee535458-4b1e-4850-a184-6899be2b3043))
(fp_line (start 9 -1.4) (end -1.38 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b092257-d82a-4876-b67e-74fc9c74df06))
(fp_line (start 9 19.19) (end 9 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26f36595-cdd1-456d-8448-3643dc47f5bd))
(fp_line (start -1.48 -1.5) (end -1.48 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 77dd41d2-585e-4b9c-afa8-f0715f560412))
(fp_line (start -1.48 -1.5) (end 9.1 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14cd7ceb-045c-4b94-8522-47f070dee8d6))
(fp_line (start 9.1 -1.5) (end 9.1 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 552d56a6-beae-4d91-b324-9ff6e29793b0))
(fp_line (start 9.1 19.3) (end -1.48 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 05b6ead2-19f2-4b0a-a348-503f5fb72d5f))
(fp_line (start -1.24 -0.25) (end -1.24 19.04)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ef68676-a5a0-4cd3-97c3-7d3acf87375d))
(fp_line (start -1.24 -0.25) (end -0.33 -1.26)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85bb1ba4-863d-4f37-bc38-f00139912de3))
(fp_line (start -1.24 19.04) (end 8.86 19.04)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d009292-9177-4c2e-a944-c10b4613466f))
(fp_line (start 8.86 -1.26) (end -0.33 -1.26)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57acce49-ca71-48a0-a37f-8a0f52e09143))
(fp_line (start 8.86 19.04) (end 8.86 -1.26)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2dee67f5-b612-40a1-9a43-8b009d561ca7))
(pad "1" thru_hole rect (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 48 "Net-(K603-Pad1)") (pintype "passive") (tstamp 334ef239-b2f3-4e6a-8926-2e60ae1a55fc))
(pad "4" thru_hole circle (at 0 7.62 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 9 "/SENSE_A+") (pintype "passive") (tstamp 34f6e91a-5374-40d6-8655-46d1cd72c38d))
(pad "6" thru_hole circle (at 0 12.7 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 43 "unconnected-(K603-Pad6)") (pintype "passive+no_connect") (tstamp 2c684a6b-8b7e-4da2-964f-4c26a4de8fad))
(pad "8" thru_hole circle (at 0 17.78 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 14 "/SENSE_P-") (pintype "passive") (tstamp f98ab5ec-3c3d-46ac-9832-19f4b96368d5))
(pad "9" thru_hole circle (at 7.62 17.78 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 13 "/SENSE_P+") (pintype "passive") (tstamp 0ff72417-33ff-4938-8679-73693a601fd7))
(pad "11" thru_hole circle (at 7.62 12.7 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 44 "unconnected-(K603-Pad11)") (pintype "passive+no_connect") (tstamp 5d3d520a-27c7-4851-a6fa-483b7e9c850e))
(pad "13" thru_hole circle (at 7.62 7.62 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 6 "/SENSE_A-") (pintype "passive") (tstamp 0d5cda43-0567-42ac-9305-254c46ec7e98))
(pad "16" thru_hole circle (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 2 "+15V") (pintype "passive") (tstamp a684242d-91e0-4877-8eca-fd0770aa9c87))
(model "${KICAD6_3DMODEL_DIR}/Relay_THT.3dshapes/Relay_DPDT_Omron_G5V-2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Relay_THT:Relay_DPDT_Omron_G5V-2" (layer "F.Cu")
(tstamp d1044a0b-e3c9-4613-8244-fbf8c693d9cc)
(at 99.6005 81.1055 90)
(descr "http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v2.pdf")
(tags "Omron G5V-2 Relay DPDT")
(property "MFN" "TE")
(property "PN" "V23105-A5303-A201")
(property "Sheetfile" "HP6632B_relay_board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Relay Miniature Omron DPDT")
(property "ki_keywords" "Miniature Relay Dual Pole DPDT Omron")
(path "/ae6bd68c-c1ff-444e-a9ca-4b418d6f5cb9")
(attr through_hole)
(fp_text reference "K602" (at 3.81 -2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e38c06bc-e785-46da-8e82-4887e49ad133)
)
(fp_text value "Relay DPDT" (at 3.81 20.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91636aca-bf6e-484c-9822-214663f6dccb)
)
(fp_text user "${REFERENCE}" (at 3.94 9.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46d4a060-97d6-49f4-acd2-6f12fa946f34)
)
(fp_line (start -1.54 -1.55) (end -0.33 -1.55)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 46446b47-9507-4ede-a1f1-fd3968a69088))
(fp_line (start -1.54 -0.25) (end -1.54 -1.55)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06298afb-efa0-4a99-8e2e-cb9e4d6c7ae7))
(fp_line (start -1.38 -1.4) (end -1.38 19.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7604ea0f-87d5-407d-a0a8-26a6a2823b16))
(fp_line (start -1.38 19.19) (end 9 19.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9571f533-8a01-4424-9df7-58c4cbad317b))
(fp_line (start 2.3 -1.4) (end 2.3 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47fc6c04-09c5-46c5-aa91-a90955c1e7c2))
(fp_line (start 2.3 -0.34) (end 5.3 -0.34)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db80715d-848e-4ea7-8b71-d08ad4550a6f))
(fp_line (start 3.47 -0.19) (end 3.47 1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2795fc8a-76c5-4ff4-8331-45e44e227704))
(fp_line (start 3.47 0.44) (end 2.37 0.44)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 54f0c553-d4e4-4dbb-ac8e-8990a9899c88))
(fp_line (start 3.47 0.61) (end 4.17 0.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d2630b0-eb97-4cfa-ac7a-c5b2106f65f8))
(fp_line (start 3.47 1.01) (end 4.17 1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a91ffb4-188a-4b60-9beb-c12a3dbd4761))
(fp_line (start 4.17 -0.19) (end 3.47 -0.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73d54799-353c-4dde-a71c-91df8fd8b142))
(fp_line (start 4.17 0.44) (end 5.27 0.44)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c05df51-741f-449d-a992-b5890f7e1642))
(fp_line (start 4.17 1.01) (end 4.17 -0.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c6e8d3d-08bd-431e-8a90-aae7cc1f0fef))
(fp_line (start 5.3 -0.34) (end 5.3 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a827cb6d-8105-499d-8f6d-6dafc9214d07))
(fp_line (start 9 -1.4) (end -1.38 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec12f03a-3896-4dfc-b341-8d3ae73f4a1e))
(fp_line (start 9 19.19) (end 9 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80e08446-bab9-4a40-86ce-42299a049472))
(fp_line (start -1.48 -1.5) (end -1.48 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1263bc24-e64c-48ca-842d-44c76878b927))
(fp_line (start -1.48 -1.5) (end 9.1 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 907cc9a1-48b2-4ba4-9b1e-30890e9cb1d6))
(fp_line (start 9.1 -1.5) (end 9.1 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41e82721-0919-4d5d-a517-d2f8c9e68001))
(fp_line (start 9.1 19.3) (end -1.48 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d4772a6-b961-4b99-bf0c-01cc872fe5d9))
(fp_line (start -1.24 -0.25) (end -1.24 19.04)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d89baf0-aa02-4cf1-9b94-1e999a7dcb93))
(fp_line (start -1.24 -0.25) (end -0.33 -1.26)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c93002c4-a18e-42da-bf33-d40998b1b222))
(fp_line (start -1.24 19.04) (end 8.86 19.04)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28c58c7b-d77a-4cb6-874d-ec7bd647e6b9))
(fp_line (start 8.86 -1.26) (end -0.33 -1.26)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25fbe3cc-7008-478c-b8ff-f36e58c74d75))
(fp_line (start 8.86 19.04) (end 8.86 -1.26)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dfc788e5-1581-4163-adac-cda224b8dad6))
(pad "1" thru_hole rect (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 47 "Net-(K602-Pad1)") (pintype "passive") (tstamp 6955b824-f147-44d1-b935-79183db84b0e))
(pad "4" thru_hole circle (at 0 7.62 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 30 "Net-(K602-Pad4)") (pintype "passive") (tstamp 38aab420-8037-42a7-b8b1-bc2ae545f4f8))
(pad "6" thru_hole circle (at 0 12.7 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 24 "/OUT_A+") (pintype "passive") (tstamp 9bd6b1f3-eb67-4864-871c-b9f19e0610ae))
(pad "8" thru_hole circle (at 0 17.78 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 38 "unconnected-(K602-Pad8)") (pintype "passive+no_connect") (tstamp 25e831ae-908a-470d-998a-9e60cd6cbe78))
(pad "9" thru_hole circle (at 7.62 17.78 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 39 "unconnected-(K602-Pad9)") (pintype "passive+no_connect") (tstamp 0a3fd36f-3862-4cf4-b2bf-c84b0b6dfacb))
(pad "11" thru_hole circle (at 7.62 12.7 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 26 "/OUT_A-") (pintype "passive") (tstamp ce7c7201-e2c8-4816-a9ae-83047e2368b2))
(pad "13" thru_hole circle (at 7.62 7.62 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 31 "Net-(K602-Pad13)") (pintype "passive") (tstamp 71fc36fb-8c6c-4e3d-8b87-7202190adaaf))
(pad "16" thru_hole circle (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 2 "+15V") (pintype "passive") (tstamp 8808bf39-b843-45e4-a54f-646b3c761d4c))
(model "${KICAD6_3DMODEL_DIR}/Relay_THT.3dshapes/Relay_DPDT_Omron_G5V-2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mylib:Fuse_Littelfuse_395Series" (layer "F.Cu")
(tstamp e5e637db-1a79-4eee-9385-d3308968b45d)
(at 123.19 68.072 180)
(descr "Fuse, TE5, Littelfuse/Wickmann, No. 460, No560,")
(tags "Fuse TE5 Littelfuse/Wickmann No. 460 No560 ")
(property "MFN" "Bussmann")
(property "PN" "SS-5H-1.25A-APH")
(property "Sheetfile" "HP6632B_relay_board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Fuse")
(property "ki_keywords" "fuse")
(path "/4ca4d422-be83-4857-9ec5-ab5513946732")
(attr through_hole)
(fp_text reference "F602" (at 3.048 3.048) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b13ad04c-ad8b-4490-a899-c41802632a41)
)
(fp_text value "1.25A" (at 2.35 3.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 207b190b-c657-4a6f-bb09-954e9f5ea53d)
)