-
Notifications
You must be signed in to change notification settings - Fork 0
/
ESPBreakoutBoard-Min-Cutout.kicad_sch
1533 lines (1507 loc) · 59.6 KB
/
ESPBreakoutBoard-Min-Cutout.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 ce83728b-bebd-48c2-8734-b6a50d837931)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x09_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x09_Male" (id 1) (at 0 -12.7 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, 01x09, 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_01x09_Male_1_1"
(polyline
(pts
(xy 1.27 -10.16)
(xy 0.8636 -10.16)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -7.62)
(xy 0.8636 -7.62)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 5.08)
(xy 0.8636 5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 7.62)
(xy 0.8636 7.62)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 10.16)
(xy 0.8636 10.16)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.8636 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin passive line (at 5.08 10.16 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_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 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 2.54 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 0 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 -2.54 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 -5.08 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 -7.62 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 "Connector:Screw_Terminal_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Screw_Terminal_01x02" (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" "screw terminal" (id 4) (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/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TerminalBlock*:*" (id 6) (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) (color 0 0 0 0))
(fill (type background))
)
(circle (center 0 -2.54) (radius 0.635)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 -2.2098)
(xy 0.3302 -3.048)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 0.3302)
(xy 0.3302 -0.508)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 -2.032)
(xy 0.508 -2.8702)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 0.508)
(xy 0.508 -0.3302)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 0 0) (radius 0.635)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(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 "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 "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (id 1) (at 0 3.175 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" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_0_1"
(circle (center 0 0) (radius 1.27)
(stroke (width 1.27) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "RF_Module:ESP-12F" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -12.7 19.05 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "ESP-12F" (id 1) (at 12.7 19.05 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "RF_Module:ESP-12E" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://wiki.ai-thinker.com/_media/esp8266/esp8266_series_modules_user_manual_v1.1.pdf" (id 3) (at -8.89 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "802.11 Wi-Fi" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "802.11 b/g/n Wi-Fi Module" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "ESP?12*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ESP-12F_0_1"
(rectangle (start -12.7 17.78) (end 12.7 -15.24)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "ESP-12F_1_1"
(pin input line (at -15.24 15.24 0) (length 2.54)
(name "~{RST}" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 -2.54 0) (length 2.54)
(name "MISO" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 -5.08 0) (length 2.54)
(name "GPIO9" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 -7.62 0) (length 2.54)
(name "GPIO10" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 -10.16 0) (length 2.54)
(name "MOSI" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 -12.7 0) (length 2.54)
(name "SCLK" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -17.78 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -7.62 180) (length 2.54)
(name "GPIO15" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 10.16 180) (length 2.54)
(name "GPIO2" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 15.24 180) (length 2.54)
(name "GPIO0" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 5.08 180) (length 2.54)
(name "GPIO4" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 5.08 0) (length 2.54)
(name "ADC" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 2.54 180) (length 2.54)
(name "GPIO5" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 7.62 180) (length 2.54)
(name "GPIO3/RXD" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 12.7 180) (length 2.54)
(name "GPIO1/TXD" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 10.16 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -10.16 180) (length 2.54)
(name "GPIO16" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -5.08 180) (length 2.54)
(name "GPIO14" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 0 180) (length 2.54)
(name "GPIO12" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -2.54 180) (length 2.54)
(name "GPIO13" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 20.32 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 0 0) (length 2.54)
(name "CS0" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Regulator_Linear:AMS1117-3.3" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -3.81 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AMS1117-3.3" (id 1) (at 0 3.175 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 2.54 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?223*TabPin2*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AMS1117-3.3_0_1"
(rectangle (start -5.08 -5.08) (end 5.08 1.905)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "AMS1117-3.3_1_1"
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 7.62 0 180) (length 2.54)
(name "VO" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -7.62 0 0) (length 2.54)
(name "VI" (effects (font (size 1.27 1.27))))
(number "3" (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" "power-flag" (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:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 175.26 101.6) (diameter 0) (color 0 0 0 0)
(uuid 0351df45-d042-41d4-ba35-88092c7be2fc)
)
(junction (at 182.88 64.77) (diameter 0) (color 0 0 0 0)
(uuid 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d)
)
(junction (at 175.26 111.76) (diameter 0) (color 0 0 0 0)
(uuid 1e8701fc-ad24-40ea-846a-e3db538d6077)
)
(junction (at 153.67 111.76) (diameter 0) (color 0 0 0 0)
(uuid 24f7628d-681d-4f0e-8409-40a129e929d9)
)
(junction (at 138.43 72.39) (diameter 0) (color 0 0 0 0)
(uuid 4974bf8d-8960-4dcc-8f76-9c35ccaee1f7)
)
(junction (at 124.968 83.82) (diameter 0) (color 0 0 0 0)
(uuid 4fb21471-41be-4be8-9687-66030f97befc)
)
(junction (at 100.838 99.06) (diameter 0) (color 0 0 0 0)
(uuid 61fe293f-6808-4b7f-9340-9aaac7054a97)
)
(junction (at 80.518 99.06) (diameter 0) (color 0 0 0 0)
(uuid 644ae9fc-3c8e-4089-866e-a12bf371c3e9)
)
(junction (at 114.808 83.82) (diameter 0) (color 0 0 0 0)
(uuid 6475547d-3216-45a4-a15c-48314f1dd0f9)
)
(junction (at 114.808 73.66) (diameter 0) (color 0 0 0 0)
(uuid 789ca812-3e0c-4a3f-97bc-a916dd9bce80)
)
(junction (at 84.328 91.44) (diameter 0) (color 0 0 0 0)
(uuid 994b6220-4755-4d84-91b3-6122ac1c2c5e)
)
(junction (at 86.868 99.06) (diameter 0) (color 0 0 0 0)
(uuid 9e1b837f-0d34-4a18-9644-9ee68f141f46)
)
(junction (at 127.508 88.9) (diameter 0) (color 0 0 0 0)
(uuid a704fb81-b819-4ee8-9bc6-c061806b8a17)
)
(junction (at 110.998 91.44) (diameter 0) (color 0 0 0 0)
(uuid c8c79177-94d4-43e2-a654-f0a5554fbb68)
)
(junction (at 84.328 99.06) (diameter 0) (color 0 0 0 0)
(uuid d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc)
)
(junction (at 110.998 99.06) (diameter 0) (color 0 0 0 0)
(uuid d3c11c8f-a73d-4211-934b-a6da255728ad)
)
(junction (at 170.18 72.39) (diameter 0) (color 0 0 0 0)
(uuid dde51ae5-b215-445e-92bb-4a12ec410531)
)
(junction (at 127.508 111.76) (diameter 0) (color 0 0 0 0)
(uuid ecf6efee-159a-4241-9070-7385e7f1074b)
)
(junction (at 86.868 91.44) (diameter 0) (color 0 0 0 0)
(uuid ee27d19c-8dca-4ac8-a760-6dfd54d28071)
)
(junction (at 127.508 64.77) (diameter 0) (color 0 0 0 0)
(uuid f4f918e8-ea06-4291-9193-7c40c2d5a7aa)
)
(no_connect (at 138.43 106.68) (uuid 88fd35c2-cd34-4db6-8b08-40e5bd1d5f1b))
(no_connect (at 138.43 96.52) (uuid 88fd35c2-cd34-4db6-8b08-40e5bd1d5f1c))
(no_connect (at 138.43 104.14) (uuid 88fd35c2-cd34-4db6-8b08-40e5bd1d5f1d))
(no_connect (at 138.43 93.98) (uuid 88fd35c2-cd34-4db6-8b08-40e5bd1d5f1e))
(wire (pts (xy 93.218 91.44) (xy 86.868 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 003c2200-0632-4808-a662-8ddd5d30c768)
)
(wire (pts (xy 172.72 93.98) (xy 168.91 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01e9b6e7-adf9-4ee7-9447-a588630ee4a2)
)
(wire (pts (xy 127.508 111.76) (xy 153.67 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0217dfc4-fc13-4699-99ad-d9948522648e)
)
(wire (pts (xy 135.89 50.8) (xy 148.59 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0755aee5-bc01-4cb5-b830-583289df50a3)
)
(wire (pts (xy 146.05 46.99) (xy 146.05 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1534da37-82b6-4382-91e8-536d72e602e6)
)
(wire (pts (xy 114.808 73.66) (xy 114.808 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16a9ae8c-3ad2-439b-8efe-377c994670c7)
)
(wire (pts (xy 149.86 49.53) (xy 149.86 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d)
)
(wire (pts (xy 175.26 58.42) (xy 173.99 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 182b2d54-931d-49d6-9f39-60a752623e36)
)
(wire (pts (xy 168.91 78.74) (xy 168.91 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19c56563-5fe3-442a-885b-418dbc2421eb)
)
(wire (pts (xy 166.37 46.99) (xy 166.37 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d343b45-75a8-483d-b0f1-30e9feee0358)
)
(wire (pts (xy 175.26 109.22) (xy 175.26 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d9cdadc-9036-4a95-b6db-fa7b3b74c869)
)
(wire (pts (xy 80.518 91.44) (xy 80.518 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3)
)
(wire (pts (xy 124.968 83.82) (xy 138.43 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1fd9e57f-114e-48cb-b1da-0ea58b9282d4)
)
(wire (pts (xy 168.91 57.15) (xy 166.37 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21ae9c3a-7138-444e-be38-56a4842ab594)
)
(wire (pts (xy 80.518 91.44) (xy 84.328 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 240e07e1-770b-4b27-894f-29fd601c924d)
)
(wire (pts (xy 182.88 111.76) (xy 175.26 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25d545dc-8f50-4573-922c-35ef5a2a3a19)
)
(wire (pts (xy 138.43 46.99) (xy 138.43 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28b8622b-ecee-4aa1-b79c-f1f59f17f42b)
)
(wire (pts (xy 168.91 91.44) (xy 177.8 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8)
)
(wire (pts (xy 80.518 99.06) (xy 80.518 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34a74736-156e-4bf3-9200-cd137cfa59da)
)
(wire (pts (xy 175.26 101.6) (xy 181.61 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37e8181c-a81e-498b-b2e2-0aef0c391059)
)
(wire (pts (xy 176.53 46.99) (xy 176.53 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a2081a0-59ff-467e-96f9-9a87c67db7ec)
)
(wire (pts (xy 175.26 111.76) (xy 153.67 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a7648d8-121a-4921-9b92-9b35b76ce39b)
)
(wire (pts (xy 153.67 73.66) (xy 114.808 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e903008-0276-4a73-8edb-5d9dfde6297c)
)
(wire (pts (xy 127.508 88.9) (xy 127.508 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40165eda-4ba6-4565-9bb4-b9df6dbb08da)
)
(wire (pts (xy 127.508 64.77) (xy 138.43 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42d4bd65-e2de-4056-b26c-447a0b74d065)
)
(wire (pts (xy 135.89 46.99) (xy 135.89 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 487ede8b-a387-4dec-b688-6f27ab119dfb)
)
(wire (pts (xy 148.59 50.8) (xy 148.59 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec)
)
(wire (pts (xy 172.72 60.96) (xy 172.72 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec)
)
(wire (pts (xy 143.51 46.99) (xy 143.51 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51c7a1ca-04e2-4ca3-a2d3-c81f9c56c8f7)
)
(wire (pts (xy 158.75 46.99) (xy 158.75 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56e99e98-234e-4b92-b81a-69e87f8d6327)
)
(wire (pts (xy 171.45 62.23) (xy 171.45 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 60dcd1fe-7079-4cb8-b509-04558ccf5097)
)
(wire (pts (xy 110.998 99.06) (xy 100.838 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 639c0e59-e95c-4114-bccd-2e7277505454)
)
(wire (pts (xy 114.808 91.44) (xy 110.998 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63ff1c93-3f96-4c33-b498-5dd8c33bccc0)
)
(wire (pts (xy 151.13 59.69) (xy 173.99 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6595b9c7-02ee-4647-bde5-6b566e35163e)
)
(wire (pts (xy 181.61 101.6) (xy 181.61 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 676efd2f-1c48-4786-9e4b-2444f1e8f6ff)
)
(wire (pts (xy 84.328 91.44) (xy 86.868 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67763d19-f622-4e1e-81e5-5b24da7c3f99)
)
(wire (pts (xy 116.078 64.77) (xy 116.078 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68877d35-b796-44db-9124-b8e744e7412e)
)
(wire (pts (xy 168.91 101.6) (xy 175.26 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6bfe5804-2ef9-4c65-b2a7-f01e4014370a)
)
(wire (pts (xy 177.8 91.44) (xy 177.8 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c2d26bc-6eca-436c-8025-79f817bf57d6)
)
(wire (pts (xy 125.73 46.99) (xy 125.73 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c32636c-bc0f-4d76-94f2-815969f05971)
)
(wire (pts (xy 147.32 52.07) (xy 147.32 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d26d68f-1ca7-4ff3-b058-272f1c399047)
)
(wire (pts (xy 179.07 88.9) (xy 179.07 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ec113ca-7d27-4b14-a180-1e5e2fd1c167)
)
(wire (pts (xy 170.18 63.5) (xy 170.18 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 70e15522-1572-4451-9c0d-6d36ac70d8c6)
)
(wire (pts (xy 138.43 55.88) (xy 138.43 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7342cc82-e0e9-41f9-8b46-68197771b07f)
)
(wire (pts (xy 124.968 53.34) (xy 124.968 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7599133e-c681-4202-85d9-c20dac196c64)
)
(wire (pts (xy 114.808 73.66) (xy 114.808 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75ffc65c-7132-4411-9f2a-ae0c73d79338)
)
(wire (pts (xy 173.99 96.52) (xy 168.91 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 770ad51a-7219-4633-b24a-bd20feb0a6c5)
)
(wire (pts (xy 161.29 46.99) (xy 161.29 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7bca74a0-45b6-4b24-a7e5-a80dbb8a1450)
)
(wire (pts (xy 180.34 83.82) (xy 180.34 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7cee474b-af8f-4832-b07a-c43c1ab0b464)
)
(wire (pts (xy 127.508 99.06) (xy 127.508 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e023245-2c2b-4e2b-bfb9-5d35176e88f2)
)
(wire (pts (xy 127.508 88.9) (xy 138.43 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 850f2c6f-adb2-4001-86bf-9106b17142d8)
)
(wire (pts (xy 180.34 54.61) (xy 163.83 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 853ee787-6e2c-4f32-bc75-6c17337dd3d5)
)
(wire (pts (xy 133.35 49.53) (xy 149.86 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 85b7594c-358f-454b-b2ad-dd0b1d67ed76)
)
(wire (pts (xy 156.21 57.15) (xy 156.21 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b433f00-7aaf-410d-b970-348f42a4355e)
)
(wire (pts (xy 170.18 104.14) (xy 168.91 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c6a821f-8e19-48f3-8f44-9b340f7689bc)
)
(wire (pts (xy 181.61 53.34) (xy 161.29 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d9a3ecc-539f-41da-8099-d37cea9c28e7)
)
(wire (pts (xy 117.348 83.82) (xy 114.808 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8da933a9-35f8-42e6-8504-d1bab7264306)
)
(wire (pts (xy 138.43 52.07) (xy 147.32 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 911bdcbe-493f-4e21-a506-7cbc636e2c17)
)
(wire (pts (xy 133.35 46.99) (xy 133.35 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 923c7b02-ccdc-4e53-b988-581e9b5879f7)
)
(wire (pts (xy 135.89 101.6) (xy 135.89 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98196af0-f4ba-4a25-baf5-c077371df5b6)
)
(wire (pts (xy 128.27 46.99) (xy 128.27 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98e1bd4b-6696-4323-aa1a-414cc05074c8)
)
(wire (pts (xy 80.518 99.06) (xy 84.328 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b0a1687-7e1b-4a04-a30b-c27a072a2949)
)
(wire (pts (xy 168.91 83.82) (xy 180.34 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9cb12cc8-7f1a-4a01-9256-c119f11a8a02)
)
(wire (pts (xy 124.968 53.34) (xy 140.97 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9f8381e9-3077-4453-a480-a01ad9c1a940)
)
(wire (pts (xy 110.998 91.44) (xy 108.458 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a15a7506-eae4-4933-84da-9ad754258706)
)
(wire (pts (xy 168.91 86.36) (xy 175.26 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a17904b9-135e-4dae-ae20-401c7787de72)
)
(wire (pts (xy 163.83 46.99) (xy 163.83 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a548e2d9-99b0-45b9-b859-b9fe31cfe694)
)
(wire (pts (xy 149.86 60.96) (xy 172.72 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a5cd8da1-8f7f-4f80-bb23-0317de562222)
)
(wire (pts (xy 158.75 52.07) (xy 182.88 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa2ea573-3f20-43c1-aa99-1f9c6031a9aa)
)
(wire (pts (xy 170.18 72.39) (xy 170.18 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aca4de92-9c41-4c2b-9afa-540d02dafa1c)
)
(wire (pts (xy 140.97 46.99) (xy 140.97 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad9bbd61-541f-4778-88a1-06dc3a802c09)
)
(wire (pts (xy 130.81 48.26) (xy 151.13 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b1c649b1-f44d-46c7-9dea-818e75a1b87e)
)
(wire (pts (xy 133.35 52.07) (xy 125.73 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b590bc5d-2013-4098-9f63-b8b73c08a746)
)
(wire (pts (xy 173.99 59.69) (xy 173.99 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7199d9b-bebb-4100-9ad3-c2bd31e21d65)
)
(wire (pts (xy 114.808 99.06) (xy 110.998 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b88717bd-086f-46cd-9d3f-0396009d0996)
)
(wire (pts (xy 116.078 54.61) (xy 143.51 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b96fe6ac-3535-4455-ab88-ed77f5e46d6e)
)
(wire (pts (xy 158.75 72.39) (xy 138.43 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid babeabf2-f3b0-4ed5-8d9e-0215947e6cf3)
)
(wire (pts (xy 168.91 88.9) (xy 179.07 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd065eaf-e495-4837-bdb3-129934de1fc7)
)
(wire (pts (xy 114.808 83.82) (xy 114.808 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd5408e4-362d-4e43-9d39-78fb99eb52c8)
)
(wire (pts (xy 100.838 99.06) (xy 86.868 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))