-
Notifications
You must be signed in to change notification settings - Fork 0
/
ESP8266.kicad_sch
991 lines (965 loc) · 38.2 KB
/
ESP8266.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
(kicad_sch (version 20211123) (generator eeschema)
(uuid ea6d8a63-71f6-4411-8733-4df399e86326)
(paper "A4")
(title_block
(title "ESP8266")
(date "2019-09-23")
(rev "v2")
)
(lib_symbols
(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 "Sodastream-rescue:+3.3V-power" (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" "+3.3V-power" (id 1) (at 0 3.556 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 "+3.3V-power_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 "+3.3V-power_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Sodastream-rescue:ESP-12E-Module_ESP8266" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "ESP-12E-Module_ESP8266" (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_fp_filters" "ESP-12E ESP-12E_SMD" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ESP-12E-Module_ESP8266_1_0"
(rectangle (start -15.24 -15.24) (end 15.24 15.24)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "ESP-12E-Module_ESP8266_1_1"
(pin input line (at -22.86 7.62 0) (length 7.62)
(name "REST" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -7.62 180) (length 7.62)
(name "GPIO15" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -5.08 180) (length 7.62)
(name "GPIO2" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -2.54 180) (length 7.62)
(name "GPIO0" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 0 180) (length 7.62)
(name "GPIO4" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 2.54 180) (length 7.62)
(name "GPIO5" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at 22.86 5.08 180) (length 7.62)
(name "RXD" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin output line (at 22.86 7.62 180) (length 7.62)
(name "TXD" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -6.35 -22.86 90) (length 7.62)
(name "CS0" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -3.81 -22.86 90) (length 7.62)
(name "MISO" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -1.27 -22.86 90) (length 7.62)
(name "GPIO9" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -22.86 5.08 0) (length 7.62)
(name "ADC" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 1.27 -22.86 90) (length 7.62)
(name "GPIO10" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 3.81 -22.86 90) (length 7.62)
(name "MOSI" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 6.35 -22.86 90) (length 7.62)
(name "SCLK" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -22.86 2.54 0) (length 7.62)
(name "CH_PD" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -22.86 0 0) (length 7.62)
(name "GPIO16" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -22.86 -2.54 0) (length 7.62)
(name "GPIO14" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -22.86 -5.08 0) (length 7.62)
(name "GPIO12" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -22.86 -7.62 0) (length 7.62)
(name "GPIO13" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -22.86 -10.16 0) (length 7.62)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 22.86 -10.16 180) (length 7.62)
(name "GND" (effects (font (size 1.27 1.27))))
(number "9" (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))))
)
)
)
)
(junction (at 90.17 82.55) (diameter 0) (color 0 0 0 0)
(uuid 01224a73-18a0-4a37-a33f-9796239b764d)
)
(junction (at 194.31 76.2) (diameter 0) (color 0 0 0 0)
(uuid 0ca18487-1feb-49eb-a104-d8238904dc63)
)
(junction (at 165.1 110.49) (diameter 0) (color 0 0 0 0)
(uuid 181c0dbd-bfdb-43cb-ae89-b4c5e5a8763d)
)
(junction (at 160.02 110.49) (diameter 0) (color 0 0 0 0)
(uuid 3e1edc57-4a3b-44b4-a182-1963da0e2743)
)
(junction (at 102.87 111.76) (diameter 0) (color 0 0 0 0)
(uuid 6d2bcdfb-2c91-4e2a-b56a-d31491a248de)
)
(junction (at 173.99 92.71) (diameter 0) (color 0 0 0 0)
(uuid b94a9f7a-77e3-4339-ab29-6c0492fbcf6c)
)
(junction (at 86.36 69.85) (diameter 0) (color 0 0 0 0)
(uuid d8f03922-a8ba-4996-bba9-c94ba6a53a1a)
)
(junction (at 102.87 101.6) (diameter 0) (color 0 0 0 0)
(uuid db71f079-ae39-494e-a455-87b6f06dd099)
)
(junction (at 194.31 90.17) (diameter 0) (color 0 0 0 0)
(uuid ed2d954c-83f4-4254-80d7-3b360cc7c7ce)
)
(junction (at 102.87 100.33) (diameter 0) (color 0 0 0 0)
(uuid f4260929-dcd6-4c7a-a8ea-3fe820c35e98)
)
(junction (at 201.93 92.71) (diameter 0) (color 0 0 0 0)
(uuid faa2d87b-df83-4884-b2fa-75c94d3fec88)
)
(junction (at 186.69 87.63) (diameter 0) (color 0 0 0 0)
(uuid faca2dfb-bc91-4af1-9201-568beadd191f)
)
(no_connect (at 137.16 113.03) (uuid 089ed8ed-e163-4f34-ae93-7e0e3e9c3989))
(no_connect (at 110.49 97.79) (uuid 0f0643ad-87a0-4cd5-8912-2d4ceaa83460))
(no_connect (at 132.08 113.03) (uuid 4352698b-2af3-4565-80b2-8c64562a8e6e))
(no_connect (at 110.49 92.71) (uuid 6ba721ea-2271-43cd-83b7-9e4b54b79519))
(no_connect (at 110.49 90.17) (uuid 70f585a0-ce53-4d02-9344-4f94d3d24c31))
(no_connect (at 110.49 95.25) (uuid 73a23c29-77ab-4571-a15f-ccd1d709b557))
(no_connect (at 134.62 113.03) (uuid 75d9e68f-bbb6-432a-a3dd-b22d899add4e))
(no_connect (at 139.7 113.03) (uuid 873e5b23-afc9-4969-bfc2-18218fac45f1))
(no_connect (at 129.54 113.03) (uuid 8e248051-1b9a-4b46-8712-c8fca4a17200))
(no_connect (at 127 113.03) (uuid ca314df1-68b8-42c7-ada7-8cab10db10bf))
(no_connect (at 110.49 85.09) (uuid e981afb4-de49-4250-913c-0b808f1a6be8))
(wire (pts (xy 186.69 77.47) (xy 186.69 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01d16d97-32ad-4948-beae-540358675786)
)
(wire (pts (xy 156.21 95.25) (xy 204.47 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f8389b4-3dbf-4325-8035-e248979eb96b)
)
(wire (pts (xy 82.55 69.85) (xy 86.36 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15dc5567-43b9-4dd5-a7b1-0b5831ad2250)
)
(wire (pts (xy 156.21 82.55) (xy 176.53 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cf9c437-17f2-4e43-9df9-ee219b0def6a)
)
(wire (pts (xy 90.17 69.85) (xy 90.17 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20e77cf1-0540-4585-ba57-052a729a87f4)
)
(wire (pts (xy 90.17 80.01) (xy 90.17 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 248f9af5-87f1-4508-8758-79349f56b478)
)
(wire (pts (xy 102.87 100.33) (xy 102.87 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25b76953-4e79-46bf-9484-d18ac5e2cacd)
)
(wire (pts (xy 194.31 76.2) (xy 194.31 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2740192a-2781-4a16-83cd-bcd09e16834d)
)
(wire (pts (xy 156.21 92.71) (xy 173.99 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d554ef3-7e09-4899-a146-a1ecbfacff56)
)
(wire (pts (xy 186.69 85.09) (xy 186.69 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2eb9a163-4820-42ec-81e0-d8c7bdfb4c98)
)
(wire (pts (xy 160.02 110.49) (xy 160.02 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32de7a2f-8666-4d29-8612-7b61db70a32b)
)
(wire (pts (xy 82.55 87.63) (xy 82.55 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a9f618e-fb00-4557-b5cf-184cff747bcd)
)
(wire (pts (xy 113.03 111.76) (xy 113.03 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b53b511-2f20-4f92-9333-092c327af96a)
)
(wire (pts (xy 194.31 85.09) (xy 194.31 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3da9d673-e648-4346-9f49-6e4ce6258d7f)
)
(wire (pts (xy 102.87 111.76) (xy 102.87 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e76b17e-2277-4fa4-8bde-08a8c3c10205)
)
(wire (pts (xy 201.93 92.71) (xy 201.93 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 521b979d-a720-450b-a92e-8adbb1b40329)
)
(wire (pts (xy 156.21 90.17) (xy 194.31 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 52af3d09-3a5e-4794-99e6-0e973c00a02c)
)
(wire (pts (xy 186.69 87.63) (xy 204.47 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ca20b68-c35d-4743-ab6b-ff21fe88e3f5)
)
(wire (pts (xy 113.03 101.6) (xy 102.87 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a124f9f-54d1-45f1-94d1-ed77a89634d7)
)
(wire (pts (xy 173.99 100.33) (xy 173.99 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c934ab9-f361-4484-9ec9-24f51d8c5867)
)
(wire (pts (xy 194.31 90.17) (xy 204.47 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 76cb1c25-d996-4dc2-81f4-7924956057a6)
)
(wire (pts (xy 165.1 100.33) (xy 165.1 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b3268d5-8f87-47b9-bc93-1c6d7def3157)
)
(wire (pts (xy 201.93 76.2) (xy 201.93 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a096d41e-9566-44c1-a6c9-50bbaa99d810)
)
(wire (pts (xy 165.1 110.49) (xy 160.02 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9e72e67-e9bb-465d-9fcf-8c4691aecb85)
)
(wire (pts (xy 102.87 111.76) (xy 113.03 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa1f848d-b782-4bfb-a2f7-665e620c3d7b)
)
(wire (pts (xy 113.03 102.87) (xy 113.03 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa55bc41-9155-4b97-9b92-a47f4e1e157e)
)
(wire (pts (xy 173.99 110.49) (xy 173.99 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac879357-669e-45e4-8697-b5df3f676b22)
)
(wire (pts (xy 102.87 110.49) (xy 102.87 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid acdb013c-8f27-4c1e-9b0e-1fa947ae7801)
)
(wire (pts (xy 194.31 76.2) (xy 201.93 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2c6a67e-caf8-41e7-94eb-6e92af54e20e)
)
(wire (pts (xy 186.69 76.2) (xy 194.31 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b75e973c-92dd-4c5c-8426-75ceae919e65)
)
(wire (pts (xy 173.99 92.71) (xy 201.93 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bb9493df-f25c-4a15-bfe6-71e15c3291d1)
)
(wire (pts (xy 156.21 87.63) (xy 186.69 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bbb20325-90fe-4410-ae7d-690883e100d6)
)
(wire (pts (xy 160.02 100.33) (xy 160.02 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcf3da0a-c2cd-449a-8312-dffb90c17ee8)
)
(wire (pts (xy 110.49 87.63) (xy 82.55 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c478128f-b799-4173-a649-c52c0bde56af)
)
(wire (pts (xy 82.55 72.39) (xy 82.55 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9258e11-89b8-4a4d-bdb8-d10ef0dff60d)
)
(wire (pts (xy 90.17 82.55) (xy 110.49 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ccf62e9d-0f57-46f8-b4ec-35699f996279)
)
(wire (pts (xy 102.87 100.33) (xy 110.49 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d84ad0dd-b4ba-4553-ad5a-8189e7d5b160)
)
(wire (pts (xy 165.1 97.79) (xy 156.21 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd26d0c0-283c-48df-baec-b7d10efcb6a3)
)
(wire (pts (xy 102.87 101.6) (xy 102.87 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid df769e87-a3b7-4439-9844-a74ee4d4faf0)
)
(wire (pts (xy 165.1 107.95) (xy 165.1 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5a708f7-6e9e-4e76-8e20-c60c6003f0ad)
)
(wire (pts (xy 90.17 82.55) (xy 90.17 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e6d55b7e-3b82-4130-bc77-ba5a1ffb9ac8)
)
(wire (pts (xy 201.93 92.71) (xy 204.47 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef329fc2-1362-4606-902c-34ac5548dc28)
)
(wire (pts (xy 194.31 76.2) (xy 194.31 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef61edd3-5389-4f7c-b5d7-b783368d1924)
)
(wire (pts (xy 156.21 100.33) (xy 160.02 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f3a68cfe-5a64-4260-93b1-20aa247793b2)
)
(wire (pts (xy 86.36 67.31) (xy 86.36 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f4f0fd42-c80d-48ab-a941-8c58ec5ccf5f)
)
(wire (pts (xy 86.36 69.85) (xy 90.17 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f553fddd-04d4-4b86-a0b8-632347bf25d7)
)
(wire (pts (xy 165.1 110.49) (xy 173.99 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fa1ebff7-7971-44fa-8a46-1eb6b63785f6)
)
(wire (pts (xy 156.21 85.09) (xy 176.53 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fec85833-c939-42d3-bdd5-a6c0f35fe8bc)
)
(text "requires pullup" (at 156.21 87.63 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2466caf0-f488-44dc-9aac-c6e0ac52b0c6)
)
(text "requires pullup" (at 110.49 82.55 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 2ef7deaa-0a75-4b16-8924-ac7b651b2194)
)
(text "requires pullup" (at 110.49 87.63 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 754a4ca6-f163-4351-91f1-d5d67df24fcb)
)
(text "requires pullup (at servo converter input)" (at 156.21 95.25 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 82befd29-ca91-438e-9414-b10e92495cec)
)
(text "requires pullup" (at 156.21 92.71 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a838bf30-1b1f-4f01-96d9-42ffb3fb6563)
)
(text "Using 47k for R12 prevented screwed with the\nboot to UART (and maybe more), so I replaced\nit with 10k."
(at 166.37 119.38 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d0db9f22-a4db-40e8-aace-0ec176e52086)
)
(text "requires pullup" (at 156.21 90.17 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid dc489b02-b023-4f9a-8f0d-a5cab7fbb8bb)
)
(text "REST <-> GPIO16 necessary for timer based deep sleep\n(wake up / reset on falling edge of RST)"
(at 118.11 186.69 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e8bf2bf5-8263-45cb-8ced-8f822c553246)
)
(text "GPIO15 GPIO0 GPIO2 Mode\nL L H UART\nL H H Flash\nH x x SD"
(at 118.11 195.58 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fd2801f4-af9a-4fa0-9cc7-9f8a65efe523)
)
(hierarchical_label "TXD" (shape output) (at 176.53 82.55 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3aaeb2e9-8b8c-4162-9538-90e231265c92)
)
(hierarchical_label "RXD" (shape input) (at 176.53 85.09 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 439e96a4-25fd-41fd-ac70-b10129131dc5)
)
(hierarchical_label "IO_Int" (shape input) (at 204.47 87.63 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9d863d3a-22cc-49a8-a54c-b5258cb06818)
)
(hierarchical_label "IO_SDA" (shape bidirectional) (at 204.47 90.17 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a433cfd8-9dac-4fa3-9f39-ed542b2f10a9)
)
(hierarchical_label "IO_SCL" (shape output) (at 204.47 92.71 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid dcf6a454-2e98-424c-8781-ba5b5afbe2a2)
)
(hierarchical_label "ServoPWM" (shape output) (at 204.47 95.25 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f7022575-2257-4715-b6db-43363813bff5)
)
(symbol (lib_id "power:GND") (at 102.87 113.03 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d933a97)
(property "Reference" "#PWR018" (id 0) (at 102.87 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 102.997 117.4242 0))
(property "Footprint" "" (id 2) (at 102.87 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 102.87 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cbad9486-8fd2-4044-9505-d9998e79684f))
)
(symbol (lib_id "Device:C") (at 102.87 106.68 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d933fb3)
(property "Reference" "C2" (id 0) (at 105.791 105.5116 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10u" (id 1) (at 105.791 107.823 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 103.8352 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 102.87 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ed572e0c-3e43-4aa5-bd4f-b20009810845))
(pin "2" (uuid e60ec86a-8520-448e-9546-83a78a665034))
)
(symbol (lib_id "Device:C") (at 113.03 106.68 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d936740)
(property "Reference" "C3" (id 0) (at 115.951 105.5116 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (id 1) (at 115.951 107.823 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 113.9952 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 113.03 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f803a758-95a9-43bc-84db-1742be30d943))
(pin "2" (uuid 2548612c-648f-4693-8aad-df3f96867fe0))
)
(symbol (lib_id "Sodastream-rescue:+3.3V-power") (at 194.31 74.93 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d958fd9)
(property "Reference" "#PWR020" (id 0) (at 194.31 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 194.691 70.5358 0))
(property "Footprint" "" (id 2) (at 194.31 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 194.31 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e79b732b-1d86-4825-9da3-95253c6d2197))
)
(symbol (lib_id "Device:R") (at 186.69 81.28 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d95a8ae)
(property "Reference" "R13" (id 0) (at 188.468 80.1116 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "47k" (id 1) (at 188.468 82.423 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 184.912 81.28 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 186.69 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7100c554-475a-47cb-b948-fded8c89257d))
(pin "2" (uuid 0fb150bf-ff6b-416b-971c-ba654b0ba6f0))
)
(symbol (lib_id "Device:R") (at 194.31 81.28 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d95c087)
(property "Reference" "R14" (id 0) (at 196.088 80.1116 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "47k" (id 1) (at 196.088 82.423 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 192.532 81.28 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 194.31 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 861fb187-4f99-4c23-9316-0126dc12cd59))
(pin "2" (uuid 20a31ffb-d132-4119-b767-80da5f23a3f3))
)
(symbol (lib_id "Device:R") (at 201.93 81.28 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d95c4e2)
(property "Reference" "R15" (id 0) (at 203.708 80.1116 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "47k" (id 1) (at 203.708 82.423 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 200.152 81.28 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 201.93 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c29c238c-27e7-4bc6-86b5-937901401e81))
(pin "2" (uuid f69a9eab-5e32-4d34-af77-f94fb5cc33f6))
)
(symbol (lib_id "Sodastream-rescue:ESP-12E-Module_ESP8266") (at 133.35 90.17 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d9a0149)
(property "Reference" "U2" (id 0) (at 133.35 70.739 0))
(property "Value" "ESP-12E" (id 1) (at 133.35 73.0504 0))
(property "Footprint" "Module_ESP8266:ESP-12E_SMD" (id 2) (at 133.35 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://l0l.org.uk/2014/12/esp8266-modules-hardware-guide-gotta-catch-em-all/" (id 3) (at 133.35 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 58137c30-be8e-45c2-828b-987ea2d4bd57))
(pin "10" (uuid 022a30b9-fa69-43a2-9671-d1896984a3f9))
(pin "11" (uuid 56d7d288-8e69-4a71-a685-79d222ca4ffb))
(pin "12" (uuid 2a7bb412-7084-445a-9438-148467c96334))
(pin "13" (uuid 10ee8340-dad2-4f17-abe6-7cb6ab7940de))
(pin "14" (uuid c515b7a5-6471-43ee-b35c-abfdd0a6b32b))
(pin "15" (uuid 04cbb12b-c53c-4941-bb1e-aed33574edb3))
(pin "16" (uuid 20138158-6165-4540-8e6a-d4825a17a604))
(pin "17" (uuid 098c67db-39b1-4f85-8c06-d06c83fdc728))
(pin "18" (uuid 66b042a8-de70-49d2-bc48-14387a851865))
(pin "19" (uuid 4ea4c1f2-f45c-4ac5-af9b-a7addcb37ffe))
(pin "2" (uuid b6ff01f5-7622-4a8b-9009-980da8064b4d))
(pin "20" (uuid bf4982cb-acc3-4f3a-9700-f4092b6f66cb))
(pin "21" (uuid 142f30de-9c77-49df-803a-d1b024749b33))
(pin "22" (uuid 9dcdf3ce-c6c0-4dd9-ae10-c3307beb4ace))
(pin "3" (uuid 1bbc20bd-1ef7-4e17-bbca-89bcd5c119f0))
(pin "4" (uuid 08c23f51-ded9-4602-8add-200fbd8d31ab))
(pin "5" (uuid ae6b23c6-964f-4a9e-8c04-44e302142ced))
(pin "6" (uuid 9389dd29-d2f4-4552-85f4-c35f01c1a841))
(pin "7" (uuid 5e6e7ade-674f-4674-a255-0f74fd8a7465))
(pin "8" (uuid 99e5ac5a-c80e-45a9-8876-e46a068abe49))
(pin "9" (uuid be10f9fe-4c11-40a7-9450-e2320d7531a4))
)
(symbol (lib_id "power:GND") (at 90.17 100.33 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d9a015d)
(property "Reference" "#PWR016" (id 0) (at 90.17 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 90.297 104.7242 0))
(property "Footprint" "" (id 2) (at 90.17 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 90.17 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 31a5dc6f-ca7d-479e-beff-915231e3d206))
)
(symbol (lib_id "Device:C") (at 90.17 96.52 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d9a0167)
(property "Reference" "C1" (id 0) (at 93.091 95.3516 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (id 1) (at 93.091 97.663 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 91.1352 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 90.17 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 97f9f8bc-e872-4df6-a928-18ed206bea4d))
(pin "2" (uuid fac40d99-275c-437b-94b2-cb096509dd28))
)
(symbol (lib_id "Jumper:SolderJumper_2_Open") (at 173.99 104.14 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d9a018c)
(property "Reference" "JP1" (id 0) (at 179.197 104.14 0))
(property "Value" "PROG" (id 1) (at 176.8856 104.14 0))
(property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (id 2) (at 173.99 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 173.99 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 999ec3f8-f736-42a8-9a7f-1ea1f0f6750b))
(pin "2" (uuid 22dd71df-7c91-4005-847e-7f0b5c90e3aa))
)
(symbol (lib_id "Device:R") (at 90.17 76.2 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d9a0193)
(property "Reference" "R11" (id 0) (at 91.948 75.0316 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "47k" (id 1) (at 91.948 77.343 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 88.392 76.2 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 90.17 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 07a90312-4dc7-480e-b1d6-ac51fb27f99f))
(pin "2" (uuid 68674604-dc0e-4d27-946b-8f14ecd786e4))
)
(symbol (lib_id "Device:R") (at 82.55 76.2 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d9a019a)
(property "Reference" "R10" (id 0) (at 84.328 75.0316 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "47k" (id 1) (at 84.328 77.343 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 80.772 76.2 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 82.55 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e46a5da1-6ca2-422d-ac13-08e09177499e))
(pin "2" (uuid 43643856-ccb3-4209-9aeb-291a459de663))
)
(symbol (lib_id "power:GND") (at 160.02 113.03 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d9a01a0)
(property "Reference" "#PWR019" (id 0) (at 160.02 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 160.147 117.4242 0))
(property "Footprint" "" (id 2) (at 160.02 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 160.02 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 27670f8f-5dc1-42be-a703-b6e9a4bbd2a1))
)
(symbol (lib_id "Sodastream-rescue:+3.3V-power") (at 86.36 67.31 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d9a01a6)
(property "Reference" "#PWR015" (id 0) (at 86.36 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 86.741 62.9158 0))
(property "Footprint" "" (id 2) (at 86.36 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 86.36 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid de2f3f63-dffc-4ae8-bfed-0aa9415f8225))
)
(symbol (lib_id "Sodastream-rescue:+3.3V-power") (at 102.87 100.33 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d9a01af)
(property "Reference" "#PWR017" (id 0) (at 102.87 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 103.251 95.9358 0))
(property "Footprint" "" (id 2) (at 102.87 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 102.87 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1bcc6f51-a098-48dc-afb8-8924510f8920))
)
(symbol (lib_id "Device:R") (at 165.1 104.14 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d9a01b5)
(property "Reference" "R12" (id 0) (at 168.91 102.87 0))
(property "Value" "10k" (id 1) (at 168.91 105.41 0))
(property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 166.878 104.14 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 165.1 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dc045d9a-5dfa-4cb3-b328-42eab15d4ec6))
(pin "2" (uuid 0bb52bae-0dd7-43c5-80f8-8d7bf2662268))
)
)