-
Notifications
You must be signed in to change notification settings - Fork 0
/
RSHP-CB.kicad_pcb
23699 lines (23668 loc) · 783 KB
/
RSHP-CB.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "RSHP-CB-0010")
(date "2022-05-29")
(rev "1.0")
(company "(c) Andriy Golovnya http://redscorp.net")
(comment 1 "Reflow Soldering Hot Plate - Connection Board")
)
(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)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "cam")
)
)
(net 0 "")
(net 1 "HE_VCC")
(net 2 "HE_GND")
(net 3 "EARTH")
(net 4 "TR1_VCC")
(net 5 "TR1_GND")
(net 6 "TR2_VCC")
(net 7 "TR2_GND")
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x20_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A433) (tstamp 0c284aa4-4ee1-474d-b716-d6486160a69f)
(at 165 47.5)
(descr "Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x20 2.54mm double row")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/ff6a2506-090d-40a0-864a-a1318c22440d")
(attr through_hole)
(fp_text reference "J1" (at -1.27 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99ba13bd-6c13-4ab0-a777-14bd8c5a1687)
)
(fp_text value "Conn_02x20_Odd_Even" (at -1.27 51.03) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76033243-23ac-4390-8746-2fce717e99ce)
)
(fp_text user "${REFERENCE}" (at -1.27 24.13 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39a0a7c6-4640-4f9c-ae7e-618d04ac4992)
)
(fp_line (start -3.87 -1.33) (end -3.87 49.59) (layer "F.SilkS") (width 0.12) (tstamp 2183e4c9-22e1-4c57-ab6b-b84362bed69a))
(fp_line (start -3.87 49.59) (end 1.33 49.59) (layer "F.SilkS") (width 0.12) (tstamp 6b2e2aac-4fdc-469b-9a9a-d50734c9ecc2))
(fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 84a9e010-dae5-4a93-93be-d0c095482a60))
(fp_line (start 1.33 1.27) (end 1.33 49.59) (layer "F.SilkS") (width 0.12) (tstamp 88da13c8-4aee-43b7-b0e2-c92fe697baff))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 8a335d95-6e95-4595-8efd-8812c14b6c6a))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 95cda38b-9da0-4ccb-9d8f-aa9692d8e87d))
(fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a2f5ff22-46e7-47ec-9618-adb4d8eadecf))
(fp_line (start -1.27 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp e1f3c09a-2309-4fba-ae9f-f29746e1f31e))
(fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 05c1a2b3-62ec-4c94-b297-34cf70a9993e))
(fp_line (start -4.34 50) (end -4.34 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 39a0c01f-e53a-4e8d-8caa-de18e50908b6))
(fp_line (start 1.76 -1.8) (end 1.76 50) (layer "F.CrtYd") (width 0.05) (tstamp 9e1ee196-d6d3-4c4a-b206-87ca6b9df08f))
(fp_line (start 1.76 50) (end -4.34 50) (layer "F.CrtYd") (width 0.05) (tstamp c0709f0a-bf99-4fd8-9d61-9e2ea18c4fc1))
(fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp 48400a2c-882c-43a5-b59b-53ead36057b9))
(fp_line (start 1.27 49.53) (end -3.81 49.53) (layer "F.Fab") (width 0.1) (tstamp 8ee3b5f5-923f-4692-a403-345c11b6d76c))
(fp_line (start -3.81 49.53) (end -3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp d2856968-08ce-4b66-94bf-c3b5bece697f))
(fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp ecfdfa63-1535-4d9f-a104-c63e8207b69c))
(fp_line (start 1.27 -0.27) (end 1.27 49.53) (layer "F.Fab") (width 0.1) (tstamp ed4c5a85-a7b0-400f-9121-1c12abda7ed5))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp 7f70c989-4616-47b0-8b27-8f8c1cdbf854))
(pad "2" thru_hole oval (at -2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_2") (pintype "passive") (tstamp 156eab28-efe6-487a-a549-6a2469e8e2ef))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_3") (pintype "passive") (tstamp d57dcbae-fa80-4ca8-9bd5-5ed74c87a5e8))
(pad "4" thru_hole oval (at -2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_4") (pintype "passive") (tstamp 94af4e84-ff68-487e-a0fb-85c245286787))
(pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_5") (pintype "passive") (tstamp e1b9e6c2-469c-4982-be92-a24485c08c6a))
(pad "6" thru_hole oval (at -2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_6") (pintype "passive") (tstamp 892b7088-9a96-4cee-a16c-bf562429c572))
(pad "7" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_7") (pintype "passive") (tstamp 6c58fe4d-5019-4d2b-95e9-29b4835bc216))
(pad "8" thru_hole oval (at -2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_8") (pintype "passive") (tstamp f85a76f1-b6a6-4ca6-853e-c658df9663d3))
(pad "9" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_9") (pintype "passive") (tstamp 16af1504-5b20-4e77-93fb-88aace2a2598))
(pad "10" thru_hole oval (at -2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_10") (pintype "passive") (tstamp a0b47954-233c-4415-b376-63f1336bead2))
(pad "11" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_11") (pintype "passive") (tstamp ef5e27ff-7be9-4756-90c9-9d716925ef32))
(pad "12" thru_hole oval (at -2.54 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_12") (pintype "passive") (tstamp 1bcb28ae-2bb1-48c2-bbd4-84809a91fad1))
(pad "13" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_13") (pintype "passive") (tstamp 0768a810-33a6-4797-ac25-b0ac1022381f))
(pad "14" thru_hole oval (at -2.54 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_14") (pintype "passive") (tstamp f37bc99e-24ec-4185-8651-6211cca12e25))
(pad "15" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_15") (pintype "passive") (tstamp 0656b3f0-0b3a-46de-9284-4936d91c07a3))
(pad "16" thru_hole oval (at -2.54 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_16") (pintype "passive") (tstamp 2ccc01b8-4780-4c52-9a72-7f5f54e6ec54))
(pad "17" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_17") (pintype "passive") (tstamp c5560c35-6aa9-40ea-aa02-f561780d7e56))
(pad "18" thru_hole oval (at -2.54 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_18") (pintype "passive") (tstamp de8a9471-4618-42e2-8b09-3ec08c060ccf))
(pad "19" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_19") (pintype "passive") (tstamp 36bbcbda-d89e-4ba0-b199-7656b32bbdd4))
(pad "20" thru_hole oval (at -2.54 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "Pin_20") (pintype "passive") (tstamp c37d6574-5796-4acc-b48c-5305596e359b))
(pad "21" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_21") (pintype "passive") (tstamp 72cbbcd5-7a47-4699-a007-b1f4d6c6c778))
(pad "22" thru_hole oval (at -2.54 25.4) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_22") (pintype "passive") (tstamp d6642cb5-ec01-4799-b80b-71f141c405fe))
(pad "23" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_23") (pintype "passive") (tstamp 3918ba29-02c1-4f47-bc09-860e85e7a935))
(pad "24" thru_hole oval (at -2.54 27.94) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_24") (pintype "passive") (tstamp 542256e3-806b-43cc-b1d7-b2baffcd01e5))
(pad "25" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_25") (pintype "passive") (tstamp 4ba182d9-83a6-4995-aece-bf93f0d3e68a))
(pad "26" thru_hole oval (at -2.54 30.48) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_26") (pintype "passive") (tstamp ea3887f9-30b9-4a5c-b706-15420fa92af7))
(pad "27" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_27") (pintype "passive") (tstamp 475aa488-4155-44fc-a64e-cbd322096064))
(pad "28" thru_hole oval (at -2.54 33.02) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_28") (pintype "passive") (tstamp 00438e13-20a1-447f-89a6-3dd64c872053))
(pad "29" thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_29") (pintype "passive") (tstamp 377c7139-2f82-4ff1-bfda-e76f5034d698))
(pad "30" thru_hole oval (at -2.54 35.56) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_30") (pintype "passive") (tstamp 4766d9b0-a8f4-4a23-9bcc-72a4aaba102a))
(pad "31" thru_hole oval (at 0 38.1) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_31") (pintype "passive") (tstamp 22e65895-13cc-4eaa-988e-c612ddc8566f))
(pad "32" thru_hole oval (at -2.54 38.1) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_32") (pintype "passive") (tstamp 0a78bf84-a80f-4341-a27d-d2a3709b66e5))
(pad "33" thru_hole oval (at 0 40.64) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_33") (pintype "passive") (tstamp fde20d04-7b3b-4283-9aa9-f9df150f4cbd))
(pad "34" thru_hole oval (at -2.54 40.64) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_34") (pintype "passive") (tstamp 15a9bdc9-9322-4ff4-9195-d0dfb3db5f3f))
(pad "35" thru_hole oval (at 0 43.18) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_35") (pintype "passive") (tstamp 006c4805-502c-450e-99a5-6f1fc2de00cc))
(pad "36" thru_hole oval (at -2.54 43.18) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_36") (pintype "passive") (tstamp 49b34eaf-fd72-49a7-9c85-ff46d905dacf))
(pad "37" thru_hole oval (at 0 45.72) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_37") (pintype "passive") (tstamp f2eadd8d-cb53-499b-a9b9-7c0b113395c8))
(pad "38" thru_hole oval (at -2.54 45.72) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_38") (pintype "passive") (tstamp 68841f6e-0230-486f-9e3e-812a55098bf7))
(pad "39" thru_hole oval (at 0 48.26) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_39") (pintype "passive") (tstamp 747cc68a-b368-4a76-a64e-f9e334b6d7a7))
(pad "40" thru_hole oval (at -2.54 48.26) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "Pin_40") (pintype "passive") (tstamp 93116041-1934-4c9a-9d13-96d1ec9ca6dc))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x20_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 0d0e3794-a9db-4772-9c04-702c4c6037ca)
(at 185 50)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/98297066-1ca5-46a5-a268-c46cba2b2b16")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c321fdb6-22b5-4adf-b31d-4e9f50f81596)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b982483-b012-4c3d-bbdf-368c9ea8008b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9f91c6a-d897-47a2-8c41-e1903b762381)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 3c8556de-5d2e-494a-8ad7-bbdf47e6a77f))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 524ff69c-d735-4e28-a876-a9ed5663a660))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "1") (pintype "input") (tstamp b12defb3-3fc2-455d-ba60-d43cf4b4d135))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 1a73c070-7d75-447e-b0f0-dd09a60d3842)
(at 185 130)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/653200ff-bbff-463f-bc20-0634e1c87362")
(attr exclude_from_pos_files)
(fp_text reference "H19" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0bffacd-6041-47a0-b223-0ac589885de6)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4b761ed-2c39-4223-bbff-f977ee9ace9f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b8edc92-8c77-4769-9fbb-11cbb34e6ae6)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 6ba94320-87d4-4416-af84-b62f45bd441a))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 0eef8e4a-dab0-4fb8-9178-bd9d91086b9f))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 7 "TR2_GND") (pinfunction "1") (pintype "input") (tstamp 760e5dfe-f0a0-45f7-aeac-d1993081a53a))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A422) (tstamp 296e84c3-2a0d-4e2d-8129-a0e2b90cfa51)
(at 152.5 137.5)
(descr "Through hole straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x04 2.54mm double row")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/5985ac04-48ac-4b6d-b151-e5a9ac832838")
(attr through_hole)
(fp_text reference "J4" (at -1.27 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp efdf4e01-bd22-4bbe-b463-04e6782b0410)
)
(fp_text value "Conn_02x04_Odd_Even" (at -1.27 10.39) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17cacad6-40b9-4b43-98e8-4ffcfee4218c)
)
(fp_text user "${REFERENCE}" (at -1.27 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d6dedca-c3b1-4e19-a285-fa95295ee08c)
)
(fp_line (start -3.87 -1.33) (end -3.87 8.95) (layer "F.SilkS") (width 0.12) (tstamp 03f6a48c-3186-42d9-8475-1a3fb343f04d))
(fp_line (start -1.27 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 23f5d6ed-6e0f-46e0-bf4b-17e33b923b02))
(fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 2c01f39b-eb69-4ff0-9332-1fa1481673f0))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 51bb1967-ed5a-4f4c-beab-f36bde2416bd))
(fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 79441fd3-08ef-4043-a634-0fae6e215e1b))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 955bb256-6c07-4da4-92b3-aad2aa378616))
(fp_line (start -3.87 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp b192c3c3-13df-4c08-b8eb-d5b0e516fa71))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp dfd019c5-c433-485d-b1e2-e0a429049c45))
(fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 57be4770-fd94-4767-926a-588f8fd1c43d))
(fp_line (start 1.76 -1.8) (end 1.76 9.4) (layer "F.CrtYd") (width 0.05) (tstamp ab595894-311b-437b-8d01-f7cf43c4d533))
(fp_line (start 1.76 9.4) (end -4.34 9.4) (layer "F.CrtYd") (width 0.05) (tstamp dbaa883f-8dd6-48d3-b43a-af2511cd7602))
(fp_line (start -4.34 9.4) (end -4.34 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp eb495c9f-311f-48cd-84ca-91e771ab17f2))
(fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2e71674f-baff-4ad8-be03-3b8c70dcbbcf))
(fp_line (start 1.27 -0.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 2ebeef01-5432-4fd8-ad0a-206a2a11739d))
(fp_line (start 1.27 8.89) (end -3.81 8.89) (layer "F.Fab") (width 0.1) (tstamp 593d403c-7345-42a7-8dd3-9b5b0e267a55))
(fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp a5495862-746c-4d90-aad6-92b2e5c8cd9f))
(fp_line (start -3.81 8.89) (end -3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp ea2503a0-e002-4830-98b0-61250693ff41))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "TR1_GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 1d1be747-6bd6-4179-b896-d7552ba45a81))
(pad "2" thru_hole oval (at -2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "TR1_VCC") (pinfunction "Pin_2") (pintype "passive") (tstamp f2a3a63d-1d33-451c-b67b-ef81312cf924))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "TR1_GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 26cb18f0-8e64-4908-82c6-2071dd03aeab))
(pad "4" thru_hole oval (at -2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "TR1_VCC") (pinfunction "Pin_4") (pintype "passive") (tstamp 42112e4b-71bb-48ac-a836-83849ba934af))
(pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "TR2_GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 7caad7ec-4dd4-4c7e-a6f9-e9b32d0d29c2))
(pad "6" thru_hole oval (at -2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "TR2_VCC") (pinfunction "Pin_6") (pintype "passive") (tstamp e6af9559-95ce-4504-894f-d689d3913b6e))
(pad "7" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "TR2_GND") (pinfunction "Pin_7") (pintype "passive") (tstamp aeb3ee4f-053d-4f3d-aee0-c11a430c3cd6))
(pad "8" thru_hole oval (at -2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "TR2_VCC") (pinfunction "Pin_8") (pintype "passive") (tstamp 48c9213a-331e-438e-8df7-0ff7baa28e55))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 329e68c5-ff1e-42a8-86de-6bf06e62e865)
(at 185 125)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/18148fd3-72f1-4b4c-ac48-4f9abdfe972d")
(attr exclude_from_pos_files)
(fp_text reference "H18" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1b4bad0-a5fd-4408-bc14-018aad13bf29)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b876d993-3517-4baa-8c6d-9c6060e63439)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e532525c-c56f-47d8-94bb-f529d31d3330)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 74f1aa60-3e53-497f-8352-291d88d6a20d))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 03f8da63-3678-45df-a292-07346ece37f6))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 6 "TR2_VCC") (pinfunction "1") (pintype "input") (tstamp 5ac63d20-e1b2-46ad-9f4a-d47303f463ed))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 34ef1db4-2e49-4e13-86a5-653f4bf05424)
(at 185 90)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/76e0babf-fd1d-444c-bd64-8f3cbb483c78")
(attr exclude_from_pos_files)
(fp_text reference "H10" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ab37105-cece-4dd3-83dd-a2b4449df45a)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86f45b8b-38c2-4f23-ba11-d0ce06c3a74d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78c5812a-2314-4baa-acea-251b32a17f60)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 133020ad-2c08-43d1-a08a-d45f097f994d))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 7983ba9a-3c5f-4510-9159-315845696a5a))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "1") (pintype "input") (tstamp dc760d19-0e01-465b-bf33-5ab39e027633))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A426) (tstamp 3506688f-b44e-4f5a-bd7e-804dfc26c8d4)
(at 57.5 130)
(descr "Through hole straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x02 2.54mm double row")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/268103e0-0dde-4c3e-97b9-0e0a951c3a75")
(attr through_hole)
(fp_text reference "J3" (at -1.27 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af4abd46-d2b5-46ea-bd5c-845b921c0ede)
)
(fp_text value "Conn_02x02_Odd_Even" (at -1.27 5.31) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3c4c86b-321a-4c83-aa4d-36b8f2906993)
)
(fp_text user "${REFERENCE}" (at -1.27 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad7c0b65-855f-47d4-a36d-0cb0e52ebd05)
)
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3e48bc06-c5e8-49b2-8fad-9474eaf2065d))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 4ce426cf-c329-4c88-b745-5d8ecb2299ac))
(fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 665359fd-6284-41b0-bd18-9420d0531be6))
(fp_line (start -3.87 -1.33) (end -3.87 3.87) (layer "F.SilkS") (width 0.12) (tstamp 66618dd1-7b45-40fb-b778-24a23bf67b62))
(fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 8107cf9a-a317-44a6-a403-be50c4f63cb0))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 856a3728-6d8c-47cd-bcca-5f5f93dae5f5))
(fp_line (start -3.87 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 91db86b1-b1d8-40b3-8feb-23eac27de389))
(fp_line (start -1.27 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 946a48e9-e8c2-4f44-ae63-45b50b4d6794))
(fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 32db80d1-b306-4ade-a64d-2daf5ef67aff))
(fp_line (start -4.34 4.3) (end -4.34 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 3b0e9730-5c42-48af-96fc-bc85d524c0de))
(fp_line (start 1.76 -1.8) (end 1.76 4.3) (layer "F.CrtYd") (width 0.05) (tstamp 93100669-74e6-4b08-9535-f02dc5a7dcfe))
(fp_line (start 1.76 4.3) (end -4.34 4.3) (layer "F.CrtYd") (width 0.05) (tstamp fa71bea9-87ef-4f35-8ed6-4554ebcdc8a9))
(fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp 7c1e2cc8-d172-4309-9934-a874e6215f8b))
(fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 82005f01-6475-401c-8ec1-aeb82ceb84ea))
(fp_line (start 1.27 -0.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp ba525825-26f9-4ec7-a38e-307a4471964b))
(fp_line (start 1.27 3.81) (end -3.81 3.81) (layer "F.Fab") (width 0.1) (tstamp bc0fa46f-a4f3-4acd-a415-b06e6afe6f02))
(fp_line (start -3.81 3.81) (end -3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp c392cab5-6317-44e0-a74e-7b7cd78a9591))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "Pin_1") (pintype "passive") (tstamp 590861fc-3844-4609-975c-caa1a229d69d))
(pad "2" thru_hole oval (at -2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "Pin_2") (pintype "passive") (tstamp 89b01c67-e47b-43a9-8c6f-ddab1254a597))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "Pin_3") (pintype "passive") (tstamp 3f4a6641-cb8a-41b5-bc17-9f7e7adaa5ee))
(pad "4" thru_hole oval (at -2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "Pin_4") (pintype "passive") (tstamp 4f755e4a-7a7c-461c-9874-1b5ae6370a09))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 3de8307e-9db0-4519-a922-4fe8cf83d279)
(at 185 110)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/1747e309-d2e2-4752-b7fc-5a3f12028340")
(attr exclude_from_pos_files)
(fp_text reference "H16" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf25417e-df82-4fd0-a1bf-cbeb3efa50e8)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1202f26b-384f-4318-94d2-04f866008198)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec2d215e-460c-4b87-b8df-4217f2b5f0da)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp e447171b-807d-4a25-9328-a3c99a593311))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp bd271e0d-7c95-4a91-9018-cbe1bd1e7a12))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 4 "TR1_VCC") (pinfunction "1") (pintype "input") (tstamp 6d1f6a52-4c53-4e04-b317-f336d737df9c))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 47019aee-16c0-4972-99df-3bb25a2693c8)
(at 185 80)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/bc31cd51-9df9-4377-b668-daf9c5b2d86c")
(attr exclude_from_pos_files)
(fp_text reference "H8" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2716f5db-0228-4b9b-9f4c-22011a174480)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89f42108-39c1-4623-8cb8-5c8e4a54536a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d8f150c-4229-4695-86aa-57e6f39be090)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 6f1d3c6b-0b22-403c-9be2-13f0c93dfcac))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 1aef1e8e-cfe5-497a-823e-e34e627e4b50))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "1") (pintype "input") (tstamp e2d64cc2-5af3-43f3-8051-14f981d7247c))
)
(footprint "MountingHole:MountingHole_4.3mm_M4_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 4744d0ca-2437-40e6-8de2-91d674dada33)
(at 57.5 142.5)
(descr "Mounting Hole 4.3mm, M4")
(tags "mounting hole 4.3mm m4")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/f827d236-9ee6-43a7-a617-285ccd803ee7")
(attr exclude_from_pos_files)
(fp_text reference "H14" (at 0 -5.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d9d9b82-f7f8-49a5-a23e-1cc26401e5ce)
)
(fp_text value "MountingHole" (at 0 5.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bcccbdc-1fd0-4d65-b523-9046dfdd5835)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65d4efcd-e49f-426d-abab-b0f0981af633)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 39322773-dfa7-45b9-90df-4128f8dcb8e5))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b89ec4d5-13ec-4b4d-9445-488a91323b76))
(pad "1" thru_hole circle (at 0 0) (size 8.6 8.6) (drill 4.3) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "1") (pintype "input") (tstamp 47ec3e9c-b5b1-4c22-b715-966d48478a39))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A426) (tstamp 6be50aaf-f06d-42e3-a6f7-acc431ace1ea)
(at 57.5 47.5)
(descr "Through hole straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x02 2.54mm double row")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/65088871-aa4a-445a-afaa-5690c1c39517")
(attr through_hole)
(fp_text reference "J2" (at -1.27 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1095316-5eab-41b0-978b-dc518d89ec25)
)
(fp_text value "Conn_02x02_Odd_Even" (at -1.27 5.31) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp afd81f41-0ede-4fc0-8e28-dcf550cd1e8e)
)
(fp_text user "${REFERENCE}" (at -1.27 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee8c4b6c-7649-4f28-9e5c-da02fddd90f7)
)
(fp_line (start -1.27 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 0d24fc3c-0c2f-46f2-96df-c0d0061c99cb))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5540502b-cb74-4825-931f-840ab79f3230))
(fp_line (start -3.87 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 5da0eb2b-e942-4aac-9116-ed3d3f2eeea0))
(fp_line (start -3.87 -1.33) (end -3.87 3.87) (layer "F.SilkS") (width 0.12) (tstamp 5f6cc386-971f-4e76-8798-53f25aabcbaa))
(fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5faa4d76-aab8-471a-959c-3a9934cbbeb8))
(fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 8cd93149-9a10-4040-bc22-3140c8c2df9c))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 90720833-6e25-49c6-ad38-56d55a96ca2c))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp e7d0202a-242c-4f58-8972-364c9bd21695))
(fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 0b19d6cb-dcc8-4941-8f49-34aa80112c52))
(fp_line (start 1.76 -1.8) (end 1.76 4.3) (layer "F.CrtYd") (width 0.05) (tstamp 55d9df85-eb74-4f53-89a8-e63b20f44ba1))
(fp_line (start -4.34 4.3) (end -4.34 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5fa5b212-ab04-471f-b68e-91be605a4d15))
(fp_line (start 1.76 4.3) (end -4.34 4.3) (layer "F.CrtYd") (width 0.05) (tstamp e3809c52-df07-4f88-ae6b-00d405f1d4f7))
(fp_line (start 1.27 3.81) (end -3.81 3.81) (layer "F.Fab") (width 0.1) (tstamp 853118bb-1f3c-429a-83c6-683651b665bd))
(fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp b4cedbd3-af82-4666-8ab1-d3dfd8c0c54e))
(fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp ce0a9a4b-8505-436e-8dde-21b042faa127))
(fp_line (start -3.81 3.81) (end -3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp d97b6eef-c9d0-49bc-8bc7-0d4ab13f5817))
(fp_line (start 1.27 -0.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp f5732e7b-d517-4dcd-84a5-e31dd1eeb7fa))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "Pin_1") (pintype "passive") (tstamp 28e83bd8-634c-4e7c-892b-e98037636dd5))
(pad "2" thru_hole oval (at -2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "Pin_2") (pintype "passive") (tstamp 9d9bf0b6-b0d0-4ff2-8211-1eaafbf7f517))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "Pin_3") (pintype "passive") (tstamp 03fea657-afdd-40c1-a2fa-740bd092b1a7))
(pad "4" thru_hole oval (at -2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "Pin_4") (pintype "passive") (tstamp fcfebcc4-151b-4874-859b-214b257bad42))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 79265ae9-cfba-4953-bbe5-9ddca0296f5e)
(at 185 70)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/a5211eaa-c04e-4761-b503-3707198595a3")
(attr exclude_from_pos_files)
(fp_text reference "H6" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 163e92a9-de92-47a6-a044-60834d82233b)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1250ac5c-4dfd-40ee-b691-812b39d28a14)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5aa8b4c7-acd8-4513-a5e6-5de2ba17ce06)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 45a52320-2a18-4275-9581-157d0778b0cd))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 73371927-266e-46dd-be42-e291d9c66f74))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "1") (pintype "input") (tstamp 5152bbcc-fb74-4863-97e4-2d8ae33392fb))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 798f49dc-b0e8-47e8-b20d-bcd376372d91)
(at 185 85)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/60c7af43-08e9-4ef8-bdcf-4dc0656f8bbb")
(attr exclude_from_pos_files)
(fp_text reference "H9" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c36011b0-eda4-49ed-8665-cdd32c07706c)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b3d8949-74ad-4ec0-9f51-e3d3380f3be3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65ca51b6-72b3-48d7-9398-eb3154a8caf7)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 45a69a4e-7b9e-4f01-8a76-58fc43545077))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 9eb116fc-04fa-4093-9813-653f23200749))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "1") (pintype "input") (tstamp 28c656a1-9247-4ec0-b513-9a66e79f02dd))
)
(footprint "MountingHole:MountingHole_4.3mm_M4_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 7e015ebd-3720-4f11-bbdd-858cf3c44a97)
(at 57.5 37.5)
(descr "Mounting Hole 4.3mm, M4")
(tags "mounting hole 4.3mm m4")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/3efb45eb-a1cc-4300-85c8-c7f83adc9f7d")
(attr exclude_from_pos_files)
(fp_text reference "H12" (at 0 -5.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d3e7bfd-2e2b-464b-86a4-cfbf518f64e0)
)
(fp_text value "MountingHole" (at 0 5.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86782ff1-2558-4b75-9794-df3c436c284a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abb091b5-c7a9-46f4-9439-1665de6ce140)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 4d756709-da3e-4acf-bcf3-73edd2d9d137))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ef773a78-1d11-4a58-b915-4821dbb7d167))
(pad "1" thru_hole circle (at 0 0) (size 8.6 8.6) (drill 4.3) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "1") (pintype "input") (tstamp 6fb0c843-bd01-4977-89a6-385566508518))
)
(footprint "MountingHole:MountingHole_4.3mm_M4_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 90cb7b1b-f7f4-4769-8b77-0797b7b6134c)
(at 162.5 142.5)
(descr "Mounting Hole 4.3mm, M4")
(tags "mounting hole 4.3mm m4")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/c4ad4b68-2119-41a7-aefb-1c09d3373e77")
(attr exclude_from_pos_files)
(fp_text reference "H15" (at 0 -5.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2acd2ef-7e88-4da8-9d32-d6c84ec529bc)
)
(fp_text value "MountingHole" (at 0 5.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 070a04ce-924a-4861-b82a-ea0b8d4b60d6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72fe3efa-74ab-46f9-9177-4cd11178fea8)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 9c2b03f7-da32-4f32-b5ed-7abba086acb8))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ba8cb1c5-a1be-4de7-bd17-16b6b31f3cba))
(pad "1" thru_hole circle (at 0 0) (size 8.6 8.6) (drill 4.3) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "1") (pintype "input") (tstamp 45c42b0d-53eb-4055-84dc-2eb7decc69ab))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 9f6a2026-6b53-41a5-96c5-5372624a2d36)
(at 185 75)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/c36db5ed-5b6c-45bf-8bb3-f0cb382d8f02")
(attr exclude_from_pos_files)
(fp_text reference "H7" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e4ace28-fa3a-40b3-86a7-c974eb2f3774)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07fea010-1a42-4d04-aa6e-5d4a56581ae8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b1d4f3b-39e6-47ac-ba65-fdb9bf967c8b)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp c606ec55-ca74-4969-9d4d-de658a7c58d1))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 28fe069a-fe62-4503-85d3-eeb947a3ae23))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 2 "HE_GND") (pinfunction "1") (pintype "input") (tstamp 3ff95e95-30d3-46ec-b217-8ab42bf76c8f))
)
(footprint "MountingHole:MountingHole_4.3mm_M4_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp a5153b65-fc59-433c-b430-694c00efbb9e)
(at 162.5 37.5)
(descr "Mounting Hole 4.3mm, M4")
(tags "mounting hole 4.3mm m4")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/578f9548-2849-49c1-88c1-08aad6adf0a0")
(attr exclude_from_pos_files)
(fp_text reference "H13" (at 0 -5.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b09cdde-274c-41fe-be5f-34d6afdd4680)
)
(fp_text value "MountingHole" (at 0 5.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6442387-5eab-4270-bb89-306e485accce)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95610158-3397-438a-994e-7482b9043891)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 39e5d18d-7f81-4acb-9c9b-13dff0a37601))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 14537f2e-e444-4adb-9aeb-8308f215d118))
(pad "1" thru_hole circle (at 0 0) (size 8.6 8.6) (drill 4.3) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "1") (pintype "input") (tstamp b7d77dda-525a-4433-a554-ce39f1c2d5c4))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp a80fc376-7927-4165-8e79-70cd766328c8)
(at 185 100)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/1e076611-53a5-4e5b-b2b7-f8e5ece5fd15")
(attr exclude_from_pos_files)
(fp_text reference "H11" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0977f7d4-560e-453d-9db5-3f1db1117d21)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 893cf61c-d0b0-471f-8af0-f05ec5c18542)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2cf63759-664d-4d2f-af2d-ba724cb4edf7)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp b8c91194-cdbe-4163-9b75-f33dee2e883c))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 5fe065fb-2ff1-49f9-ab9c-6d975fbada87))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 3 "EARTH") (pinfunction "1") (pintype "input") (tstamp e4584618-b83c-4090-8880-74a926a6225f))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp c546cf33-e9ac-408e-a8e8-65cdb41dc3d1)
(at 185 55)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/0c390b45-36f1-4134-a9b4-b3e10098cfa5")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3afc3c47-f59f-4f28-949f-df05744f3e57)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a98dc71-0477-4983-aa0d-b920ed3f1da3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0290174c-f29c-41d4-9170-1aa5b497ca3f)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 4d0d877a-95a2-4f61-932f-5a480149139e))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 354d360a-ce3c-4c1b-9a7f-e3a1b59c26ba))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "1") (pintype "input") (tstamp 5024b3e9-0233-4cd3-b0e2-af0bca4787f3))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp dcbdddda-81ea-4536-9612-2be0fb46d661)
(at 185 115)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/4284c82a-59d4-4ad1-aa57-07b70ec35272")
(attr exclude_from_pos_files)
(fp_text reference "H17" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c89a45d3-a9a6-48ae-ac03-826a2dba1e9d)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b250238-c62c-4f6a-8d05-648d36c2145e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a25595ce-32a4-46cc-a7ae-6e0cf6c84551)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 2e7c74ab-666e-4d6f-9102-67878a36f971))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp db2b86d6-8254-463b-b7ee-772ea14d9bee))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 5 "TR1_GND") (pinfunction "1") (pintype "input") (tstamp 7dfb4a48-dc48-415d-a07f-361901ea80ce))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp dff7311e-8153-4fd7-be42-a7bc9261767e)
(at 185 60)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/6cb2206a-1c12-4008-bd46-e3c1f0797fd4")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0837b0ed-7977-4015-a404-8af747b42dcf)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f63eb40e-b4a4-472b-a6f7-da11cceadf3d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ffdcf8e-bb0c-4dd7-bcc0-bb660b8a2fe1)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 35e2fb78-9aec-40a5-b1af-9eda315ddc5d))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 3c4e446b-7d52-4417-83d7-5d699d975577))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "1") (pintype "input") (tstamp 96173498-003f-40ff-bf26-e9e482f52200))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp e32cc335-97df-4828-94d5-b764190686c4)
(at 185 40)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/b8e900a1-b23f-4e6a-9f49-fca89e503dc4")
(attr exclude_from_pos_files)
(fp_text reference "H5" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 756d6bd1-bcfe-4360-b326-36e22c0d8bb1)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e982498d-f41d-4703-b300-4fbf098efb29)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3fb7ad1-b0d0-40c7-a92e-caa63f91201e)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 7a562727-9c84-4731-ac33-3ee7dcac561b))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp fcbed6c6-8119-42f0-9530-e743d900ea9c))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "1") (pintype "input") (tstamp 913607d5-0598-4db5-a4f1-878691216012))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp fba31de1-be73-4f73-ae75-e5f76d2164ad)
(at 185 45)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "RSHP-CB.kicad_sch")
(property "Sheetname" "")
(path "/8717824e-06e2-41c6-b413-b4c8b07da1dd")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bcc223cf-079a-465d-adaf-f9b018f81ba0)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 36554cc5-e29b-483d-811b-25a2c8ff0b83)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07334bad-5dfa-46dc-8df9-274427c5ce6c)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp e9ade662-f63f-49bd-b715-cc3fa5d5b186))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 28570e83-af54-45d3-9cd0-3d349b751445))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 1 "HE_VCC") (pinfunction "1") (pintype "input") (tstamp 3ee420ac-66c2-4136-ac39-11fd58442c2a))
)
(gr_line (start 120 105) (end 147.5 132.5) (layer "Edge.Cuts") (width 0.15) (tstamp 12cf090e-9167-433b-81bf-94e5b741b00e))
(gr_line (start 190 30) (end 50 30) (layer "Edge.Cuts") (width 0.15) (tstamp 1b9f4d4c-61ec-49e6-8f0b-31a9465d2a9c))
(gr_line (start 50 150) (end 190 150) (layer "Edge.Cuts") (width 0.15) (tstamp 2339c857-4a4c-414a-b4a2-7c1af11d61ef))
(gr_arc (start 147.5 132.5) (mid 110 146.670069) (end 72.5 132.5) (layer "Edge.Cuts") (width 0.15) (tstamp 2996ffc7-12fe-4ce8-9ae1-101db318db8d))
(gr_arc (start 120 105) (mid 110 108.028703) (end 100 105) (layer "Edge.Cuts") (width 0.15) (tstamp 38bca9e3-702a-45a3-9742-2a03b0e7df19))
(gr_line (start 100 105) (end 72.5 132.5) (layer "Edge.Cuts") (width 0.15) (tstamp 3a8671b5-778f-443f-85fe-7c41c1260812))
(gr_arc (start 125 80) (mid 128.028703 90) (end 125 100) (layer "Edge.Cuts") (width 0.15) (tstamp 41308bc0-3f67-4a9f-92fb-e3cbb8ecb8c4))
(gr_line (start 120 75) (end 147.5 47.5) (layer "Edge.Cuts") (width 0.15) (tstamp 5bc5dc86-cdaa-478f-a3d7-74959a3816c4))
(gr_line (start 125 80) (end 152.5 52.5) (layer "Edge.Cuts") (width 0.15) (tstamp 713b66d7-1c30-4208-8c2b-a110d1dbf23b))
(gr_line (start 95 100) (end 67.5 127.5) (layer "Edge.Cuts") (width 0.15) (tstamp 7cf71426-c937-49fc-8b81-94baea261c1d))
(gr_line (start 160 63.2) (end 160 116.8) (layer "Edge.Cuts") (width 0.15) (tstamp 86e95b24-3d48-4915-8950-f886c2041da9))
(gr_line (start 125 100) (end 152.5 127.5) (layer "Edge.Cuts") (width 0.15) (tstamp c36be0ef-5966-4e7a-9003-14f82775eedf))
(gr_line (start 50 30) (end 50 150) (layer "Edge.Cuts") (width 0.15) (tstamp c96c7883-a191-45db-a4b7-bbfb32893ba2))
(gr_arc (start 67.5 127.5) (mid 53.329931 90) (end 67.5 52.5) (layer "Edge.Cuts") (width 0.15) (tstamp cff8f17b-d49e-4e24-b162-73a4e8cc0625))
(gr_arc (start 152.5 52.5) (mid 156.549877 57.639806) (end 160 63.2) (layer "Edge.Cuts") (width 0.15) (tstamp d53bba7a-1f18-410d-9ae2-74ba83d222f1))
(gr_line (start 190 150) (end 190 30) (layer "Edge.Cuts") (width 0.15) (tstamp d566bec3-8af1-4290-b34c-22ee0c036058))
(gr_line (start 100 75) (end 72.5 47.5) (layer "Edge.Cuts") (width 0.15) (tstamp d711f200-97d7-43c9-b1a7-154058666487))
(gr_arc (start 72.5 47.5) (mid 110 33.329931) (end 147.5 47.5) (layer "Edge.Cuts") (width 0.15) (tstamp dec3ef06-1b64-41fc-bb23-2160bed8f15f))
(gr_arc (start 100 75) (mid 110 71.971297) (end 120 75) (layer "Edge.Cuts") (width 0.15) (tstamp e26049c8-7634-4c6c-a247-67cd7eb30346))
(gr_line (start 95 80) (end 67.5 52.5) (layer "Edge.Cuts") (width 0.15) (tstamp e4c2b24f-7167-4dfa-b561-9cdf3167a95e))
(gr_arc (start 160 116.8) (mid 156.55069 122.360764) (end 152.5 127.5) (layer "Edge.Cuts") (width 0.15) (tstamp e8bcb0a7-4063-4a11-91b1-987a2ab1cae4))
(gr_arc (start 95 100) (mid 91.971297 90) (end 95 80) (layer "Edge.Cuts") (width 0.15) (tstamp f0cc0fcc-4b1b-4ecc-97e6-9c92dbda72c4))
(gr_line (start 50 30) (end 170 150) (layer "User.1") (width 0.15) (tstamp 09e16475-e94b-411b-9282-27009afd4674))
(gr_circle (center 110 90) (end 92.5 90) (layer "User.1") (width 0.15) (fill none) (tstamp 1c85e0e9-ce4c-493b-939a-0df556c6803b))
(gr_line (start 50 150) (end 50 30) (layer "User.1") (width 0.15) (tstamp 39eb4798-dcd0-4d70-8984-0367f3f5cc46))
(gr_line (start 170 30) (end 50 150) (layer "User.1") (width 0.15) (tstamp 3c50badc-e1c9-4c9d-989f-3d6cf06f8742))
(gr_circle (center 110 90) (end 52.5 90) (layer "User.1") (width 0.15) (fill none) (tstamp 6ec84166-e0eb-4e0a-be4f-79d70e60f2a4))
(gr_line (start 50 30) (end 170 30) (layer "User.1") (width 0.15) (tstamp b326b080-b99d-47be-9f7a-47bf836e453b))
(gr_line (start 170 30) (end 170 150) (layer "User.1") (width 0.15) (tstamp c14eabd5-1655-4cc1-9e9e-b3768fb6227e))
(gr_line (start 170 150) (end 50 150) (layer "User.1") (width 0.15) (tstamp ea91f9d9-41fb-49a6-b680-21268b429887))
(gr_text "HE_GND" (at 180 80 90) (layer "F.SilkS") (tstamp 6a57d79d-e1ec-4fc6-ab84-0f735a605d15)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "TR2" (at 180 127.5 90) (layer "F.SilkS") (tstamp 78ff9c8f-60fd-4d77-bcec-35aa09ba1653)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "TR1" (at 180 112.5 90) (layer "F.SilkS") (tstamp 95741aef-d2de-420d-b574-472c4a5b7ba3)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "HE_VCC" (at 180 50 90) (layer "F.SilkS") (tstamp c1a7647f-7c8d-45ae-b116-582cbbe99ec8)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "EARTH" (at 180 100 90) (layer "F.SilkS") (tstamp ea66cf59-0647-49b9-92ff-06d5c89dbda6)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "RSHP-CB-0010\nReflow Soldering Hot Plate\nConnection Board\nhttp://redscorp.net\n(c) 2022 Andriy Golovnya" (at 110 90) (layer "F.SilkS") (tstamp f1ce23e1-fd49-4fb7-8205-e5af8d4f6490)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(dimension (type aligned) (layer "User.1") (tstamp 0a1f2429-e8b1-42dc-9f30-30e0cc7686a7)
(pts (xy 185 115) (xy 185 150))
(height -20)
(gr_text "35.0000 mm" (at 203.85 132.5 90) (layer "User.1") (tstamp b1c991c9-b77f-49d8-98ca-64d7e66ff48b)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "User.1") (tstamp 0d75adbc-69c7-4c1d-9bce-7a8fecdfd4f6)
(pts (xy 185 90) (xy 185 60))
(height 30)
(gr_text "30.0000 mm" (at 213.85 75 90) (layer "User.1") (tstamp 50fcc680-1c7c-42e6-828f-f82118343a99)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "User.1") (tstamp 1037a187-064a-4d09-9d5a-5decb0574fed)
(pts (xy 185 110) (xy 185 150))
(height -25)
(gr_text "40.0000 mm" (at 208.85 130 90) (layer "User.1") (tstamp d6b3b9fc-fdb8-4061-9de0-f23533949960)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "User.1") (tstamp 12aed6d4-d789-4adf-842b-bae351453816)
(pts (xy 57.5 37.5) (xy 57.5 142.5))
(height 17.5)
(gr_text "105.0000 mm" (at 38.85 90 90) (layer "User.1") (tstamp aa55d805-f298-41d2-980d-8ea894ba2087)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "User.1") (tstamp 255d3320-5af5-4f30-8578-f1bbb15b6681)
(pts (xy 50 30) (xy 190 30))
(height -10)
(gr_text "140.0000 mm" (at 120 18.85) (layer "User.1") (tstamp 7e7c0712-a9fb-40aa-9693-7c2fd66c22ec)
(effects (font (size 1 1) (thickness 0.15)))