-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
BioAmp-EXG-Pill.kicad_sch
3453 lines (3383 loc) · 196 KB
/
BioAmp-EXG-Pill.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 20211123) (generator eeschema)
(uuid 6820f13c-3971-4615-b87b-c2f927031906)
(paper "A4")
(title_block
(title "BioAmp EXG Pill")
(date "2023-04-27")
(rev "1.0")
(company "Upside Down Labs")
(comment 1 "Records EMG, ECG, EOG, and EEG")
(comment 2 "5v compatible EXG hardware")
(comment 3 "Signle chip biopotential amplifier")
(comment 4 "Quad-OpAmp based BioAmp")
)
(lib_symbols
(symbol "Amplifier_Operational:TL074" (pin_names (offset 0.127)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TL074" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at -1.27 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/tl071.pdf" (id 3) (at 1.27 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "quad opamp" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Quad Low-Noise JFET-Input Operational Amplifiers, DIP-14/SOIC-14" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm* DIP*W7.62mm* TSSOP*4.4x5mm*P0.65mm* SSOP*5.3x6.2mm*P0.65mm* MSOP*3x3mm*P0.5mm*" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TL074_1_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input 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 input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
(symbol "TL074_2_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "TL074_3_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "TL074_4_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
)
(symbol "TL074_5_1"
(pin power_in line (at -2.54 -7.62 90) (length 3.81)
(name "V-" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 7.62 270) (length 3.81)
(name "V+" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "BioAmp-EXG-Pill-rescue:LOGO_UDLABS-udlabs" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LOGO_UDLABS-udlabs" (id 1) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LOGO_UDLABS-udlabs_0_0"
(rectangle (start -11.43 4.572) (end 12.7 1.524)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(text "Upside Down Labs LOGO" (at 0.508 3.048 0)
(effects (font (size 1.27 1.27)))
)
)
)
(symbol "BioAmp-EXG-Pill-rescue:SolderJumper_3_Open-Jumper" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at -2.54 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_3_Open-Jumper" (id 1) (at 0 2.794 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Open*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_3_Open-Jumper_0_1"
(arc (start -1.016 1.016) (mid -2.032 0) (end -1.016 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -1.016 1.016) (mid -2.032 0) (end -1.016 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -0.508 1.016) (end 0.508 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -2.54 0)
(xy -2.032 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.016)
(xy -1.016 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.27)
(xy 0 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 1.016)
(xy 1.016 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 2.032 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 1.016 -1.016) (mid 2.032 0) (end 1.016 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 1.016 -1.016) (mid 2.032 0) (end 1.016 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_3_Open-Jumper_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -3.81 90) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x03" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x03_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 3.81) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 2.54 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 0 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 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(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 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (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" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (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) (color 0 0 0 0))
(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 "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_2_Open" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "solder jumper SPST" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Solder Jumper, 2-pole, open" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Open*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_2_Open_0_1"
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -0.254 1.016)
(xy -0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.016)
(xy 0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_2_Open_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (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" (id 5) (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) (color 0 0 0 0))
(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))))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 81.534 164.592) (diameter 0) (color 0 0 0 0)
(uuid 05f04871-dc80-4f34-b0c6-f24c6971b12e)
)
(junction (at 72.136 99.314) (diameter 0) (color 0 0 0 0)
(uuid 08222fc9-1799-4382-a2d7-8da44c37c286)
)
(junction (at 72.39 47.498) (diameter 0) (color 0 0 0 0)
(uuid 0cbc88cc-0ed1-4fa2-b270-3e9dff717e16)
)
(junction (at 54.61 111.252) (diameter 0) (color 0 0 0 0)
(uuid 118adca1-8617-4176-8ed2-1e27788174f3)
)
(junction (at 81.534 172.212) (diameter 0) (color 0 0 0 0)
(uuid 2df14f06-59c8-415a-9621-495dd0c79422)
)
(junction (at 245.618 97.536) (diameter 0) (color 0 0 0 0)
(uuid 32dbce39-2199-489c-889e-a1b469e98807)
)
(junction (at 72.136 113.792) (diameter 0) (color 0 0 0 0)
(uuid 35a32859-f9d6-42db-9182-5c59b26a0e8d)
)
(junction (at 54.61 99.314) (diameter 0) (color 0 0 0 0)
(uuid 434bc1ec-99a1-4a1b-af7a-1858d21dec59)
)
(junction (at 245.618 105.156) (diameter 0) (color 0 0 0 0)
(uuid 457161e8-a5b1-40d0-975e-1e53a7732350)
)
(junction (at 144.018 100.584) (diameter 0) (color 0 0 0 0)
(uuid 5f812d59-0f9a-41db-a345-297dc6ff5ffe)
)
(junction (at 103.124 154.686) (diameter 0) (color 0 0 0 0)
(uuid 726823c2-0f76-46b1-b3bc-8d7034401a71)
)
(junction (at 103.124 162.052) (diameter 0) (color 0 0 0 0)
(uuid 7b77cd69-be9e-436c-99c6-67a4fb03e10b)
)
(junction (at 83.82 38.354) (diameter 0) (color 0 0 0 0)
(uuid 82c75f61-f5f8-4856-b9a2-1fb2f6a5cb42)
)
(junction (at 72.136 105.664) (diameter 0) (color 0 0 0 0)
(uuid 83aa6d59-2553-4c2e-9f48-36235b7b4858)
)
(junction (at 95.25 50.038) (diameter 0) (color 0 0 0 0)
(uuid a460135f-ea7a-4ad8-9640-23b3c62abc5b)
)
(junction (at 57.15 38.608) (diameter 0) (color 0 0 0 0)
(uuid a93dc648-f4fc-460e-8dce-5e98d962eee6)
)
(junction (at 57.15 44.958) (diameter 0) (color 0 0 0 0)
(uuid b125bb5c-e48b-429d-8783-90561c73edf0)
)
(junction (at 80.01 47.498) (diameter 0) (color 0 0 0 0)
(uuid b90872d4-d630-410c-8132-7f641bb131f8)
)
(junction (at 54.61 105.664) (diameter 0) (color 0 0 0 0)
(uuid db7002f3-e6e9-45ba-88cd-cb73ae6581df)
)
(junction (at 136.398 100.584) (diameter 0) (color 0 0 0 0)
(uuid f0a39b9b-52c9-4086-9c92-21cc4d1af691)
)
(polyline (pts (xy 177.038 166.116) (xy 177.038 24.892))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00de5d3b-5a85-4b56-b380-3528a968adf0)
)
(wire (pts (xy 95.25 50.038) (xy 97.282 50.038))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04c33d59-c6fe-4339-af1d-4ea11e704707)
)
(wire (pts (xy 67.31 90.17) (xy 72.136 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bf10d66-fb52-429f-ba58-6ae20d91b17c)
)
(wire (pts (xy 223.266 144.526) (xy 223.266 141.986))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e7c8531-da68-4d34-b8a7-8465f375d41d)
)
(wire (pts (xy 72.39 38.608) (xy 72.39 47.498))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1160a115-0f5c-435e-97d0-8aebaab05ae3)
)
(wire (pts (xy 91.44 38.354) (xy 95.25 38.354))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 146e771d-54fc-4ba1-af61-dbca32e2750f)
)
(wire (pts (xy 245.618 97.536) (xy 241.046 97.536))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 190fe05e-f3a8-4d28-adf1-9f67d9795ae1)
)
(polyline (pts (xy 69.596 98.552) (xy 74.93 98.552))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b38bea5-f238-4741-8991-701c1bcb591d)
)
(wire (pts (xy 250.444 97.536) (xy 245.618 97.536))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1fdd4dbb-88db-4693-8e47-90a2f38bee9e)
)
(wire (pts (xy 69.85 38.608) (xy 72.39 38.608))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21abbd12-2cad-4585-bf7f-d68020e6fca0)
)
(wire (pts (xy 54.61 90.17) (xy 54.61 99.314))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 241341e2-9d09-49a4-a8f8-7d75e9d16992)
)
(polyline (pts (xy 69.596 88.646) (xy 69.596 98.552))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2416a881-a7d5-4002-a29f-6015bf7e08ca)
)
(wire (pts (xy 236.728 31.623) (xy 243.078 31.623))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2523b0d3-d74a-45be-82aa-628bbc054f43)
)
(wire (pts (xy 72.136 113.792) (xy 75.184 113.792))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2dfa8c4b-2e5f-49a1-b383-4f3abfab2594)
)
(wire (pts (xy 144.018 100.584) (xy 144.018 103.886))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f64e3fe-c9e8-4333-ba39-ec1e86824639)
)
(wire (pts (xy 67.056 27.178) (xy 57.15 27.178))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f67e596-fe9f-43ff-9b5e-41187bd8c1a5)
)
(polyline (pts (xy 87.376 21.336) (xy 53.086 21.336))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31b4a6f5-9522-4b3f-b169-0609ecc486be)
)
(wire (pts (xy 136.398 100.584) (xy 136.398 103.886))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32c64515-58a0-4bd0-82f1-12fed46e4b02)
)
(wire (pts (xy 103.124 154.686) (xy 85.09 154.686))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3df0b203-35be-454e-8b69-13c983d68319)
)
(wire (pts (xy 85.09 159.512) (xy 87.884 159.512))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4238bc2f-55a8-42d0-99b6-08fa4b9dbc61)
)
(wire (pts (xy 144.018 97.028) (xy 144.018 100.584))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b0c5d80-f937-4e09-8fb9-03011036dacc)
)
(polyline (pts (xy 162.56 11.938) (xy 162.56 24.892))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4de0917c-c234-4d35-a346-76ebf8065d53)
)
(polyline (pts (xy 120.65 109.728) (xy 159.258 109.728))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e0c32c6-82a3-4a4d-a21f-a99db2d041b4)
)
(wire (pts (xy 62.23 38.608) (xy 57.15 38.608))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53376ddd-d468-49b3-885b-54c6f1326368)
)
(wire (pts (xy 212.09 147.066) (xy 223.52 147.066))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54624b30-4cd0-4edb-9fb1-970a9673a1f6)
)
(wire (pts (xy 76.454 164.592) (xy 81.534 164.592))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54b32421-f294-46c1-9cab-86c9aa1ad626)
)
(wire (pts (xy 72.136 98.044) (xy 72.136 99.314))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 562e290b-e14f-40c7-815b-d2538eaf0d22)
)
(wire (pts (xy 223.52 147.066) (xy 223.52 151.384))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56d166c4-bcaa-45ac-91f5-9d24d3cb987f)
)
(polyline (pts (xy 148.082 33.274) (xy 124.46 33.274))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e500c19-294b-4336-891e-225c5d38a15b)
)
(wire (pts (xy 54.61 111.252) (xy 56.134 111.252))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ea29b01-0622-48c0-9f5b-c5cca248283a)
)
(wire (pts (xy 54.61 99.314) (xy 54.61 105.664))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 600af209-3c9b-48b5-a2ed-5d3a2952413b)
)
(wire (pts (xy 59.182 105.664) (xy 54.61 105.664))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6213253c-87b6-4fda-a8a4-3cbf888aa495)
)
(polyline (pts (xy 74.93 88.646) (xy 69.596 88.646))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 682e47e9-13fb-4cf8-8064-940eeb86bb96)
)
(wire (pts (xy 67.31 99.314) (xy 72.136 99.314))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6cbd2abf-38a8-4e1f-be95-6b2f3695acc9)
)
(wire (pts (xy 133.35 100.584) (xy 136.398 100.584))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e3f1319-82e8-4e63-abc1-cbc1cec54039)
)
(wire (pts (xy 136.398 97.028) (xy 136.398 100.584))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 733f87c7-ed01-4e04-9fdc-bc3d6df5f44f)
)
(polyline (pts (xy 162.56 24.892) (xy 191.516 24.892))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75f61cc7-9531-4b91-a007-bda36848aa0d)
)
(polyline (pts (xy 220.853 38.608) (xy 242.443 38.608))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7625094b-f970-4ac7-bbf0-04979b3beca2)
)
(wire (pts (xy 110.236 154.686) (xy 103.124 154.686))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 775a5baf-b67f-416b-8b08-77677bc3c05d)
)
(wire (pts (xy 72.136 113.792) (xy 71.374 113.792))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77ed95e1-f891-4e04-9f42-20b68bea1e98)
)
(wire (pts (xy 59.69 99.314) (xy 54.61 99.314))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a79cddd-c324-45a7-bc62-9aceb93eae3d)
)
(polyline (pts (xy 148.082 48.26) (xy 148.082 33.274))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7aed5107-8e75-466d-971f-4c396660d43a)
)
(wire (pts (xy 105.664 162.052) (xy 103.124 162.052))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b32383e-9e4d-4b2a-8a3d-9eb8dbbc0ff1)
)
(polyline (pts (xy 11.938 133.35) (xy 284.988 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e0cf0ec-abca-4604-8e42-a5590c6c8d0a)
)
(polyline (pts (xy 191.516 24.892) (xy 191.516 12.192))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 827525bb-55ce-49f6-b969-3dda83ac3cb9)
)
(wire (pts (xy 80.01 38.354) (xy 83.82 38.354))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82a54934-c6dc-48e7-bf75-32ebc7cdce08)
)
(polyline (pts (xy 87.376 33.274) (xy 87.376 21.336))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8433bb01-fdd3-44bc-ba85-21b0a7b786ca)
)
(wire (pts (xy 72.136 99.314) (xy 72.136 105.664))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 85dfa4d0-a7ff-4322-bc28-757ba96eee09)
)
(wire (pts (xy 72.136 90.17) (xy 72.136 90.424))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8883de76-95b7-4ec8-acb9-8716d4dbe37e)
)
(wire (pts (xy 57.15 38.608) (xy 57.15 44.958))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a66ab49-9807-4f9b-b36d-d437b26ce10e)
)
(polyline (pts (xy 124.46 48.26) (xy 148.082 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c66bd0b-4750-4525-9c39-b3de988f9516)
)
(wire (pts (xy 87.884 164.592) (xy 81.534 164.592))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d8970ff-f013-4d2f-b78b-a47cdefe8b5f)
)
(wire (pts (xy 85.09 154.686) (xy 85.09 159.512))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93801184-738f-4dc7-8a8d-713601e6c985)
)
(wire (pts (xy 72.136 105.664) (xy 72.136 113.792))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9430f710-0309-4b4e-8467-66fd01bb8444)
)
(wire (pts (xy 146.558 100.584) (xy 144.018 100.584))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96aab242-7d1c-4b71-864d-e1cc35057bfe)
)
(polyline (pts (xy 53.086 21.336) (xy 53.086 33.274))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96b41184-7d6b-40f7-a6c0-bb1b61e7a487)
)
(polyline (pts (xy 120.65 89.662) (xy 120.65 109.728))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99a38d39-8e22-4630-8036-1a439fc0cac0)
)
(wire (pts (xy 52.324 99.314) (xy 54.61 99.314))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a19a9b43-1b39-449a-a659-9c37c656100e)
)
(polyline (pts (xy 159.258 89.662) (xy 120.65 89.662))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a2567056-43be-4215-9dc6-a99d59b75c32)
)
(wire (pts (xy 212.09 144.526) (xy 223.266 144.526))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a43e83a1-2469-49c0-a513-9b90c12c2cfd)
)
(wire (pts (xy 250.698 31.623) (xy 251.968 31.623))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac69564f-e1c9-4162-bfbb-ceb90a1ccae2)
)
(wire (pts (xy 220.218 31.623) (xy 226.568 31.623))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid acec5d91-19da-4df0-8253-a2abdba66cea)
)
(wire (pts (xy 231.648 35.433) (xy 231.648 41.783))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid adba542e-a274-42f0-87c5-8dc57543f02f)
)
(wire (pts (xy 56.134 116.332) (xy 55.626 116.332))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid adc13876-0feb-4e8d-8a1b-214a1ef3446f)
)
(wire (pts (xy 53.34 111.252) (xy 54.61 111.252))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af60e014-a718-4131-bd16-ed2f45723f1c)
)
(wire (pts (xy 57.15 27.178) (xy 57.15 38.608))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b0ab69e0-22e6-4b78-9574-a91d6e6586b1)
)
(wire (pts (xy 81.534 156.972) (xy 81.534 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b327d78d-08a8-4dcd-b3db-79065a00d048)
)
(polyline (pts (xy 242.443 24.003) (xy 220.853 24.003))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcbab5ec-09c6-4b93-b9fd-4925f7eab396)
)
(wire (pts (xy 241.046 105.156) (xy 245.618 105.156))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd1bb2d9-56c6-4455-bb83-45e8645f04ac)
)
(wire (pts (xy 80.01 38.354) (xy 80.01 47.498))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bdfe726a-f605-43b3-ae36-686bf60ea256)
)
(wire (pts (xy 76.454 172.212) (xy 81.534 172.212))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c4ca9640-8726-473b-a7d3-eaaec3a366f1)
)
(polyline (pts (xy 11.938 71.374) (xy 284.988 71.374))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c51601bd-6e2f-4b68-a0b6-6ff6dd1ae72b)
)
(wire (pts (xy 95.25 38.354) (xy 95.25 50.038))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c92bccaf-5d2f-498f-b5c7-c8732ba0b757)
)
(polyline (pts (xy 159.258 109.728) (xy 159.258 89.662))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9407120-9678-48f2-8ad9-d8d2737e54bf)
)
(polyline (pts (xy 53.086 33.274) (xy 87.376 33.274))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ceb928f1-5d7b-464f-b099-99e7fed273bc)
)
(wire (pts (xy 80.01 52.578) (xy 79.502 52.578))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid db5b55bf-66c3-4463-972e-bb58ffe91fb3)
)
(wire (pts (xy 245.618 105.156) (xy 250.444 105.156))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dc08ae81-8298-4d5f-9cbd-64db1a460b61)
)
(wire (pts (xy 103.124 162.052) (xy 103.124 154.686))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dccd9f8d-5c21-4eb1-9597-007b928177be)
)
(polyline (pts (xy 220.853 24.003) (xy 220.853 38.608))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid df823021-b330-43ae-ac9d-b193c1b542e8)
)
(wire (pts (xy 66.802 105.664) (xy 72.136 105.664))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e18c8419-af00-4c91-8980-3b6324ccb636)
)
(wire (pts (xy 211.328 31.623) (xy 212.598 31.623))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e373b26c-8a32-425d-86f5-fa040785e11b)
)
(wire (pts (xy 81.534 173.228) (xy 81.534 172.212))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e526f3bf-e7d7-4d3b-ad4b-bfc8f139069a)
)
(polyline (pts (xy 242.443 38.608) (xy 242.443 24.003))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ebe67a90-13e9-403c-b5f2-86a09bbea8f1)
)
(wire (pts (xy 54.61 105.664) (xy 54.61 111.252))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ebed2f20-bb30-4377-b7b0-6219a4b79310)
)
(wire (pts (xy 56.642 50.038) (xy 57.15 50.038))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec014baf-6f60-4d47-871f-4fa386df5172)
)
(wire (pts (xy 74.676 27.178) (xy 83.82 27.178))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid efe6f742-5781-4d10-a5d2-a2cd6e160ca4)
)
(polyline (pts (xy 124.46 33.274) (xy 124.46 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f668eaf1-4613-4cd1-a386-0f7cd4c3b829)
)
(polyline (pts (xy 74.93 98.552) (xy 74.93 88.646))
(stroke (width 0) (type default) (color 0 0 0 0))