forked from PatrickBaus/SCAN2000
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrelays.kicad_sch
1229 lines (1216 loc) · 45 KB
/
relays.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 9390234f-bf3f-46cd-b6a0-8a438ec76e9f)
(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:Conn_01x26_Pin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 33.02 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x26_Pin" (at 0 -35.56 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_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x26, script generated" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x26_Pin_1_1"
(polyline
(pts
(xy 1.27 -33.02)
(xy 0.8636 -33.02)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -30.48)
(xy 0.8636 -30.48)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -27.94)
(xy 0.8636 -27.94)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -25.4)
(xy 0.8636 -25.4)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -22.86)
(xy 0.8636 -22.86)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -20.32)
(xy 0.8636 -20.32)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -17.78)
(xy 0.8636 -17.78)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -15.24)
(xy 0.8636 -15.24)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -12.7)
(xy 0.8636 -12.7)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -10.16)
(xy 0.8636 -10.16)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -7.62)
(xy 0.8636 -7.62)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 5.08)
(xy 0.8636 5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 7.62)
(xy 0.8636 7.62)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 10.16)
(xy 0.8636 10.16)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 12.7)
(xy 0.8636 12.7)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 15.24)
(xy 0.8636 15.24)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 17.78)
(xy 0.8636 17.78)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 20.32)
(xy 0.8636 20.32)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 22.86)
(xy 0.8636 22.86)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 25.4)
(xy 0.8636 25.4)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 27.94)
(xy 0.8636 27.94)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 30.48)
(xy 0.8636 30.48)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 0.8636 -32.893) (end 0 -33.147)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -30.353) (end 0 -30.607)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -27.813) (end 0 -28.067)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -25.273) (end 0 -25.527)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -22.733) (end 0 -22.987)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -20.193) (end 0 -20.447)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -17.653) (end 0 -17.907)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -15.113) (end 0 -15.367)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -12.573) (end 0 -12.827)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 12.827) (end 0 12.573)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 15.367) (end 0 15.113)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 17.907) (end 0 17.653)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 20.447) (end 0 20.193)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 22.987) (end 0 22.733)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 25.527) (end 0 25.273)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 28.067) (end 0 27.813)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 30.607) (end 0 30.353)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(pin passive line (at 5.08 30.48 180) (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 7.62 180) (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 5.08 180) (length 3.81)
(name "Pin_11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 2.54 180) (length 3.81)
(name "Pin_12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 3.81)
(name "Pin_13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 3.81)
(name "Pin_14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -5.08 180) (length 3.81)
(name "Pin_15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -7.62 180) (length 3.81)
(name "Pin_16" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -10.16 180) (length 3.81)
(name "Pin_17" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -12.7 180) (length 3.81)
(name "Pin_18" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -15.24 180) (length 3.81)
(name "Pin_19" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 27.94 180) (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 -17.78 180) (length 3.81)
(name "Pin_20" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -20.32 180) (length 3.81)
(name "Pin_21" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -22.86 180) (length 3.81)
(name "Pin_22" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -25.4 180) (length 3.81)
(name "Pin_23" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -27.94 180) (length 3.81)
(name "Pin_24" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -30.48 180) (length 3.81)
(name "Pin_25" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -33.02 180) (length 3.81)
(name "Pin_26" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 25.4 180) (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 22.86 180) (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 20.32 180) (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 17.78 180) (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 15.24 180) (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 12.7 180) (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 180) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 0 3.556 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 \"+3.3V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (effects (font (size 1.27 1.27))))
(number "1" (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 151.13 125.73) (diameter 0) (color 0 0 0 0)
(uuid 09968af6-f3c4-405f-b4da-b2a6bd74dd08)
)
(junction (at 151.13 133.35) (diameter 0) (color 0 0 0 0)
(uuid 8ae21146-5dd0-4a77-8fe6-1966512df49f)
)
(wire (pts (xy 91.44 63.5) (xy 76.2 63.5))
(stroke (width 0) (type default))
(uuid 05f2859d-2820-4e84-b395-696011feb13b)
)
(wire (pts (xy 151.13 128.27) (xy 153.67 128.27))
(stroke (width 0) (type default))
(uuid 0aa3cdf5-0491-4bf3-b431-d588ad008770)
)
(wire (pts (xy 151.13 133.35) (xy 153.67 133.35))
(stroke (width 0) (type default))
(uuid 0fb88073-3574-4c84-81ef-15055ed004c1)
)
(wire (pts (xy 153.67 110.49) (xy 138.43 110.49))
(stroke (width 0) (type default))
(uuid 11334ae4-bb43-4464-a3e3-f87f243b3871)
)
(wire (pts (xy 153.67 102.87) (xy 138.43 102.87))
(stroke (width 0) (type default))
(uuid 24b13904-0f66-4a77-9c40-9b490634a8c4)
)
(wire (pts (xy 87.63 71.12) (xy 87.63 123.19))
(stroke (width 0) (type default))
(uuid 269f19c3-6824-45a8-be29-fa58d70cbb42)
)
(wire (pts (xy 91.44 58.42) (xy 76.2 58.42))
(stroke (width 0) (type default))
(uuid 2a1de22d-6451-488d-af77-0bf8841bd695)
)
(wire (pts (xy 153.67 72.39) (xy 138.43 72.39))
(stroke (width 0) (type default))
(uuid 2a6bce48-08de-4bde-90af-6345f31b40bd)
)
(wire (pts (xy 91.44 97.79) (xy 76.2 97.79))
(stroke (width 0) (type default))
(uuid 2c60448a-e30f-46b2-89e1-a44f51688efc)
)
(wire (pts (xy 91.44 87.63) (xy 76.2 87.63))
(stroke (width 0) (type default))
(uuid 2e0a9f64-1b78-4597-8d50-d12d2268a95a)
)
(wire (pts (xy 151.13 130.81) (xy 153.67 130.81))
(stroke (width 0) (type default))
(uuid 2edd4954-b36e-4623-a995-5c0f2e3d55c2)
)
(wire (pts (xy 91.44 71.12) (xy 87.63 71.12))
(stroke (width 0) (type default))
(uuid 38cfe839-c630-43d3-a9ec-6a89ba9e318a)
)
(wire (pts (xy 153.67 123.19) (xy 138.43 123.19))
(stroke (width 0) (type default))
(uuid 424f991d-e5f6-40a5-bb90-39aac19eb67c)
)
(wire (pts (xy 153.67 74.93) (xy 138.43 74.93))
(stroke (width 0) (type default))
(uuid 44811851-8b52-44d3-b882-9276631abd48)
)
(wire (pts (xy 91.44 92.71) (xy 76.2 92.71))
(stroke (width 0) (type default))
(uuid 4b1fce17-dec7-457e-ba3b-a77604e77dc9)
)
(wire (pts (xy 91.44 110.49) (xy 76.2 110.49))
(stroke (width 0) (type default))
(uuid 576f00e6-a1be-45d3-9b93-e26d9e0fe306)
)
(wire (pts (xy 153.67 77.47) (xy 138.43 77.47))
(stroke (width 0) (type default))
(uuid 580afc00-2dc0-45a9-ae4f-09675f4f20d5)
)
(wire (pts (xy 85.09 120.65) (xy 91.44 120.65))
(stroke (width 0) (type default))
(uuid 5889287d-b845-4684-b23e-663811b25d27)
)
(wire (pts (xy 153.67 107.95) (xy 138.43 107.95))
(stroke (width 0) (type default))
(uuid 5c4f84e5-1eb3-4bdf-b582-ede488b563db)
)
(wire (pts (xy 148.59 125.73) (xy 151.13 125.73))
(stroke (width 0) (type default))
(uuid 6415227a-de6f-4adc-ad5a-2e2979b15aca)
)
(wire (pts (xy 91.44 53.34) (xy 76.2 53.34))
(stroke (width 0) (type default))
(uuid 6ac3ab53-7523-4805-bfd2-5de19dff127e)
)
(wire (pts (xy 91.44 113.03) (xy 76.2 113.03))
(stroke (width 0) (type default))
(uuid 713e0777-58b2-4487-baca-60d0ebed27c3)
)
(wire (pts (xy 151.13 133.35) (xy 151.13 135.89))
(stroke (width 0) (type default))
(uuid 72f085e2-1891-4ba6-a294-bd10ba7d4981)
)
(wire (pts (xy 153.67 80.01) (xy 138.43 80.01))
(stroke (width 0) (type default))
(uuid 80cc6f4a-b9b5-4133-b501-dd9f13c87b33)
)
(wire (pts (xy 153.67 90.17) (xy 138.43 90.17))
(stroke (width 0) (type default))
(uuid 832556c3-9bfc-43bb-bc45-30198162323c)
)
(wire (pts (xy 91.44 43.18) (xy 76.2 43.18))
(stroke (width 0) (type default))
(uuid 844d7d7a-b386-45a8-aaf6-bf41bbcb43b5)
)
(wire (pts (xy 153.67 92.71) (xy 138.43 92.71))
(stroke (width 0) (type default))
(uuid 8a3638ec-e68a-4312-ae59-24455d6f315e)
)
(wire (pts (xy 91.44 100.33) (xy 76.2 100.33))
(stroke (width 0) (type default))
(uuid 901440f4-e2a6-4447-83cc-f58a2b26f5c4)
)
(wire (pts (xy 153.67 97.79) (xy 138.43 97.79))
(stroke (width 0) (type default))
(uuid 9517b1f3-9a88-46ab-a4f7-91ba522718f3)
)
(wire (pts (xy 85.09 68.58) (xy 85.09 120.65))
(stroke (width 0) (type default))
(uuid 9aaeec6e-84fe-4644-b0bc-5de24626ff48)
)
(wire (pts (xy 153.67 125.73) (xy 151.13 125.73))
(stroke (width 0) (type default))
(uuid 9b152397-e3eb-4bda-9e2c-4f8c5ebe31b0)
)
(wire (pts (xy 153.67 113.03) (xy 138.43 113.03))
(stroke (width 0) (type default))
(uuid 9d5d427c-27b1-483f-8986-30f3c4046aff)
)
(wire (pts (xy 91.44 48.26) (xy 76.2 48.26))
(stroke (width 0) (type default))
(uuid a07b6b2b-7179-4297-b163-5e47ffbe76d3)
)
(wire (pts (xy 91.44 105.41) (xy 76.2 105.41))
(stroke (width 0) (type default))
(uuid a0dee8e6-f88a-4f05-aba0-bab3aafdf2bc)
)
(wire (pts (xy 153.67 105.41) (xy 138.43 105.41))
(stroke (width 0) (type default))
(uuid a1b7494d-d3f8-4928-b01a-72116d1fde86)
)
(wire (pts (xy 151.13 125.73) (xy 151.13 128.27))
(stroke (width 0) (type default))
(uuid a4445713-1ce8-4362-a9e6-96724645b11b)
)
(wire (pts (xy 91.44 40.64) (xy 76.2 40.64))
(stroke (width 0) (type default))
(uuid a62609cd-29b7-4918-b97d-7b2404ba61cf)
)
(wire (pts (xy 91.44 55.88) (xy 76.2 55.88))
(stroke (width 0) (type default))
(uuid a8219a78-6b33-4efa-a789-6a67ce8f7a50)
)
(wire (pts (xy 153.67 82.55) (xy 138.43 82.55))
(stroke (width 0) (type default))
(uuid a82b5cea-c8dc-415b-ac9a-c79646b27326)
)
(wire (pts (xy 91.44 115.57) (xy 76.2 115.57))
(stroke (width 0) (type default))
(uuid a8fb8ee0-623f-4870-a716-ecc88f37ef9a)
)
(wire (pts (xy 153.67 118.11) (xy 138.43 118.11))
(stroke (width 0) (type default))
(uuid aa295fff-5eec-4265-a0a9-aa5dfded700d)
)
(wire (pts (xy 153.67 120.65) (xy 138.43 120.65))
(stroke (width 0) (type default))
(uuid ac5b941e-aa98-43ce-aa1c-c76c6021124c)
)
(wire (pts (xy 153.67 69.85) (xy 138.43 69.85))
(stroke (width 0) (type default))
(uuid adf5ce9c-aa07-4ebe-8222-aba73673b878)
)
(wire (pts (xy 153.67 115.57) (xy 138.43 115.57))
(stroke (width 0) (type default))
(uuid b2a0ff9f-778f-474f-a903-08cbc344607a)
)
(wire (pts (xy 151.13 130.81) (xy 151.13 133.35))
(stroke (width 0) (type default))
(uuid b64c3113-d8c5-4f52-9fce-b90e516e9ee6)
)
(wire (pts (xy 153.67 95.25) (xy 138.43 95.25))
(stroke (width 0) (type default))
(uuid b71bab91-61df-45c9-8595-4e6d8267daab)
)
(wire (pts (xy 153.67 100.33) (xy 138.43 100.33))
(stroke (width 0) (type default))
(uuid be05211e-e1b1-453e-bf3c-abcc131606e5)
)
(wire (pts (xy 91.44 68.58) (xy 85.09 68.58))
(stroke (width 0) (type default))
(uuid be4b72db-0e02-4d9b-844a-aff689b4e648)
)
(wire (pts (xy 91.44 50.8) (xy 76.2 50.8))
(stroke (width 0) (type default))
(uuid d1a9be32-38ba-44e6-bc35-f031541ab1fe)
)
(wire (pts (xy 91.44 35.56) (xy 76.2 35.56))
(stroke (width 0) (type default))
(uuid d3e133b7-2c84-4206-a2b1-e693cb57fe56)
)
(wire (pts (xy 91.44 95.25) (xy 76.2 95.25))
(stroke (width 0) (type default))
(uuid d66d3c12-11ce-4566-9a45-962e329503d8)
)
(wire (pts (xy 91.44 102.87) (xy 76.2 102.87))
(stroke (width 0) (type default))
(uuid d7e5a060-eb57-4238-9312-26bc885fc97d)
)
(wire (pts (xy 87.63 123.19) (xy 91.44 123.19))
(stroke (width 0) (type default))
(uuid da481376-0e49-44d3-91b8-aaa39b869dd1)
)
(wire (pts (xy 153.67 85.09) (xy 138.43 85.09))
(stroke (width 0) (type default))
(uuid de5f9e50-df02-43fd-a64e-b863819693de)
)
(wire (pts (xy 91.44 45.72) (xy 76.2 45.72))
(stroke (width 0) (type default))
(uuid ebca7c5e-ae52-43e5-ac6c-69a96a9a5b24)
)
(wire (pts (xy 91.44 107.95) (xy 76.2 107.95))
(stroke (width 0) (type default))
(uuid f19c9655-8ddb-411a-96dd-bd986870c3c6)
)
(wire (pts (xy 91.44 60.96) (xy 76.2 60.96))
(stroke (width 0) (type default))
(uuid f3044f68-903d-4063-b253-30d8e3a83eae)
)
(wire (pts (xy 153.67 87.63) (xy 138.43 87.63))
(stroke (width 0) (type default))
(uuid fd43365f-120d-4a3d-bd8e-fe347062740d)
)
(text "A note on the Relays:\nWith SSRs, there is always a compromise between on-state resistance and leakage current.\nThis project is aimed to replace the majority of use cases of a replay card.\n- The K2002 manual states the following requirements for the OHMS range:\n The lead resistance on the 20 Ω range must be < 10 Ω on the LO side.\n- The DMM6500 says \"5 Ω per lead for 1 Ω range\".\n\nThe relays used have a maximum on-state resistance of 2 Ω. Well below that requirement.\nThey are also rated for 700 mA and 200 V.\nThe downside is the leakage current of < 1 µA. The typical value is 40 nA, but there is no guarantee.\n\nThe original 2000-SCAN card is rated for 110V, 1A, < 1 Ω contact resistance and\na maximum contact potential of 1 µV, so this replacement is very close to the original 2000-SCAN card."
(at 146.05 52.07 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 46ea7e7b-c766-43ba-ae44-fb66cd25b71f)
)
(text "STM32G070KBT6: \nmax output sink/source IO current per pin = 15mA.\nmax combined output sink/source IO current = 80mA.\n\nTLP3558A: \nMax trigger current = 3mA, but recommended current = 10mA.\nOn 3.3V, with a 330R current limiter, the TLP3558A will draw 5.4mA max.\n\nHence: About 11mA max per IO pin in the current config. Not a lot of headroom left.\n\nTherefore: If you want to connect a breakout panel, then either:\n\n* do that on a 2000-SCAN board that is not equipped with optos\nor\n* use a breakout panel equipped with line drivers"
(at 167.64 142.24 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 825c818f-3da2-4659-8976-f95d2c9d06d3)
)
(text "Connector to breakout panel" (at 167.64 96.52 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c853c99e-2174-41ca-b4e6-fdd131f6e121)
)
(hierarchical_label "CH15" (shape input) (at 138.43 110.49 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0264fcbf-c713-4f10-8ce0-f97dca7bb383)
)
(hierarchical_label "CH2" (shape input) (at 76.2 43.18 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 03f57fb4-32a3-4bc6-85b9-fd8ece4a9592)
)
(hierarchical_label "CH10" (shape input) (at 76.2 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 07d160b6-23e1-4aa0-95cb-440482e6fc15)
)
(hierarchical_label "CH10" (shape input) (at 138.43 69.85 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 11182072-2c71-48c0-a0a1-32cdddeb3b42)
)
(hierarchical_label "CH5" (shape input) (at 138.43 82.55 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 12b660df-24f3-401e-8f8b-a6aa5240a9a6)
)
(hierarchical_label "Bus2_input_enable" (shape input) (at 138.43 95.25 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 13781564-090f-4a99-93a4-8ab973e28c7f)
)
(hierarchical_label "CH9" (shape input) (at 138.43 72.39 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1cb46585-0450-4e36-af06-6b5d744e4d35)
)
(hierarchical_label "CH9" (shape input) (at 76.2 60.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1e48966e-d29d-4521-8939-ec8ac570431d)
)
(hierarchical_label "CH6" (shape input) (at 76.2 53.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 24b72b0d-63b8-4e06-89d0-e94dcf39a600)
)
(hierarchical_label "CH16" (shape input) (at 76.2 105.41 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 25bc3602-3fb4-4a04-94e3-21ba22562c24)
)
(hierarchical_label "CH13" (shape input) (at 76.2 97.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 283c990c-ae5a-4e41-a3ad-b40ca29fe90e)
)
(hierarchical_label "CH1" (shape input) (at 138.43 92.71 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3387e191-cf8e-4d23-8fc1-56c27df3194f)
)
(hierarchical_label "CH18" (shape input) (at 138.43 118.11 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3ac89ab2-9220-4f13-a839-fed2959588c1)
)
(hierarchical_label "CH14" (shape input) (at 138.43 107.95 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 427f9be9-dd3d-4576-8ca2-8e99348c9463)
)
(hierarchical_label "CH5" (shape input) (at 76.2 50.8 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4431c0f6-83ea-4eee-95a8-991da2f03ccd)
)
(hierarchical_label "CH12" (shape input) (at 76.2 95.25 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 49575217-40b0-4890-8acf-12982cca52b5)
)
(hierarchical_label "CH18" (shape input) (at 76.2 110.49 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4a54c707-7b6f-4a3d-a74d-5e3526114aba)
)
(hierarchical_label "CH17" (shape input) (at 76.2 107.95 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4aa97874-2fd2-414c-b381-9420384c2fd8)
)
(hierarchical_label "CH11" (shape input) (at 76.2 92.71 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4cafb73d-1ad8-4d24-acf7-63d78095ae46)
)
(hierarchical_label "Bus2_sense_enable" (shape input) (at 76.2 87.63 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 582622a2-fad4-4737-9a80-be9fffbba8ab)
)
(hierarchical_label "CH8" (shape input) (at 138.43 74.93 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 61e7cf22-ced8-4c52-9622-c86012a233d8)
)
(hierarchical_label "CH11" (shape input) (at 138.43 100.33 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6978f17c-0950-46e1-b803-2d69f51cd3ee)
)
(hierarchical_label "CH20" (shape input) (at 138.43 123.19 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6dc28a8f-a045-4baa-bd74-258d9a46c483)
)
(hierarchical_label "Bus2_sense_enable" (shape input) (at 138.43 97.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 736611a0-aeac-4e1a-85b4-029b20e99b88)
)
(hierarchical_label "CH15" (shape input) (at 76.2 102.87 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7760a75a-d74b-4185-b34e-cbc7b2c339b6)
)
(hierarchical_label "CH4" (shape input) (at 138.43 85.09 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7ea85c59-bdee-47f9-ab45-ba9785497269)
)
(hierarchical_label "CH20" (shape input) (at 76.2 115.57 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 869d6302-ae22-478f-9723-3feacbb12eef)
)
(hierarchical_label "CH2" (shape input) (at 138.43 90.17 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8759b8a5-d45c-4a8f-821d-8cc7f7bcb3fe)
)
(hierarchical_label "CH17" (shape input) (at 138.43 115.57 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8f5482aa-8cc6-4ae6-866c-16f1261272da)
)
(hierarchical_label "CH4" (shape input) (at 76.2 48.26 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 90e761f6-1432-4f73-ad28-fa8869b7ec31)
)
(hierarchical_label "CH6" (shape input) (at 138.43 80.01 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9157e6c0-dfda-4ce7-aaca-91e6184954cc)
)
(hierarchical_label "CH7" (shape input) (at 138.43 77.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9874ce69-5ac0-4ffb-920b-975661dc03fe)
)
(hierarchical_label "CH7" (shape input) (at 76.2 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a6738794-75ae-48a6-8949-ed8717400d71)
)
(hierarchical_label "CH13" (shape input) (at 138.43 105.41 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b7808814-1cd8-4827-82c7-a56a4e4df7cc)
)
(hierarchical_label "CH3" (shape input) (at 76.2 45.72 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2)
)
(hierarchical_label "CH14" (shape input) (at 76.2 100.33 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09)
)
(hierarchical_label "CH12" (shape input) (at 138.43 102.87 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c9ab0936-9098-4f4f-82d7-a39ad65f1414)
)
(hierarchical_label "CH3" (shape input) (at 138.43 87.63 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cb7aba2e-811f-455d-8268-05eb3b3fc6a7)
)
(hierarchical_label "CH8" (shape input) (at 76.2 58.42 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d692b5e6-71b2-4fa6-bc83-618add8d8fef)
)
(hierarchical_label "CH19" (shape input) (at 76.2 113.03 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e1b88aa4-d887-4eea-83ff-5c009f4390c4)
)
(hierarchical_label "CH19" (shape input) (at 138.43 120.65 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ec4ae452-845b-472d-bb2b-4aa8e2ff6351)
)
(hierarchical_label "CH16" (shape input) (at 138.43 113.03 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f2f2a108-911c-40af-97fb-9b193a335cb2)
)
(hierarchical_label "Bus2_input_enable" (shape input) (at 76.2 35.56 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f988d6ea-11c5-4837-b1d1-5c292ded50c6)
)
(hierarchical_label "CH1" (shape input) (at 76.2 40.64 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f9b1563b-384a-447c-9f47-736504e995c8)
)
(symbol (lib_id "Connector:Conn_01x26_Pin") (at 158.75 100.33 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 80b6c0c6-cdf7-4d15-ba16-6689fbadba2e)
(property "Reference" "J10" (at 159.4612 100.9563 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "Conn_01x26_Pin" (at 159.4612 102.8773 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Connector_IDC:IDC-Header_2x13_P2.54mm_Latch_Horizontal" (at 158.75 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.we-online.com/components/products/datasheet/6120xx22121.pdf" (at 158.75 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)