-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudIOT.net
1149 lines (1149 loc) · 44.2 KB
/
StudIOT.net
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
(export (version D)
(design
(source /Users/martini/Dropbox/dev/projects/TUD/1907-StudIOT/StudIOT/StudIOT.sch)
(date "2019 July 30, Tuesday 16:19:13")
(tool "Eeschema (5.0.1-3-g963ef8bb5)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source StudIOT.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /shield2/) (tstamps /5D5E5D45/)
(title_block
(title)
(company)
(rev)
(date)
(source shield2.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U0)
(value ARDUINO_NANO_33_IOT)
(footprint _arduino_shield:ARDUINO_NANO_33_IOT_TH)
(libsource (lib _arduino_shieldsNCL) (part ARDUINO_NANO_33_IOT) (description "Nano with secure IOT over WiFi and BT"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3EA98E))
(comp (ref J20)
(value Conn_01x04)
(footprint _connectors:GROVE_TH_V)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3EA9EB))
(comp (ref J30)
(value Conn_01x04)
(footprint _connectors:GROVE_TH_V)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3EAA4A))
(comp (ref C52)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3EB685))
(comp (ref U20)
(value PCA9508)
(footprint Package_SO:TSSOP-8_3x3mm_P0.65mm)
(datasheet http://www.farnell.com/datasheets/2340285.pdf?_ga=2.148930358.1837370793.1564388179-307862962.1549974152&_gac=1.25292367.1562317174.CjwKCAjw6vvoBRBtEiwAZq-T1WX1TRXailAfWp7-Rx-HMSnui8WBSplixcoat656SBBe6rI6Lwx1IxoClLYQAvD_BwE)
(libsource (lib _interface_IC) (part PCA9508) (description "Level translating I2C repeater"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3EDC7D))
(comp (ref R21)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3F04BC))
(comp (ref R20)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3F0824))
(comp (ref C20)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3F6DC2))
(comp (ref C21)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3F6F35))
(comp (ref Q30)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3FB918))
(comp (ref R30)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3FF055))
(comp (ref C30)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3FF6B7))
(comp (ref Q40)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4064C5))
(comp (ref R40)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4064E2))
(comp (ref C40)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4064E9))
(comp (ref Q50)
(value 2N7002DW)
(footprint Package_TO_SOT_SMD:SOT-363_SC-70-6)
(libsource (lib _transistors) (part 2N7002DW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D411600))
(comp (ref J50)
(value Conn_01x04)
(footprint _connectors:GROVE_TH_V)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D412CDF))
(comp (ref R50)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D412D03))
(comp (ref C50)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D412D0A))
(comp (ref R51)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D412D40))
(comp (ref C31)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D422E73))
(comp (ref C62)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4419E6))
(comp (ref Q60)
(value 2N7002DW)
(footprint Package_TO_SOT_SMD:SOT-363_SC-70-6)
(libsource (lib _transistors) (part 2N7002DW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D4419ED))
(comp (ref J60)
(value Conn_01x04)
(footprint _connectors:GROVE_TH_V)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4419FB))
(comp (ref R60)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D441A18))
(comp (ref C60)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D441A1F))
(comp (ref R61)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D441A4E))
(comp (ref JP60)
(value SolderJumper_3_Open)
(footprint Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_3_Open) (description "Solder Jumper, 3-pole, open"))
(sheetpath (names /) (tstamps /))
(tstamp 5D44CBAF))
(comp (ref J1)
(value Conn_01x15)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x15_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x15) (description "Generic connector, single row, 01x15, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D484DEA))
(comp (ref J2)
(value Conn_01x15)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x15_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x15) (description "Generic connector, single row, 01x15, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4850CA))
(comp (ref R62)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D535DC8))
(comp (ref R110)
(value 1K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D564A23))
(comp (ref R111)
(value 2K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D564ECA))
(comp (ref J110)
(value Conn_01x04)
(footprint _connectors:GROVE_TH_V)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D566DFB))
(comp (ref R112)
(value 1K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D5782F0))
(comp (ref R113)
(value 2K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D5782F7))
(comp (ref C110)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D5DD3F0))
(comp (ref J11)
(value Conn_01x15)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x15_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x15) (description "Generic connector, single row, 01x15, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D5E6819))
(comp (ref J12)
(value Conn_01x15)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x15_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x15) (description "Generic connector, single row, 01x15, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D5E6820))
(comp (ref C70)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D5EDB6D))
(comp (ref J70)
(value GROVE)
(footprint _connectors:GROVE_TH_V)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D5EDB82))
(comp (ref U10)
(value MCP3831-2)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://cdn.sparkfun.com/assets/learn_tutorials/6/9/5/MCP738312.pdf)
(libsource (lib _battery_management) (part MCP3831-2) (description "Single cell, fully integrated Li-Po charger"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D5F0C61))
(comp (ref C10)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D5F141F))
(comp (ref R11)
(value 5K)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D5F1DB2))
(comp (ref D10)
(value RED)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D5F2CC7))
(comp (ref R10)
(value 1K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D5F32AE))
(comp (ref J10)
(value Conn_01x02)
(footprint Connector_JST:JST_PH_S2B-PH-K_1x02_P2.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x02) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D618B57))
(comp (ref R12)
(value 100K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D61E0F8))
(comp (ref R13)
(value 100K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D61E481))
(comp (ref D71)
(value 3V3)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D69B936))
(comp (ref D70)
(value 3V3)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D69DEC7))
(comp (ref R70)
(value 220R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6A0552))
(comp (ref R71)
(value 220R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6A1259))
(comp (ref C80)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CCB45))
(comp (ref J80)
(value GROVE)
(footprint _connectors:GROVE_TH_V)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CCB4C))
(comp (ref D81)
(value 3V3)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CCB5F))
(comp (ref D80)
(value 3V3)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CCB66))
(comp (ref R80)
(value 220R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CCB6D))
(comp (ref R81)
(value 220R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CCB74))
(comp (ref C90)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CEF23))
(comp (ref J90)
(value GROVE)
(footprint _connectors:GROVE_TH_V)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CEF2A))
(comp (ref D91)
(value 3V3)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CEF3D))
(comp (ref D90)
(value 3V3)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CEF44))
(comp (ref R90)
(value 220R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CEF4B))
(comp (ref R91)
(value 220R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CEF52))
(comp (ref C100)
(value 100nF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CEF83))
(comp (ref J100)
(value GROVE)
(footprint _connectors:GROVE_TH_V)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CEF8A))
(comp (ref D101)
(value 3V3)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CEF9D))
(comp (ref D100)
(value 3V3)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CEFA4))
(comp (ref R100)
(value 220R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CEFAB))
(comp (ref R101)
(value 220R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6CEFB2))
(comp (ref D11)
(value WS2812B)
(footprint LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm)
(datasheet https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
(libsource (lib LED) (part WS2812B) (description "RGB LED with integrated controller"))
(sheetpath (names /shield2/) (tstamps /5D5E5D45/))
(tstamp 5D6D7F19)))
(libparts
(libpart (lib Connector_Generic) (part Conn_01x02)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x04)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x15)
(description "Generic connector, single row, 01x15, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x15))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))))
(libpart (lib Device) (part C_Small)
(description "Unpolarized capacitor, small symbol")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part D_Zener_Small)
(description "Zener diode, small symbol")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Zener_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part LED_Small)
(description "Light emitting diode, small symbol")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part R_Small)
(description "Resistor, small symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Jumper) (part SolderJumper_3_Open)
(description "Solder Jumper, 3-pole, open")
(docs ~)
(footprints
(fp SolderJumper*Open*))
(fields
(field (name Reference) JP)
(field (name Value) SolderJumper_3_Open))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name C) (type input))
(pin (num 3) (name B) (type passive))))
(libpart (lib LED) (part WS2812B)
(description "RGB LED with integrated controller")
(docs https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
(footprints
(fp LED*WS2812*PLCC*5.0x5.0mm*P3.2mm*))
(fields
(field (name Reference) D)
(field (name Value) WS2812B)
(field (name Footprint) LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm))
(pins
(pin (num 1) (name VDD) (type power_in))
(pin (num 2) (name DOUT) (type output))
(pin (num 3) (name VSS) (type power_in))
(pin (num 4) (name DIN) (type input))))
(libpart (lib Transistor_FET) (part BSS138)
(aliases
(alias 2N7002)
(alias MMBF170))
(description "50V Vds, 0.22A Id, N-channel MOSFET, SOT-23")
(docs https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) Q)
(field (name Value) BSS138)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib _arduino_shieldsNCL) (part ARDUINO_NANO_33_IOT)
(description "Nano with secure IOT over WiFi and BT")
(fields
(field (name Reference) U)
(field (name Value) ARDUINO_NANO_33_IOT))
(pins
(pin (num 1) (name D13/SCK) (type BiDi))
(pin (num 2) (name 3V3) (type power_out))
(pin (num 3) (name AREF) (type BiDi))
(pin (num 4) (name A0/DAC0) (type BiDi))
(pin (num 5) (name A1) (type BiDi))
(pin (num 6) (name A2) (type BiDi))
(pin (num 7) (name A3) (type BiDi))
(pin (num 8) (name A4/SDA) (type BiDi))
(pin (num 9) (name A5/SCL) (type BiDi))
(pin (num 10) (name A6) (type BiDi))
(pin (num 11) (name A7) (type BiDi))
(pin (num 12) (name VUSB) (type power_in))
(pin (num 13) (name ~RST) (type input))
(pin (num 14) (name GND) (type power_in))
(pin (num 15) (name VIN) (type power_in))
(pin (num 16) (name TX) (type BiDi))
(pin (num 17) (name RX) (type BiDi))
(pin (num 18) (name ~RST) (type input))
(pin (num 19) (name GND) (type power_in))
(pin (num 20) (name D2) (type BiDi))
(pin (num 21) (name "(PWM)D3") (type BiDi))
(pin (num 22) (name D4) (type BiDi))
(pin (num 23) (name "(PWM)D5") (type BiDi))
(pin (num 24) (name "(PWM)D6") (type BiDi))
(pin (num 25) (name D7) (type BiDi))
(pin (num 26) (name D8) (type BiDi))
(pin (num 27) (name "(PWM)D9") (type BiDi))
(pin (num 28) (name "(PWM)D10") (type BiDi))
(pin (num 29) (name MOSI/D11) (type BiDi))
(pin (num 30) (name MISO/D12) (type BiDi))))
(libpart (lib _battery_management) (part MCP3831-2)
(description "Single cell, fully integrated Li-Po charger")
(docs https://cdn.sparkfun.com/assets/learn_tutorials/6/9/5/MCP738312.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) MCP3831-2))
(pins
(pin (num 1) (name STAT) (type BiDi))
(pin (num 2) (name VSS) (type power_in))
(pin (num 3) (name VBAT) (type power_in))
(pin (num 4) (name VDD) (type power_in))
(pin (num 5) (name PROG) (type input))))
(libpart (lib _interface_IC) (part PCA9508)
(description "Level translating I2C repeater")
(docs http://www.farnell.com/datasheets/2340285.pdf?_ga=2.148930358.1837370793.1564388179-307862962.1549974152&_gac=1.25292367.1562317174.CjwKCAjw6vvoBRBtEiwAZq-T1WX1TRXailAfWp7-Rx-HMSnui8WBSplixcoat656SBBe6rI6Lwx1IxoClLYQAvD_BwE)
(footprints
(fp TSSOP-8_3*)
(fp SO-8*))
(fields
(field (name Reference) U)
(field (name Value) PCA9508))
(pins
(pin (num 1) (name "VCC(A)") (type power_in))
(pin (num 2) (name SCLA) (type input))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name EN) (type input))
(pin (num 6) (name SDAB) (type BiDi))
(pin (num 7) (name SCLB) (type BiDi))
(pin (num 8) (name "VCC(B)") (type BiDi))
(pin (num ~) (name SDAA) (type BiDi))))
(libpart (lib _transistors) (part BSS138)
(aliases
(alias 2N7002DW))
(description "50V Vds, 0.22A Id, N-channel MOSFET, SOT-23")
(docs https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(footprints
(fp SOT?363*))
(fields
(field (name Reference) Q)
(field (name Value) BSS138)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name S) (type passive))
(pin (num 2) (name G) (type input))
(pin (num 3) (name D) (type passive))
(pin (num 4) (name S) (type passive))
(pin (num 5) (name G) (type input))
(pin (num 6) (name D) (type passive)))))
(libraries
(library (logical Connector_Generic)
(uri "/Library/Application Support/kicad/library/Connector_Generic.lib"))
(library (logical Device)
(uri "/Library/Application Support/kicad/library/Device.lib"))
(library (logical Jumper)
(uri "/Library/Application Support/kicad/library/Jumper.lib"))
(library (logical LED)
(uri "/Library/Application Support/kicad/library/LED.lib"))
(library (logical Transistor_FET)
(uri "/Library/Application Support/kicad/library/Transistor_FET.lib"))
(library (logical _arduino_shieldsNCL)
(uri /Users/martini/Dropbox/dev/apps/kicad/library/_arduino_shieldsNCL.lib))
(library (logical _battery_management)
(uri /Users/martini/Dropbox/dev/apps/kicad/library/_battery_management.lib))
(library (logical _interface_IC)
(uri /Users/martini/Dropbox/dev/apps/kicad/library/_interface_IC.lib))
(library (logical _transistors)
(uri /Users/martini/Dropbox/dev/apps/kicad/library/_transistors.lib)))
(nets
(net (code 1) (name "Net-(U0-Pad1)")
(node (ref U0) (pin 1)))
(net (code 2) (name "Net-(U0-Pad10)")
(node (ref U0) (pin 10)))
(net (code 3) (name "Net-(U0-Pad11)")
(node (ref U0) (pin 11)))
(net (code 4) (name "Net-(U0-Pad12)")
(node (ref U0) (pin 12)))
(net (code 5) (name "Net-(U0-Pad13)")
(node (ref U0) (pin 13)))
(net (code 6) (name "Net-(U0-Pad14)")
(node (ref U0) (pin 14)))
(net (code 7) (name "Net-(U0-Pad15)")
(node (ref U0) (pin 15)))
(net (code 8) (name "Net-(U0-Pad16)")
(node (ref U0) (pin 16)))
(net (code 9) (name "Net-(U0-Pad17)")
(node (ref U0) (pin 17)))
(net (code 10) (name "Net-(U0-Pad18)")
(node (ref U0) (pin 18)))
(net (code 11) (name "Net-(U0-Pad19)")
(node (ref U0) (pin 19)))
(net (code 12) (name "Net-(U0-Pad2)")
(node (ref U0) (pin 2)))
(net (code 13) (name "Net-(U0-Pad20)")
(node (ref U0) (pin 20)))
(net (code 14) (name "Net-(U0-Pad21)")
(node (ref U0) (pin 21)))
(net (code 15) (name "Net-(U0-Pad22)")
(node (ref U0) (pin 22)))
(net (code 16) (name "Net-(U0-Pad23)")
(node (ref U0) (pin 23)))
(net (code 17) (name "Net-(U0-Pad24)")
(node (ref U0) (pin 24)))
(net (code 18) (name "Net-(U0-Pad25)")
(node (ref U0) (pin 25)))
(net (code 19) (name "Net-(U0-Pad26)")
(node (ref U0) (pin 26)))
(net (code 20) (name "Net-(U0-Pad27)")
(node (ref U0) (pin 27)))
(net (code 21) (name "Net-(U0-Pad28)")
(node (ref U0) (pin 28)))
(net (code 22) (name "Net-(U0-Pad29)")
(node (ref U0) (pin 29)))
(net (code 23) (name "Net-(U0-Pad3)")
(node (ref U0) (pin 3)))
(net (code 24) (name "Net-(U0-Pad30)")
(node (ref U0) (pin 30)))
(net (code 25) (name "Net-(U0-Pad4)")
(node (ref U0) (pin 4)))
(net (code 26) (name "Net-(U0-Pad5)")
(node (ref U0) (pin 5)))
(net (code 27) (name "Net-(U0-Pad6)")
(node (ref U0) (pin 6)))
(net (code 28) (name "Net-(U0-Pad7)")
(node (ref U0) (pin 7)))
(net (code 29) (name "Net-(U0-Pad8)")
(node (ref U0) (pin 8)))
(net (code 30) (name "Net-(U0-Pad9)")
(node (ref U0) (pin 9)))
(net (code 31) (name "Net-(U20-Pad5)")
(node (ref U20) (pin 5)))
(net (code 32) (name +3V3)
(node (ref J80) (pin 2))
(node (ref C80) (pin 1))
(node (ref U20) (pin 1))
(node (ref J1) (pin 2))
(node (ref R62) (pin 1))
(node (ref C100) (pin 1))
(node (ref J70) (pin 2))
(node (ref C70) (pin 1))
(node (ref JP60) (pin 3))
(node (ref C90) (pin 1))
(node (ref J90) (pin 2))
(node (ref C60) (pin 1))
(node (ref J100) (pin 2))
(node (ref C50) (pin 1))
(node (ref C20) (pin 2))
(node (ref Q50) (pin 5))
(node (ref Q30) (pin 1))
(node (ref Q50) (pin 2))
(node (ref J11) (pin 2))
(node (ref C30) (pin 2))
(node (ref C40) (pin 2))
(node (ref Q40) (pin 1)))
(net (code 33) (name GND)
(node (ref J12) (pin 12))
(node (ref C40) (pin 1))
(node (ref C30) (pin 1))
(node (ref D100) (pin 2))
(node (ref J11) (pin 14))
(node (ref D101) (pin 2))
(node (ref J50) (pin 1))
(node (ref C21) (pin 2))
(node (ref C20) (pin 1))
(node (ref C50) (pin 2))
(node (ref D70) (pin 2))
(node (ref C110) (pin 2))
(node (ref J100) (pin 1))
(node (ref C31) (pin 2))
(node (ref D90) (pin 2))
(node (ref D91) (pin 2))
(node (ref D11) (pin 3))
(node (ref C62) (pin 2))
(node (ref D71) (pin 2))
(node (ref J60) (pin 1))
(node (ref J10) (pin 2))
(node (ref C60) (pin 2))
(node (ref R113) (pin 2))
(node (ref J90) (pin 1))
(node (ref C90) (pin 2))
(node (ref J110) (pin 1))
(node (ref R111) (pin 2))
(node (ref R13) (pin 2))
(node (ref C70) (pin 2))
(node (ref J70) (pin 1))
(node (ref C100) (pin 2))
(node (ref U10) (pin 2))
(node (ref C10) (pin 2))
(node (ref J1) (pin 14))
(node (ref J20) (pin 1))
(node (ref U20) (pin 4))
(node (ref C52) (pin 2))
(node (ref C80) (pin 2))
(node (ref J80) (pin 1))
(node (ref R11) (pin 2))
(node (ref D81) (pin 2))
(node (ref D80) (pin 2))
(node (ref J2) (pin 12))
(node (ref J30) (pin 1)))
(net (code 34) (name +5V)
(node (ref J1) (pin 12))
(node (ref J20) (pin 2))
(node (ref JP60) (pin 1))
(node (ref D10) (pin 2))
(node (ref J30) (pin 2))
(node (ref C52) (pin 1))
(node (ref U20) (pin 8))
(node (ref U10) (pin 4))
(node (ref R21) (pin 1))
(node (ref R20) (pin 1))
(node (ref J110) (pin 2))
(node (ref C21) (pin 1))
(node (ref R30) (pin 1))
(node (ref R40) (pin 1))
(node (ref J60) (pin 2))
(node (ref J11) (pin 12))
(node (ref C62) (pin 1))
(node (ref C31) (pin 1))
(node (ref C110) (pin 1))
(node (ref R51) (pin 1))
(node (ref J50) (pin 2))
(node (ref R50) (pin 1)))
(net (code 35) (name "Net-(J20-Pad3)")
(node (ref J20) (pin 3))
(node (ref U20) (pin 6))
(node (ref R21) (pin 2)))
(net (code 36) (name "Net-(J20-Pad4)")
(node (ref J20) (pin 4))
(node (ref U20) (pin 7))
(node (ref R20) (pin 2)))
(net (code 37) (name VDD)
(node (ref R60) (pin 1))
(node (ref R61) (pin 1))
(node (ref JP60) (pin 2)))
(net (code 38) (name "Net-(J60-Pad4)")
(node (ref J60) (pin 4))
(node (ref Q60) (pin 3))
(node (ref R61) (pin 2)))
(net (code 39) (name "Net-(J60-Pad3)")
(node (ref R60) (pin 2))
(node (ref Q60) (pin 6))
(node (ref J60) (pin 3)))
(net (code 40) (name "Net-(J50-Pad3)")
(node (ref R50) (pin 2))
(node (ref J50) (pin 3))
(node (ref Q50) (pin 6)))
(net (code 41) (name "Net-(J50-Pad4)")
(node (ref R51) (pin 2))
(node (ref Q50) (pin 3))
(node (ref J50) (pin 4)))
(net (code 42) (name "Net-(J30-Pad4)")
(node (ref Q40) (pin 3))
(node (ref R40) (pin 2))
(node (ref J30) (pin 4)))
(net (code 43) (name "Net-(J30-Pad3)")
(node (ref Q30) (pin 3))
(node (ref J30) (pin 3))
(node (ref R30) (pin 2)))
(net (code 44) (name "Net-(J1-Pad1)")
(node (ref J1) (pin 1)))
(net (code 45) (name "Net-(J1-Pad10)")
(node (ref J1) (pin 10)))
(net (code 46) (name "Net-(J1-Pad11)")
(node (ref J1) (pin 11)))
(net (code 47) (name "Net-(J1-Pad13)")
(node (ref J1) (pin 13)))
(net (code 48) (name "Net-(J1-Pad15)")
(node (ref J1) (pin 15)))
(net (code 49) (name "Net-(J1-Pad3)")
(node (ref J1) (pin 3)))
(net (code 50) (name /A0)
(node (ref R111) (pin 1))
(node (ref R110) (pin 2))
(node (ref J1) (pin 4)))
(net (code 51) (name /A1)
(node (ref J1) (pin 5))
(node (ref R113) (pin 1))
(node (ref R112) (pin 2)))
(net (code 52) (name "Net-(J1-Pad6)")
(node (ref J1) (pin 6)))
(net (code 53) (name "Net-(J1-Pad7)")
(node (ref J1) (pin 7)))
(net (code 54) (name /SDA3V3)
(node (ref U20) (pin ~))
(node (ref Q30) (pin 2))
(node (ref Q60) (pin 1))
(node (ref J1) (pin 8)))
(net (code 55) (name /SCL3V3)
(node (ref Q40) (pin 2))
(node (ref Q60) (pin 4))
(node (ref U20) (pin 2))
(node (ref J1) (pin 9)))
(net (code 56) (name "Net-(J2-Pad1)")
(node (ref J2) (pin 1)))