forked from PatrickBaus/SCAN2000
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrelay_block_sense.kicad_sch
3814 lines (3731 loc) · 134 KB
/
relay_block_sense.kicad_sch
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_sch (version 20230121) (generator eeschema)
(uuid 47993d80-a37e-426e-90c9-fd54b49ed166)
(paper "A4")
(title_block
(title "Keithley 2000-SCAN-20 SSR")
(date "2023-06-04")
(rev "v.1.2.1")
(comment 1 "Copyright (©) 2021, Patrick Baus <[email protected]>")
(comment 2 "Licensed under CERN OHL v.1.2")
)
(lib_symbols
(symbol "Connector:Screw_Terminal_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Screw_Terminal_01x02" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "screw terminal" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TerminalBlock*:*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Screw_Terminal_01x02_1_1"
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default))
(fill (type background))
)
(circle (center 0 -2.54) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 -2.2098)
(xy 0.3302 -3.048)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 0.3302)
(xy 0.3302 -0.508)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 -2.032)
(xy 0.508 -2.8702)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 0.508)
(xy 0.508 -0.3302)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 0) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:Screw_Terminal_01x10" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Screw_Terminal_01x10" (at 0 -15.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "screw terminal" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic screw terminal, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TerminalBlock*:*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Screw_Terminal_01x10_1_1"
(rectangle (start -1.27 11.43) (end 1.27 -13.97)
(stroke (width 0.254) (type default))
(fill (type background))
)
(circle (center 0 -12.7) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 -10.16) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 -7.62) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 -5.08) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 -2.54) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 -12.3698)
(xy 0.3302 -13.208)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 -9.8298)
(xy 0.3302 -10.668)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 -7.2898)
(xy 0.3302 -8.128)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 -4.7498)
(xy 0.3302 -5.588)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 -2.2098)
(xy 0.3302 -3.048)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 0.3302)
(xy 0.3302 -0.508)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 2.8702)
(xy 0.3302 2.032)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 5.4102)
(xy 0.3302 4.572)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 7.9502)
(xy 0.3302 7.112)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 10.4902)
(xy 0.3302 9.652)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 -12.192)
(xy 0.508 -13.0302)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 -9.652)
(xy 0.508 -10.4902)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 -7.112)
(xy 0.508 -7.9502)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 -4.572)
(xy 0.508 -5.4102)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 -2.032)
(xy 0.508 -2.8702)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 0.508)
(xy 0.508 -0.3302)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 3.048)
(xy 0.508 2.2098)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 5.588)
(xy 0.508 4.7498)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 8.128)
(xy 0.508 7.2898)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 10.668)
(xy 0.508 9.8298)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 0) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 2.54) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 5.08) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 7.62) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 10.16) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 10.16 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -12.7 0) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Relay_SolidState:TLP222A" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -5.08 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TLP222A" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_DIP:DIP-4_W7.62mm" (at -5.08 -5.08 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://toshiba.semicon-storage.com/info/docget.jsp?did=17036&prodName=TLP222A" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "MOSFET Output Photorelay 1-Form-A" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "MOSFET Photorelay 1-Form-A, Voff 60V, Ion 0,5A, DIP4" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W7.62mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TLP222A_0_1"
(rectangle (start -5.08 3.81) (end 5.08 -3.81)
(stroke (width 0.254) (type default))
(fill (type background))
)
(polyline
(pts
(xy -3.81 -0.635)
(xy -2.54 -0.635)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 -0.635)
(xy 1.016 -2.159)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 2.159)
(xy 1.016 0.635)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.524 -0.508)
(xy 1.524 -0.762)
)
(stroke (width 0.3556) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.794 0)
(xy 3.81 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.429 -1.651)
(xy 4.191 -1.651)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.429 1.651)
(xy 4.191 1.651)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -2.54)
(xy 3.81 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.524 -2.032)
(xy 1.524 -2.286)
(xy 1.524 -2.286)
)
(stroke (width 0.3556) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.524 -1.27)
(xy 1.524 -1.524)
(xy 1.524 -1.524)
)
(stroke (width 0.3556) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.524 0.762)
(xy 1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3556) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.524 1.524)
(xy 1.524 1.27)
(xy 1.524 1.27)
)
(stroke (width 0.3556) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.524 2.286)
(xy 1.524 2.032)
(xy 1.524 2.032)
)
(stroke (width 0.3556) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.651 -1.397)
(xy 2.794 -1.397)
(xy 2.794 -0.635)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.651 1.397)
(xy 2.794 1.397)
(xy 2.794 0.635)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 2.54)
(xy -3.175 2.54)
(xy -3.175 -2.54)
(xy -5.08 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.175 -0.635)
(xy -3.81 0.635)
(xy -2.54 0.635)
(xy -3.175 -0.635)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.651 -2.159)
(xy 2.794 -2.159)
(xy 2.794 -2.54)
(xy 5.08 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.651 -0.635)
(xy 2.794 -0.635)
(xy 2.794 0.635)
(xy 1.651 0.635)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.651 2.159)
(xy 2.794 2.159)
(xy 2.794 2.54)
(xy 5.08 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.778 -1.397)
(xy 2.286 -1.27)
(xy 2.286 -1.524)
(xy 1.778 -1.397)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.778 1.397)
(xy 2.286 1.524)
(xy 2.286 1.27)
(xy 1.778 1.397)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -1.651)
(xy 3.429 -0.889)
(xy 4.191 -0.889)
(xy 3.81 -1.651)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 1.651)
(xy 3.429 0.889)
(xy 4.191 0.889)
(xy 3.81 1.651)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -0.508)
(xy -0.635 -0.508)
(xy -1.016 -0.635)
(xy -1.016 -0.381)
(xy -0.635 -0.508)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.905 0.508)
(xy -0.635 0.508)
(xy -1.016 0.381)
(xy -1.016 0.635)
(xy -0.635 0.508)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 2.794 -0.635) (radius 0.127)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 2.794 0) (radius 0.127)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 2.794 0.635) (radius 0.127)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 3.81 -2.54) (radius 0.127)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 3.81 0) (radius 0.127)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 3.81 2.54) (radius 0.127)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TLP222A_1_1"
(pin passive line (at -7.62 2.54 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 -2.54 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 99.06 35.56) (diameter 0) (color 0 0 0 0)
(uuid 45b7fe01-a2fa-40c2-a3a2-4a9ae7c34dba)
)
(junction (at 116.84 35.56) (diameter 0) (color 0 0 0 0)
(uuid 6239967a-77bd-4ec9-89cd-e04efd8dbe26)
)
(junction (at 100.33 111.76) (diameter 0) (color 0 0 0 0)
(uuid d5b0938b-9efb-4b58-8ac4-d92da9ed2e30)
)
(junction (at 118.11 111.76) (diameter 0) (color 0 0 0 0)
(uuid fd146ca2-8fb8-4c71-9277-84f69bc5d3fc)
)
(wire (pts (xy 38.1 67.31) (xy 38.1 73.66))
(stroke (width 0) (type default))
(uuid 02289c61-13df-495e-a809-03e3a71bb201)
)
(wire (pts (xy 113.03 111.76) (xy 118.11 111.76))
(stroke (width 0) (type default))
(uuid 02491520-945f-40c4-9160-4e5db9ac115d)
)
(wire (pts (xy 212.09 124.46) (xy 212.09 128.27))
(stroke (width 0) (type default))
(uuid 058e77a4-10af-4bc8-a984-5984d3bbee4c)
)
(wire (pts (xy 34.29 26.67) (xy 43.18 26.67))
(stroke (width 0) (type default))
(uuid 0b43a8fb-b3d3-4444-a4b0-cf952c07dcfe)
)
(wire (pts (xy 100.33 128.27) (xy 100.33 111.76))
(stroke (width 0) (type default))
(uuid 0c9bbc06-f1c0-4359-8448-9c515b32a886)
)
(wire (pts (xy 185.42 25.4) (xy 185.42 33.02))
(stroke (width 0) (type default))
(uuid 0fc912fd-5036-4a55-b598-a9af40810824)
)
(wire (pts (xy 152.4 35.56) (xy 152.4 52.07))
(stroke (width 0) (type default))
(uuid 1020b588-7eb0-4b70-bbff-c77a867c3142)
)
(wire (pts (xy 153.67 128.27) (xy 153.67 111.76))
(stroke (width 0) (type default))
(uuid 10fa1a8c-62cb-4b8f-b916-b18d737ff71b)
)
(wire (pts (xy 168.91 104.14) (xy 168.91 101.6))
(stroke (width 0) (type default))
(uuid 1527299a-08b3-47c3-929f-a75c83be365e)
)
(wire (pts (xy 187.96 30.48) (xy 241.3 30.48))
(stroke (width 0) (type default))
(uuid 1765d6b9-ca0e-49c2-8c3c-8ab35eb3909b)
)
(wire (pts (xy 205.74 81.28) (xy 205.74 82.55))
(stroke (width 0) (type default))
(uuid 18cf1537-83e6-4374-a277-6e3e21479ab0)
)
(wire (pts (xy 176.53 124.46) (xy 176.53 128.27))
(stroke (width 0) (type default))
(uuid 18e95a1d-9d1d-4b93-8e4c-2d03c344acc0)
)
(wire (pts (xy 246.38 48.26) (xy 246.38 52.07))
(stroke (width 0) (type default))
(uuid 1a813eeb-ee58-4579-81e1-3f9a7227213c)
)
(wire (pts (xy 259.08 27.94) (xy 259.08 52.07))
(stroke (width 0) (type default))
(uuid 1c92f382-4ec3-478f-a1ca-afadd3087787)
)
(wire (pts (xy 184.15 111.76) (xy 207.01 111.76))
(stroke (width 0) (type default))
(uuid 1d1a7683-c090-4798-9b40-7ed0d9f3ce3b)
)
(wire (pts (xy 187.96 38.1) (xy 180.34 38.1))
(stroke (width 0) (type default))
(uuid 21573090-1953-4b11-9042-108ae79fe9c5)
)
(wire (pts (xy 175.26 35.56) (xy 175.26 25.4))
(stroke (width 0) (type default))
(uuid 2295a793-dfca-4b86-a3e5-abf1834e2790)
)
(wire (pts (xy 242.57 157.48) (xy 242.57 158.75))
(stroke (width 0) (type default))
(uuid 28d267fd-6d61-43bb-9705-8d59d7a44e81)
)
(wire (pts (xy 224.79 143.51) (xy 224.79 149.86))
(stroke (width 0) (type default))
(uuid 2a4f1c24-6486-4fd8-8092-72bb07a81274)
)
(wire (pts (xy 182.88 25.4) (xy 182.88 35.56))
(stroke (width 0) (type default))
(uuid 2a6ee718-8cdf-4fa6-be7c-8fe885d98fd7)
)
(wire (pts (xy 43.18 52.07) (xy 43.18 48.26))
(stroke (width 0) (type default))
(uuid 2cb05d43-df82-498c-aae1-4b1a0a350f82)
)
(wire (pts (xy 134.62 81.28) (xy 134.62 82.55))
(stroke (width 0) (type default))
(uuid 2e36ce87-4661-4b8f-956a-16dc559e1b50)
)
(wire (pts (xy 247.65 143.51) (xy 247.65 144.78))
(stroke (width 0) (type default))
(uuid 3382bf79-b686-4aeb-9419-c8ab591662bb)
)
(wire (pts (xy 177.8 38.1) (xy 170.18 38.1))
(stroke (width 0) (type default))
(uuid 341dde39-440e-4d05-8def-6a5cecefd88c)
)
(wire (pts (xy 167.64 27.94) (xy 167.64 25.4))
(stroke (width 0) (type default))
(uuid 348dc703-3cab-4547-b664-e8b335a6083c)
)
(wire (pts (xy 223.52 33.02) (xy 223.52 52.07))
(stroke (width 0) (type default))
(uuid 36210d52-4f9a-42bc-a022-019a63c67fc2)
)
(wire (pts (xy 121.92 67.31) (xy 121.92 68.58))
(stroke (width 0) (type default))
(uuid 3d416885-b8b5-4f5c-bc29-39c6376095e8)
)
(wire (pts (xy 184.15 101.6) (xy 184.15 111.76))
(stroke (width 0) (type default))
(uuid 3d70e675-48ae-4edd-b95d-3ca51e634018)
)
(wire (pts (xy 118.11 111.76) (xy 118.11 106.68))
(stroke (width 0) (type default))
(uuid 3e011a46-81bd-4ecd-b93e-57dffb1143e5)
)
(wire (pts (xy 170.18 38.1) (xy 170.18 52.07))
(stroke (width 0) (type default))
(uuid 3e147ce1-21a6-4e77-a3db-fd00d575cd22)
)
(wire (pts (xy 135.89 157.48) (xy 135.89 158.75))
(stroke (width 0) (type default))
(uuid 3f43c2dc-daa2-45ba-b8ca-7ae5aebed882)
)
(wire (pts (xy 241.3 81.28) (xy 241.3 82.55))
(stroke (width 0) (type default))
(uuid 414f80f7-b2d5-43c3-a018-819efe44fe30)
)
(wire (pts (xy 104.14 48.26) (xy 104.14 52.07))
(stroke (width 0) (type default))
(uuid 4198eb99-d244-457e-8768-395280df1a66)
)
(wire (pts (xy 116.84 67.31) (xy 116.84 73.66))
(stroke (width 0) (type default))
(uuid 42f10020-b50a-4739-a546-6b63e441c980)
)
(wire (pts (xy 158.75 143.51) (xy 158.75 144.78))
(stroke (width 0) (type default))
(uuid 43f341b3-06e9-4e7a-a26e-5365b89d76bf)
)
(wire (pts (xy 38.1 81.28) (xy 38.1 82.55))
(stroke (width 0) (type default))
(uuid 44a8a96b-3053-4222-9241-aa484f5ebe13)
)
(wire (pts (xy 99.06 35.56) (xy 99.06 27.94))
(stroke (width 0) (type default))
(uuid 44e77d57-d16f-4723-a95f-1ac45276c458)
)
(wire (pts (xy 99.06 52.07) (xy 99.06 35.56))
(stroke (width 0) (type default))
(uuid 4648968b-aa58-4f57-8f45-54b088364670)
)
(wire (pts (xy 172.72 33.02) (xy 172.72 25.4))
(stroke (width 0) (type default))
(uuid 46491a9d-8b3d-4c74-b09a-70c876f162e5)
)
(wire (pts (xy 189.23 114.3) (xy 189.23 128.27))
(stroke (width 0) (type default))
(uuid 48034820-9d25-4020-8e74-d44c1441e803)
)
(wire (pts (xy 241.3 67.31) (xy 241.3 73.66))
(stroke (width 0) (type default))
(uuid 494d4ce3-60c4-4021-8bd1-ab41a12b14ed)
)
(wire (pts (xy 247.65 124.46) (xy 247.65 128.27))
(stroke (width 0) (type default))
(uuid 4c4b4317-29d0-438a-b331-525ede18773a)
)
(wire (pts (xy 105.41 111.76) (xy 100.33 111.76))
(stroke (width 0) (type default))
(uuid 4c6a1dad-7acf-4a52-99b0-316025d1ab04)
)
(wire (pts (xy 134.62 67.31) (xy 134.62 73.66))
(stroke (width 0) (type default))
(uuid 4d3a1f72-d521-46ae-8fe1-3f8221038335)
)
(wire (pts (xy 135.89 128.27) (xy 135.89 109.22))
(stroke (width 0) (type default))
(uuid 4d51bc15-1f84-46be-8e16-e836b10f854e)
)
(wire (pts (xy 152.4 81.28) (xy 152.4 82.55))
(stroke (width 0) (type default))
(uuid 4f4bd227-fa4c-47f4-ad05-ee16ad4c58c2)
)
(wire (pts (xy 180.34 38.1) (xy 180.34 25.4))
(stroke (width 0) (type default))
(uuid 53719fc4-141e-4c58-98cd-ab3bf9a4e1c0)
)
(wire (pts (xy 123.19 143.51) (xy 123.19 144.78))
(stroke (width 0) (type default))
(uuid 53fda1fb-12bd-4536-80e1-aab5c0e3fc58)
)
(wire (pts (xy 224.79 109.22) (xy 224.79 128.27))
(stroke (width 0) (type default))
(uuid 54d76293-1ce2-46f8-9be7-a3d7f9f28112)
)
(wire (pts (xy 182.88 35.56) (xy 205.74 35.56))
(stroke (width 0) (type default))
(uuid 55cff608-ab38-48d9-ac09-2d0a877ceca1)
)
(wire (pts (xy 104.14 35.56) (xy 99.06 35.56))
(stroke (width 0) (type default))
(uuid 5626e5e1-59f4-4773-828e-16057ddc3518)
)
(wire (pts (xy 228.6 67.31) (xy 228.6 68.58))
(stroke (width 0) (type default))
(uuid 57543893-39bf-4d83-b4e0-8d020b4a6d48)
)
(wire (pts (xy 242.57 143.51) (xy 242.57 149.86))
(stroke (width 0) (type default))
(uuid 583b0bf3-0699-44db-b975-a241ad040fa4)
)
(wire (pts (xy 100.33 104.14) (xy 168.91 104.14))
(stroke (width 0) (type default))
(uuid 58a87288-e2bf-4c88-9871-a753efc69e9d)
)
(wire (pts (xy 104.14 67.31) (xy 104.14 68.58))
(stroke (width 0) (type default))
(uuid 59e09498-d26e-4ba7-b47d-fece2ea7c274)
)
(wire (pts (xy 171.45 143.51) (xy 171.45 149.86))
(stroke (width 0) (type default))
(uuid 59ee13a4-660e-47e2-a73a-01cfe11439e9)
)
(wire (pts (xy 191.77 104.14) (xy 260.35 104.14))
(stroke (width 0) (type default))
(uuid 5a010660-4a0b-4680-b361-32d4c3b60537)
)
(wire (pts (xy 134.62 33.02) (xy 134.62 52.07))
(stroke (width 0) (type default))
(uuid 5bb32dcb-8a97-4374-8a16-bc17822d4db3)
)
(wire (pts (xy 189.23 143.51) (xy 189.23 149.86))
(stroke (width 0) (type default))
(uuid 5c1d6842-15a5-4f73-b198-8836681840a1)