-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOpenDTU.net
994 lines (994 loc) · 52.3 KB
/
OpenDTU.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
(export (version "E")
(design
(source "/home/plewka/tdsfsd/OpenDTU/OpenDTU.kicad_sch")
(date "Sa 14 Jan 2023 13:42:48 CET")
(tool "Eeschema 6.0.2+dfsg-1")
(sheet (number "1") (name "/") (tstamps "/")
(title_block
(title "OpenDTU")
(company "Hereon")
(rev "C")
(date)
(source "OpenDTU.kicad_sch")
(comment (number "1") (value ""))
(comment (number "2") (value ""))
(comment (number "3") (value ""))
(comment (number "4") (value ""))
(comment (number "5") (value ""))
(comment (number "6") (value ""))
(comment (number "7") (value ""))
(comment (number "8") (value ""))
(comment (number "9") (value "")))))
(components
(comp (ref "C1")
(value "100n")
(footprint "Capacitor_SMD:C_0603_1608Metric")
(libsource (lib "Device") (part "C") (description "Unpolarized capacitor"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "00000000-0000-0000-0000-00005e225c49"))
(comp (ref "C2")
(value "C_Polarized_Small")
(footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T")
(libsource (lib "Device") (part "C_Polarized_Small") (description "Polarized capacitor, small symbol"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "2ec008c7-c61a-4768-832a-b039df0a67b6"))
(comp (ref "C3")
(value "100n")
(footprint "Capacitor_SMD:C_0603_1608Metric")
(libsource (lib "Device") (part "C") (description "Unpolarized capacitor"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "00000000-0000-0000-0000-00005e308bcb"))
(comp (ref "C4")
(value "22uF/6.3V/20%/X5R/C0603")
(footprint "Capacitor_SMD:C_0603_1608Metric")
(fields
(field (name "Fieldname 1") "Value 1")
(field (name "Fieldname2") "Value2")
(field (name "Fieldname3") "Value3"))
(libsource (lib "ESP32-EVB_Rev_D-rescue") (part "C-ESP32-EVB_Rev_D") (description ""))
(property (name "Fieldname 1") (value "Value 1"))
(property (name "Fieldname2") (value "Value2"))
(property (name "Fieldname3") (value "Value3"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "62a439f5-1c72-4dd6-a766-da5c6085f442"))
(comp (ref "C5")
(value "C_Polarized_Small")
(footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T")
(libsource (lib "Device") (part "C_Polarized_Small") (description "Polarized capacitor, small symbol"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "2d1d543d-ed16-4754-b208-c85d94b4f4f9"))
(comp (ref "C6")
(value "100n")
(footprint "Capacitor_SMD:C_0603_1608Metric")
(libsource (lib "Device") (part "C") (description "Unpolarized capacitor"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "abfbd326-e62a-410d-932d-b3a19b143f9f"))
(comp (ref "C7")
(value "22uF/6.3V/20%/X5R/C0603")
(footprint "Capacitor_SMD:C_0603_1608Metric")
(fields
(field (name "Fieldname 1") "Value 1")
(field (name "Fieldname2") "Value2")
(field (name "Fieldname3") "Value3"))
(libsource (lib "ESP32-EVB_Rev_D-rescue") (part "C-ESP32-EVB_Rev_D") (description ""))
(property (name "Fieldname 1") (value "Value 1"))
(property (name "Fieldname2") (value "Value2"))
(property (name "Fieldname3") (value "Value3"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "2fa328f9-13e0-45e7-ad26-9246d2a36e2b"))
(comp (ref "C8")
(value "C_Polarized")
(footprint "Capacitor_Tantalum_SMD:CP_EIA-7260-38_AVX-R")
(libsource (lib "Device") (part "C_Polarized") (description "Polarized capacitor"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "d4224ef9-c052-4718-8335-c0470cb870f4"))
(comp (ref "C9")
(value "C_Polarized_Small")
(footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T")
(libsource (lib "Device") (part "C_Polarized_Small") (description "Polarized capacitor, small symbol"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "3df9c05a-838a-4eb7-bffc-1956b6fe73ef"))
(comp (ref "C10")
(value "22uF/6.3V/20%/X5R/C0603")
(footprint "Capacitor_SMD:C_0603_1608Metric")
(fields
(field (name "Fieldname 1") "Value 1")
(field (name "Fieldname2") "Value2")
(field (name "Fieldname3") "Value3"))
(libsource (lib "ESP32-EVB_Rev_D-rescue") (part "C-ESP32-EVB_Rev_D") (description ""))
(property (name "Fieldname 1") (value "Value 1"))
(property (name "Fieldname2") (value "Value2"))
(property (name "Fieldname3") (value "Value3"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "4e287f9b-7cfe-4e65-a513-8ab6aebfcbb4"))
(comp (ref "D1")
(value "LED")
(footprint "LED_THT:LED_D3.0mm_Clear")
(libsource (lib "Device") (part "LED") (description "Light emitting diode"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "19713bdf-f135-4bb6-b6fd-df34c984ad16"))
(comp (ref "D2")
(value "LED")
(footprint "LED_THT:LED_D3.0mm_Clear")
(libsource (lib "Device") (part "LED") (description "Light emitting diode"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "00000000-0000-0000-0000-0000634a776c"))
(comp (ref "D3")
(value "US1J")
(footprint "Diode_SMD:D_SMA")
(datasheet "https://www.diodes.com/assets/Datasheets/ds16008.pdf")
(libsource (lib "Diode") (part "US1J") (description "600V, 1A, General Purpose Rectifier Diode, SMA(DO-214AC)"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "fc06514e-6725-44cb-b09b-364c6739116a"))
(comp (ref "D4")
(value "LED")
(footprint "LED_THT:LED_D3.0mm_Clear")
(libsource (lib "Device") (part "LED") (description "Light emitting diode"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "2c8b1a7a-111a-41a7-b837-a1f4012c4e65"))
(comp (ref "FA1")
(value "Fuse")
(footprint "Fuse:Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed")
(libsource (lib "Device") (part "Fuse") (description "Fuse"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "00000000-0000-0000-0000-00005e6c8f5d"))
(comp (ref "FA2")
(value "Fuse")
(footprint "Fuse:Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed")
(libsource (lib "Device") (part "Fuse") (description "Fuse"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "aa2ae93f-36b8-4ae2-92ca-fcc167330b32"))
(comp (ref "L1")
(value "FB0805/600R/2A")
(footprint "Inductor_SMD:L_0805_2012Metric")
(fields
(field (name "Fieldname 1") "Value 1")
(field (name "Fieldname2") "Value2")
(field (name "Fieldname3") "Value3"))
(libsource (lib "ESP32-EVB_Rev_D-rescue") (part "L-ESP32-EVB_Rev_D") (description ""))
(property (name "Fieldname 1") (value "Value 1"))
(property (name "Fieldname2") (value "Value2"))
(property (name "Fieldname3") (value "Value3"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "95812904-b8b3-4f73-9ad6-8e1db8648bfd"))
(comp (ref "L2")
(value "FB0805/600R/2A")
(footprint "Inductor_SMD:L_0805_2012Metric")
(fields
(field (name "Fieldname 1") "Value 1")
(field (name "Fieldname2") "Value2")
(field (name "Fieldname3") "Value3"))
(libsource (lib "ESP32-EVB_Rev_D-rescue") (part "L-ESP32-EVB_Rev_D") (description ""))
(property (name "Fieldname 1") (value "Value 1"))
(property (name "Fieldname2") (value "Value2"))
(property (name "Fieldname3") (value "Value3"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "6d50b7fe-6b69-4e14-a19e-8f335294274a"))
(comp (ref "L3")
(value "FB0805/600R/2A")
(footprint "Inductor_SMD:L_0805_2012Metric")
(fields
(field (name "Fieldname 1") "Value 1")
(field (name "Fieldname2") "Value2")
(field (name "Fieldname3") "Value3"))
(libsource (lib "ESP32-EVB_Rev_D-rescue") (part "L-ESP32-EVB_Rev_D") (description ""))
(property (name "Fieldname 1") (value "Value 1"))
(property (name "Fieldname2") (value "Value2"))
(property (name "Fieldname3") (value "Value3"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "4f4f84ad-c50b-4f44-a75c-f480bd6230db"))
(comp (ref "L4")
(value "FB0805/600R/2A")
(footprint "Inductor_SMD:L_0805_2012Metric")
(fields
(field (name "Fieldname 1") "Value 1")
(field (name "Fieldname2") "Value2")
(field (name "Fieldname3") "Value3"))
(libsource (lib "ESP32-EVB_Rev_D-rescue") (part "L-ESP32-EVB_Rev_D") (description ""))
(property (name "Fieldname 1") (value "Value 1"))
(property (name "Fieldname2") (value "Value2"))
(property (name "Fieldname3") (value "Value3"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "8aac0275-3308-464a-9cc6-e0ad6ebfce09"))
(comp (ref "PS1")
(value "HLK-PM03")
(footprint "Converter_ACDC:Converter_ACDC_HiLink_HLK-PMxx")
(datasheet "http://www.hlktech.net/product_detail.php?ProId=54")
(libsource (lib "Converter_ACDC") (part "HLK-PM01") (description "Compact AC/DC board mount power module 3W 5V"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "00000000-0000-0000-0000-0000632212e4"))
(comp (ref "Q1")
(value "Q_NPN_BEC")
(footprint "Package_TO_SOT_SMD:SOT-23")
(libsource (lib "Device") (part "Q_NPN_BEC") (description "NPN transistor, base/emitter/collector"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "7940c252-0216-44db-9fb6-bc923b3b1234"))
(comp (ref "R1")
(value "10k0")
(footprint "Resistor_SMD:R_0603_1608Metric")
(libsource (lib "Device") (part "R") (description "Resistor"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "8cb1b586-be84-4dbf-bfd5-da04a2f26213"))
(comp (ref "R2")
(value "10k0")
(footprint "Resistor_SMD:R_0603_1608Metric")
(libsource (lib "Device") (part "R") (description "Resistor"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "dd44eed0-a659-4bc8-8185-bb7e34481247"))
(comp (ref "R3")
(value "10k0")
(footprint "Resistor_SMD:R_0603_1608Metric")
(libsource (lib "Device") (part "R") (description "Resistor"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "5ce8dc1b-85d9-4c6f-8bbd-2ff8dc1b6d74"))
(comp (ref "R4")
(value "1k00")
(footprint "Resistor_SMD:R_0603_1608Metric")
(libsource (lib "Device") (part "R") (description "Resistor"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "d763ecff-32d1-43f3-9d58-344b4ea10dab"))
(comp (ref "R5")
(value "1k00")
(footprint "Resistor_SMD:R_0603_1608Metric")
(libsource (lib "Device") (part "R") (description "Resistor"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "00000000-0000-0000-0000-0000634a7766"))
(comp (ref "R6")
(value "1k/R0603")
(footprint "Resistor_SMD:R_0603_1608Metric")
(fields
(field (name "Fieldname 1") "Value 1")
(field (name "Fieldname2") "Value2")
(field (name "Fieldname3") "Value3"))
(libsource (lib "ESP32-EVB_Rev_D-rescue") (part "R-ESP32-EVB_Rev_D") (description ""))
(property (name "Fieldname 1") (value "Value 1"))
(property (name "Fieldname2") (value "Value2"))
(property (name "Fieldname3") (value "Value3"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "a20d4354-102a-4e31-a02e-b45766dd3b6b"))
(comp (ref "R7")
(value "560R")
(footprint "Resistor_SMD:R_0603_1608Metric")
(libsource (lib "Device") (part "R") (description "Resistor"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "38bc7b83-5f6a-42fd-806c-6861c1c9cfbe"))
(comp (ref "R8")
(value "1k00")
(footprint "Resistor_SMD:R_0603_1608Metric")
(libsource (lib "Device") (part "R") (description "Resistor"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "8b534bf4-ef5a-4869-b159-70d550762d19"))
(comp (ref "REL1")
(value "SRD-03")
(footprint "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C")
(datasheet "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf")
(libsource (lib "Relay") (part "SANYOU_SRD_Form_C") (description "Sanyo SRD relay, Single Pole Miniature Power Relay,"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "0203bcfc-aafc-4b71-a9ca-59acef9ad030"))
(comp (ref "RV1")
(value "Varistor")
(footprint "Varistor:RV_Disc_D12mm_W4.2mm_P7.5mm")
(libsource (lib "Device") (part "Varistor") (description "Voltage dependent resistor"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "669c71e8-ad25-4983-ba43-63408132dcb1"))
(comp (ref "ST_EXT1")
(value "BH10S")
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical")
(fields
(field (name "Fieldname 1") "Value 1")
(field (name "Fieldname2") "Value2")
(field (name "Fieldname3") "Value3"))
(libsource (lib "ESP32-EVB_Rev_D-rescue") (part "BH10S-ESP32-EVB_Rev_D") (description ""))
(property (name "Fieldname 1") (value "Value 1"))
(property (name "Fieldname2") (value "Value2"))
(property (name "Fieldname3") (value "Value3"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "15a2e22f-6f3e-4052-a278-f7cdc8a43ee9"))
(comp (ref "ST_I2C1")
(value "Conn_01x05")
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x05_P2.54mm_Vertical")
(libsource (lib "Connector_Generic") (part "Conn_01x05") (description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "e9d130dd-4dc1-46f6-8226-29214da25242"))
(comp (ref "ST_IR1")
(value "Conn_01x04")
(footprint "TerminalBlock_WAGO:TerminalBlock_WAGO_236-404_1x04_P5.00mm_45Degree")
(libsource (lib "Connector_Generic") (part "Conn_01x04") (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "c13d63fa-324d-42ad-b6f2-f732928a22f6"))
(comp (ref "ST_Line1")
(value "Screw_Terminal_01x03")
(footprint "TerminalBlock_WAGO:TerminalBlock_WAGO_236-403_1x03_P5.00mm_45Degree")
(libsource (lib "Connector") (part "Screw_Terminal_01x03") (description "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "00000000-0000-0000-0000-0000632d63af"))
(comp (ref "ST_nRF1")
(value "nRF24L01+")
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical")
(libsource (lib "hereon") (part "nRF24L01+") (description ""))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "9087d73a-2a22-4a51-9437-c9a1526af696"))
(comp (ref "ST_OW1")
(value "Screw_Terminal_01x03")
(footprint "TerminalBlock_WAGO:TerminalBlock_WAGO_236-403_1x03_P5.00mm_45Degree")
(libsource (lib "Connector") (part "Screw_Terminal_01x03") (description "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "1db520c6-4784-46d2-a4de-f91b78b07c3b"))
(comp (ref "ST_PRG1")
(value "Conn_01x05")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical")
(libsource (lib "Connector_Generic") (part "Conn_01x05") (description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "027b9a0a-ef95-4bda-a3f9-a17286a9f66a"))
(comp (ref "ST_REL1")
(value "Screw_Terminal_01x03")
(footprint "TerminalBlock_WAGO:TerminalBlock_WAGO_236-403_1x03_P5.00mm_45Degree")
(libsource (lib "Connector") (part "Screw_Terminal_01x03") (description "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "12ab19a8-98be-4fe1-9995-2d15a662bfa5"))
(comp (ref "ST_SI1")
(value "Si24R1")
(footprint "Connector_PinSocket_1.27mm:PinSocket_1x08_P1.27mm_Vertical")
(libsource (lib "hereon") (part "Si24R1") (description ""))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "41a6236a-d5db-4942-9b18-9075a779488e"))
(comp (ref "U1")
(value "DS2485")
(footprint "Package_DFN_QFN:DFN-6-1EP_3x3mm_P0.95mm_EP1.7x2.6mm")
(libsource (lib "hereon") (part "DS2485") (description ""))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "edfd22dc-c8c2-4b37-8165-86c37b339b3f" "ed19b448-a193-4694-a60c-c9a50922d4d2"))
(comp (ref "U2")
(value "ESP-WROOM-32")
(footprint "Espressif:ESP32-WROOM-32E")
(fields
(field (name "Fieldname 1") "Value 1")
(field (name "Fieldname2") "Value2")
(field (name "Fieldname3") "Value3"))
(libsource (lib "ESP32-EVB_Rev_D-rescue") (part "ESP-WROOM-32-ESP32-EVB_Rev_D") (description ""))
(property (name "Fieldname 1") (value "Value 1"))
(property (name "Fieldname2") (value "Value2"))
(property (name "Fieldname3") (value "Value3"))
(property (name "Sheetname") (value ""))
(property (name "Sheetfile") (value "OpenDTU.kicad_sch"))
(sheetpath (names "/") (tstamps "/"))
(tstamps "afe4a1f3-fab4-4042-8fa9-f575cef3491a")))
(libparts
(libpart (lib "Connector") (part "Screw_Terminal_01x03")
(description "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs "~")
(footprints
(fp "TerminalBlock*:*"))
(fields
(field (name "Reference") "J")
(field (name "Value") "Screw_Terminal_01x03")
(field (name "Datasheet") "~"))
(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"))))
(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")
(field (name "Datasheet") "~"))
(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_01x05")
(description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs "~")
(footprints
(fp "Connector*:*_1x??_*"))
(fields
(field (name "Reference") "J")
(field (name "Value") "Conn_01x05")
(field (name "Datasheet") "~"))
(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"))))
(libpart (lib "Converter_ACDC") (part "HLK-PM01")
(description "Compact AC/DC board mount power module 3W 5V")
(docs "http://www.hlktech.net/product_detail.php?ProId=54")
(footprints
(fp "Converter*ACDC*HiLink*HLK?PM*"))
(fields
(field (name "Reference") "PS")
(field (name "Value") "HLK-PM01")
(field (name "Footprint") "Converter_ACDC:Converter_ACDC_HiLink_HLK-PMxx")
(field (name "Datasheet") "http://www.hlktech.net/product_detail.php?ProId=54"))
(pins
(pin (num "1") (name "AC/L") (type "power_in"))
(pin (num "2") (name "AC/N") (type "power_in"))
(pin (num "3") (name "-Vout") (type "power_out"))
(pin (num "4") (name "+Vout") (type "power_out"))))
(libpart (lib "Device") (part "C")
(description "Unpolarized capacitor")
(docs "~")
(footprints
(fp "C_*"))
(fields
(field (name "Reference") "C")
(field (name "Value") "C")
(field (name "Datasheet") "~"))
(pins
(pin (num "1") (name "") (type "passive"))
(pin (num "2") (name "") (type "passive"))))
(libpart (lib "Device") (part "C_Polarized")
(description "Polarized capacitor")
(docs "~")
(footprints
(fp "CP_*"))
(fields
(field (name "Reference") "C")
(field (name "Value") "C_Polarized")
(field (name "Datasheet") "~"))
(pins
(pin (num "1") (name "") (type "passive"))
(pin (num "2") (name "") (type "passive"))))
(libpart (lib "Device") (part "C_Polarized_Small")
(description "Polarized capacitor, small symbol")
(docs "~")
(footprints
(fp "CP_*"))
(fields
(field (name "Reference") "C")
(field (name "Value") "C_Polarized_Small")
(field (name "Datasheet") "~"))
(pins
(pin (num "1") (name "") (type "passive"))
(pin (num "2") (name "") (type "passive"))))
(libpart (lib "Device") (part "Fuse")
(description "Fuse")
(docs "~")
(footprints
(fp "*Fuse*"))
(fields
(field (name "Reference") "F")
(field (name "Value") "Fuse")
(field (name "Datasheet") "~"))
(pins
(pin (num "1") (name "") (type "passive"))
(pin (num "2") (name "") (type "passive"))))
(libpart (lib "Device") (part "LED")
(description "Light emitting diode")
(docs "~")
(footprints
(fp "LED*")
(fp "LED_SMD:*")
(fp "LED_THT:*"))
(fields
(field (name "Reference") "D")
(field (name "Value") "LED")
(field (name "Datasheet") "~"))
(pins
(pin (num "1") (name "K") (type "passive"))
(pin (num "2") (name "A") (type "passive"))))
(libpart (lib "Device") (part "Q_NPN_BEC")
(description "NPN transistor, base/emitter/collector")
(docs "~")
(fields
(field (name "Reference") "Q")
(field (name "Value") "Q_NPN_BEC")
(field (name "Datasheet") "~"))
(pins
(pin (num "1") (name "B") (type "input"))
(pin (num "2") (name "E") (type "passive"))
(pin (num "3") (name "C") (type "passive"))))
(libpart (lib "Device") (part "R")
(description "Resistor")
(docs "~")
(footprints
(fp "R_*"))
(fields
(field (name "Reference") "R")
(field (name "Value") "R")
(field (name "Datasheet") "~"))
(pins
(pin (num "1") (name "") (type "passive"))
(pin (num "2") (name "") (type "passive"))))
(libpart (lib "Device") (part "Varistor")
(description "Voltage dependent resistor")
(docs "~")
(footprints
(fp "RV_*")
(fp "Varistor*"))
(fields
(field (name "Reference") "RV")
(field (name "Value") "Varistor")
(field (name "Datasheet") "~"))
(pins
(pin (num "1") (name "") (type "passive"))
(pin (num "2") (name "") (type "passive"))))
(libpart (lib "Diode") (part "US1J")
(description "600V, 1A, General Purpose Rectifier Diode, SMA(DO-214AC)")
(docs "https://www.diodes.com/assets/Datasheets/ds16008.pdf")
(footprints
(fp "D*SMA*"))
(fields
(field (name "Reference") "D")
(field (name "Value") "US1J")
(field (name "Footprint") "Diode_SMD:D_SMA")
(field (name "Datasheet") "https://www.diodes.com/assets/Datasheets/ds16008.pdf"))
(pins
(pin (num "1") (name "K") (type "passive"))
(pin (num "2") (name "A") (type "passive"))))
(libpart (lib "ESP32-EVB_Rev_D-rescue") (part "BH10S-ESP32-EVB_Rev_D")
(fields
(field (name "Reference") "CON")
(field (name "Value") "BH10S-ESP32-EVB_Rev_D"))
(pins
(pin (num "1") (name "1") (type "passive"))
(pin (num "2") (name "2") (type "passive"))
(pin (num "3") (name "3") (type "passive"))
(pin (num "4") (name "4") (type "passive"))
(pin (num "5") (name "5") (type "passive"))
(pin (num "6") (name "6") (type "passive"))
(pin (num "7") (name "7") (type "passive"))
(pin (num "8") (name "8") (type "passive"))
(pin (num "9") (name "9") (type "passive"))
(pin (num "10") (name "10") (type "passive"))))
(libpart (lib "ESP32-EVB_Rev_D-rescue") (part "C-ESP32-EVB_Rev_D")
(footprints
(fp "C?")
(fp "C_????_*")
(fp "C_????")
(fp "SMD*_c")
(fp "Capacitor*"))
(fields
(field (name "Reference") "C")
(field (name "Value") "C-ESP32-EVB_Rev_D"))
(pins
(pin (num "1") (name "") (type "passive"))
(pin (num "2") (name "") (type "passive"))))
(libpart (lib "ESP32-EVB_Rev_D-rescue") (part "ESP-WROOM-32-ESP32-EVB_Rev_D")
(fields
(field (name "Reference") "U")
(field (name "Value") "ESP-WROOM-32-ESP32-EVB_Rev_D"))
(pins
(pin (num "1") (name "GND") (type "power_in"))
(pin (num "2") (name "3V3") (type "power_in"))
(pin (num "3") (name "EN") (type "input"))
(pin (num "4") (name "GPI36/SENSOR_VP/ADC_H/ADC1_CH0/RTC_GPIO0") (type "input"))
(pin (num "5") (name "GPI39/SENSOR_VN/ADC1_CH3/ADC_H/RTC_GPIO3") (type "input"))
(pin (num "6") (name "GPI34/ADC1_CH6/RTC_GPIO4") (type "input"))
(pin (num "7") (name "GPI35/ADC1_CH7/RTC_GPIO5") (type "input"))
(pin (num "8") (name "GPIO32/XTAL_32K_P/ADC1_CH4/TOUCH9/RTC_GPIO9") (type "bidirectional"))
(pin (num "9") (name "GPIO33/XTAL_32K_N/ADC1_CH5/TOUCH8/RTC_GPIO8") (type "bidirectional"))
(pin (num "10") (name "GPIO25/DAC_1/ADC2_CH8/RTC_GPIO6/EMAC_RXD0") (type "bidirectional"))
(pin (num "11") (name "GPIO26/DAC_2/ADC2_CH9/RTC_GPIO7/EMAC_RXD1") (type "bidirectional"))
(pin (num "12") (name "GPIO27/ADC2_CH7/TOUCH7/RTC_GPIO17/EMAC_RX_DV") (type "bidirectional"))
(pin (num "13") (name "GPIO14/ADC2_CH6/TOUCH6/RTC_GPIO16/MTMS/HSPICLK/HS2_CLK/SD_CLK/EMAC_TXD2") (type "bidirectional"))
(pin (num "14") (name "GPIO12/ADC2_CH5/TOUCH5/RTC_GPIO15/MTDI/HSPIQ/HS2_DATA2/SD_DATA2/EMAC_TXD3") (type "bidirectional"))
(pin (num "15") (name "GND") (type "power_in"))
(pin (num "16") (name "GPIO13/ADC2_CH4/TOUCH4/RTC_GPIO14/MTCK/HSPID/HS2_DATA3/SD_DATA3/EMAC_RX_ER") (type "bidirectional"))
(pin (num "17") (name "GPIO9/SD_DATA2/SPIHD/HS1_DATA2/U1RXD") (type "bidirectional"))
(pin (num "18") (name "GPIO10/SD_DATA3/SPIWP/HS1_DATA3/U1TXD") (type "bidirectional"))
(pin (num "19") (name "GPIO11/SD_CMD/SPICS0/HS1_CMD/U1RTS") (type "bidirectional"))
(pin (num "20") (name "GPIO6/SD_CLK/SPICLK/HS1_CLK/U1CTS") (type "bidirectional"))
(pin (num "21") (name "GPIO7/SD_DATA0/SPIQ/HS1_DATA0/U2RTS") (type "bidirectional"))
(pin (num "22") (name "GPIO8/SD_DATA1/SPID/HS1_DATA1/U2CTS") (type "bidirectional"))
(pin (num "23") (name "GPIO15/ADC2_CH3/TOUCH3/MTDO/HSPICS0/RTC_GPIO13/HS2_CMD/SD_CMD/EMAC_RXD3") (type "bidirectional"))
(pin (num "24") (name "GPIO2/ADC2_CH2/TOUCH2/RTC_GPIO12/HSPIWP/HS2_DATA0/SD_DATA0") (type "bidirectional"))
(pin (num "25") (name "GPIO0/ADC2_CH1/TOUCH1/RTC_GPIO11/CLK_OUT1/EMAC_TX_CLK") (type "bidirectional"))
(pin (num "26") (name "GPIO4/ADC2_CH0/TOUCH0/RTC_GPIO10/HSPIHD/HS2_DATA1/SD_DATA1/EMAC_TX_ER") (type "bidirectional"))
(pin (num "27") (name "GPIO16/HS1_DATA4/U2RXD/EMAC_CLK_OUT") (type "bidirectional"))
(pin (num "28") (name "GPIO17/HS1_DATA5/U2TXD/EMAC_CLK_OUT_180") (type "bidirectional"))
(pin (num "29") (name "GPIO5/VSPICS0/HS1_DATA6/EMAC_RX_CLK") (type "bidirectional"))
(pin (num "30") (name "GPIO18/VSPICLK/HS1_DATA7") (type "bidirectional"))
(pin (num "31") (name "GPIO19/VSPIQ/U0CTS/EMAC_TXD0") (type "bidirectional"))
(pin (num "32") (name "NC") (type "no_connect"))
(pin (num "33") (name "GPIO21/VSPIHD/EMAC_TX_EN") (type "bidirectional"))
(pin (num "34") (name "GPIO3/U0RXD/CLK_OUT2") (type "bidirectional"))
(pin (num "35") (name "GPIO1/U0TXD/CLK_OUT3/EMAC_RXD2") (type "bidirectional"))
(pin (num "36") (name "GPIO22/VSPIWP/U0RTS/EMAC_TXD1") (type "bidirectional"))
(pin (num "37") (name "GPIO23/VSPID/HS1_STROBE") (type "bidirectional"))
(pin (num "38") (name "GND") (type "power_in"))
(pin (num "39") (name "THERMAL_PAD") (type "power_in"))))
(libpart (lib "ESP32-EVB_Rev_D-rescue") (part "L-ESP32-EVB_Rev_D")
(fields
(field (name "Reference") "L")
(field (name "Value") "L-ESP32-EVB_Rev_D"))
(pins
(pin (num "1") (name "1") (type "passive"))
(pin (num "2") (name "2") (type "passive"))))
(libpart (lib "ESP32-EVB_Rev_D-rescue") (part "R-ESP32-EVB_Rev_D")
(footprints
(fp "R_*")
(fp "Resistor_*"))
(fields
(field (name "Reference") "R")
(field (name "Value") "R-ESP32-EVB_Rev_D"))
(pins
(pin (num "1") (name "") (type "passive"))
(pin (num "2") (name "") (type "passive"))))
(libpart (lib "Relay") (part "SANYOU_SRD_Form_C")
(description "Sanyo SRD relay, Single Pole Miniature Power Relay,")
(docs "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf")
(footprints
(fp "Relay*SPDT*SANYOU*SRD*Series*Form*C*"))
(fields
(field (name "Reference") "K")
(field (name "Value") "SANYOU_SRD_Form_C")
(field (name "Footprint") "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C")
(field (name "Datasheet") "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf"))
(pins
(pin (num "1") (name "") (type "passive"))
(pin (num "2") (name "") (type "passive"))
(pin (num "3") (name "") (type "passive"))
(pin (num "4") (name "") (type "passive"))
(pin (num "5") (name "") (type "passive"))))
(libpart (lib "hereon") (part "DS2485")
(fields
(field (name "Reference") "U")
(field (name "Value") "DS2485"))
(pins
(pin (num "1") (name "GPIO") (type "bidirectional"))
(pin (num "2") (name "OW") (type "bidirectional"))
(pin (num "3") (name "GND") (type "power_in"))
(pin (num "4") (name "SCL") (type "bidirectional"))
(pin (num "5") (name "SDA") (type "bidirectional"))
(pin (num "6") (name "VCC") (type "power_in"))))
(libpart (lib "hereon") (part "Si24R1")
(fields
(field (name "Reference") "ST_SI1")
(field (name "Value") "Si24R1")
(field (name "Footprint") "Connector_PinSocket_1.27mm:PinSocket_1x08_P1.27mm_Vertical"))
(pins
(pin (num "1") (name "GND") (type "power_in"))
(pin (num "2") (name "+3V3") (type "power_in"))
(pin (num "3") (name "CE") (type "input"))
(pin (num "4") (name "CSn") (type "input"))
(pin (num "5") (name "SCK") (type "input"))
(pin (num "6") (name "MOSI") (type "input"))
(pin (num "7") (name "MISO") (type "output"))
(pin (num "8") (name "IRQ") (type "output"))))
(libpart (lib "hereon") (part "nRF24L01+")
(fields
(field (name "Reference") "U")
(field (name "Value") "nRF24L01+"))
(pins
(pin (num "1") (name "GND") (type "power_in"))
(pin (num "2") (name "+3V3") (type "power_in"))
(pin (num "3") (name "CE") (type "input"))
(pin (num "4") (name "CSn") (type "input"))
(pin (num "5") (name "SCK") (type "input"))
(pin (num "6") (name "MOSI") (type "input"))
(pin (num "7") (name "MISO") (type "output"))
(pin (num "8") (name "IRQ") (type "output")))))
(libraries
(library (logical "Connector")
(uri "/usr/share/kicad/symbols//Connector.kicad_sym"))
(library (logical "Connector_Generic")
(uri "/usr/share/kicad/symbols//Connector_Generic.kicad_sym"))
(library (logical "Converter_ACDC")
(uri "/usr/share/kicad/symbols//Converter_ACDC.kicad_sym"))
(library (logical "Device")
(uri "/usr/share/kicad/symbols//Device.kicad_sym"))
(library (logical "Diode")
(uri "/usr/share/kicad/symbols//Diode.kicad_sym"))
(library (logical "ESP32-EVB_Rev_D-rescue")
(uri "/home/plewka/tdsfsd/OpenDTU/ESP32-EVB_Rev_D-rescue.lib"))
(library (logical "Relay")
(uri "/usr/share/kicad/symbols//Relay.kicad_sym"))
(library (logical "hereon")
(uri "/home/plewka/.local/share/kicad/6.0/symbols/hereon.kicad_sym")))
(nets
(net (code "1") (name "+3V3")
(node (ref "C1") (pin "1") (pintype "passive"))
(node (ref "C2") (pin "1") (pintype "passive"))
(node (ref "C3") (pin "1") (pintype "passive"))
(node (ref "C9") (pin "1") (pintype "passive"))
(node (ref "D3") (pin "1") (pinfunction "K") (pintype "passive"))
(node (ref "L1") (pin "1") (pinfunction "1") (pintype "passive"))
(node (ref "L2") (pin "1") (pinfunction "1") (pintype "passive"))
(node (ref "L3") (pin "1") (pinfunction "1") (pintype "passive"))
(node (ref "L4") (pin "1") (pinfunction "1") (pintype "passive"))
(node (ref "PS1") (pin "4") (pinfunction "+Vout") (pintype "power_out"))
(node (ref "R1") (pin "1") (pintype "passive"))
(node (ref "R2") (pin "1") (pintype "passive"))
(node (ref "R3") (pin "1") (pintype "passive"))
(node (ref "R5") (pin "1") (pintype "passive"))
(node (ref "R6") (pin "1") (pintype "passive"))
(node (ref "REL1") (pin "2") (pintype "passive"))
(node (ref "ST_I2C1") (pin "1") (pinfunction "Pin_1") (pintype "passive"))
(node (ref "ST_PRG1") (pin "3") (pinfunction "Pin_3") (pintype "passive"))
(node (ref "U1") (pin "6") (pinfunction "VCC") (pintype "power_in"))
(node (ref "U2") (pin "2") (pinfunction "3V3") (pintype "power_in")))
(net (code "2") (name "/EXT_DIR")
(node (ref "ST_EXT1") (pin "6") (pinfunction "6") (pintype "passive"))
(node (ref "U2") (pin "8") (pinfunction "GPIO32/XTAL_32K_P/ADC1_CH4/TOUCH9/RTC_GPIO9") (pintype "bidirectional")))
(net (code "3") (name "/EXT_Rx")
(node (ref "ST_EXT1") (pin "4") (pinfunction "4") (pintype "passive"))
(node (ref "U2") (pin "11") (pinfunction "GPIO26/DAC_2/ADC2_CH9/RTC_GPIO7/EMAC_RXD1") (pintype "bidirectional")))
(net (code "4") (name "/EXT_Tx")
(node (ref "ST_EXT1") (pin "3") (pinfunction "3") (pintype "passive"))
(node (ref "U2") (pin "12") (pinfunction "GPIO27/ADC2_CH7/TOUCH7/RTC_GPIO17/EMAC_RX_DV") (pintype "bidirectional")))
(net (code "5") (name "/Ext_+3V3")
(node (ref "C4") (pin "2") (pintype "passive"))
(node (ref "L1") (pin "2") (pinfunction "2") (pintype "passive"))
(node (ref "ST_EXT1") (pin "1") (pinfunction "1") (pintype "passive")))
(net (code "6") (name "/FL")
(node (ref "FA1") (pin "2") (pintype "passive"))
(node (ref "PS1") (pin "1") (pinfunction "AC/L") (pintype "power_in"))
(node (ref "RV1") (pin "1") (pintype "passive")))
(net (code "7") (name "/FSL")
(node (ref "FA2") (pin "2") (pintype "passive"))
(node (ref "REL1") (pin "1") (pintype "passive")))
(net (code "8") (name "/GPIO")
(node (ref "R8") (pin "1") (pintype "passive"))
(node (ref "U1") (pin "1") (pinfunction "GPIO") (pintype "bidirectional")))
(net (code "9") (name "/I2C_IRQ")
(node (ref "R3") (pin "2") (pintype "passive"))
(node (ref "ST_I2C1") (pin "5") (pinfunction "Pin_5") (pintype "passive")))
(net (code "10") (name "/I2C_SCL")
(node (ref "R1") (pin "2") (pintype "passive"))
(node (ref "ST_I2C1") (pin "3") (pinfunction "Pin_3") (pintype "passive"))
(node (ref "U1") (pin "4") (pinfunction "SCL") (pintype "bidirectional"))
(node (ref "U2") (pin "13") (pinfunction "GPIO14/ADC2_CH6/TOUCH6/RTC_GPIO16/MTMS/HSPICLK/HS2_CLK/SD_CLK/EMAC_TXD2") (pintype "bidirectional")))
(net (code "11") (name "/I2C_SDA")
(node (ref "R2") (pin "2") (pintype "passive"))
(node (ref "ST_I2C1") (pin "4") (pinfunction "Pin_4") (pintype "passive"))
(node (ref "U1") (pin "5") (pinfunction "SDA") (pintype "bidirectional"))
(node (ref "U2") (pin "16") (pinfunction "GPIO13/ADC2_CH4/TOUCH4/RTC_GPIO14/MTCK/HSPID/HS2_DATA3/SD_DATA3/EMAC_RX_ER") (pintype "bidirectional")))
(net (code "12") (name "/IR_+3V3")
(node (ref "C7") (pin "1") (pintype "passive"))
(node (ref "L2") (pin "2") (pinfunction "2") (pintype "passive"))
(node (ref "ST_IR1") (pin "4") (pinfunction "Pin_4") (pintype "passive")))
(net (code "13") (name "/IR_Rx")
(node (ref "ST_IR1") (pin "2") (pinfunction "Pin_2") (pintype "passive"))
(node (ref "U2") (pin "5") (pinfunction "GPI39/SENSOR_VN/ADC1_CH3/ADC_H/RTC_GPIO3") (pintype "input")))
(net (code "14") (name "/IR_Tx")
(node (ref "ST_IR1") (pin "1") (pinfunction "Pin_1") (pintype "passive"))
(node (ref "U2") (pin "14") (pinfunction "GPIO12/ADC2_CH5/TOUCH5/RTC_GPIO15/MTDI/HSPIQ/HS2_DATA2/SD_DATA2/EMAC_TXD3") (pintype "bidirectional")))
(net (code "15") (name "/L")
(node (ref "FA1") (pin "1") (pintype "passive"))
(node (ref "ST_Line1") (pin "1") (pinfunction "Pin_1") (pintype "passive")))
(net (code "16") (name "/LED")
(node (ref "R4") (pin "1") (pintype "passive"))
(node (ref "U2") (pin "10") (pinfunction "GPIO25/DAC_1/ADC2_CH8/RTC_GPIO6/EMAC_RXD0") (pintype "bidirectional")))
(net (code "17") (name "/N")
(node (ref "PS1") (pin "2") (pinfunction "AC/N") (pintype "power_in"))
(node (ref "RV1") (pin "2") (pintype "passive"))
(node (ref "ST_Line1") (pin "2") (pinfunction "Pin_2") (pintype "passive")))
(net (code "18") (name "/OW")
(node (ref "ST_OW1") (pin "2") (pinfunction "Pin_2") (pintype "passive"))
(node (ref "U1") (pin "2") (pinfunction "OW") (pintype "bidirectional")))
(net (code "19") (name "/OW_+3V3")
(node (ref "C10") (pin "2") (pintype "passive"))
(node (ref "L4") (pin "2") (pinfunction "2") (pintype "passive"))
(node (ref "ST_OW1") (pin "3") (pinfunction "Pin_3") (pintype "passive")))
(net (code "20") (name "/PE")
(node (ref "ST_Line1") (pin "3") (pinfunction "Pin_3") (pintype "passive")))
(net (code "21") (name "/PRG")
(node (ref "ST_PRG1") (pin "2") (pinfunction "Pin_2") (pintype "passive"))
(node (ref "U2") (pin "25") (pinfunction "GPIO0/ADC2_CH1/TOUCH1/RTC_GPIO11/CLK_OUT1/EMAC_TX_CLK") (pintype "bidirectional")))
(net (code "22") (name "/PRG_Rx")
(node (ref "ST_PRG1") (pin "4") (pinfunction "Pin_4") (pintype "passive"))
(node (ref "U2") (pin "34") (pinfunction "GPIO3/U0RXD/CLK_OUT2") (pintype "bidirectional")))
(net (code "23") (name "/PRG_Tx")
(node (ref "ST_PRG1") (pin "5") (pinfunction "Pin_5") (pintype "passive"))
(node (ref "U2") (pin "35") (pinfunction "GPIO1/U0TXD/CLK_OUT3/EMAC_RXD2") (pintype "bidirectional")))
(net (code "24") (name "/Radio_+3V3")
(node (ref "C5") (pin "1") (pintype "passive"))
(node (ref "C6") (pin "1") (pintype "passive"))
(node (ref "C8") (pin "1") (pintype "passive"))
(node (ref "L3") (pin "2") (pinfunction "2") (pintype "passive"))
(node (ref "ST_SI1") (pin "2") (pinfunction "+3V3") (pintype "power_in"))
(node (ref "ST_nRF1") (pin "2") (pinfunction "+3V3") (pintype "power_in")))
(net (code "25") (name "/Relais")
(node (ref "R7") (pin "2") (pintype "passive"))
(node (ref "U2") (pin "9") (pinfunction "GPIO33/XTAL_32K_N/ADC1_CH5/TOUCH8/RTC_GPIO8") (pintype "bidirectional")))
(net (code "26") (name "/SI_CE")
(node (ref "ST_SI1") (pin "3") (pinfunction "CE") (pintype "input"))
(node (ref "ST_nRF1") (pin "3") (pinfunction "CE") (pintype "input"))
(node (ref "U2") (pin "26") (pinfunction "GPIO4/ADC2_CH0/TOUCH0/RTC_GPIO10/HSPIHD/HS2_DATA1/SD_DATA1/EMAC_TX_ER") (pintype "bidirectional")))
(net (code "27") (name "/SI_CS")
(node (ref "ST_SI1") (pin "4") (pinfunction "CSn") (pintype "input"))
(node (ref "ST_nRF1") (pin "4") (pinfunction "CSn") (pintype "input"))
(node (ref "U2") (pin "29") (pinfunction "GPIO5/VSPICS0/HS1_DATA6/EMAC_RX_CLK") (pintype "bidirectional")))
(net (code "28") (name "/SI_IRQ")
(node (ref "ST_SI1") (pin "8") (pinfunction "IRQ") (pintype "output"))
(node (ref "ST_nRF1") (pin "8") (pinfunction "IRQ") (pintype "output"))
(node (ref "U2") (pin "23") (pinfunction "GPIO15/ADC2_CH3/TOUCH3/MTDO/HSPICS0/RTC_GPIO13/HS2_CMD/SD_CMD/EMAC_RXD3") (pintype "bidirectional")))
(net (code "29") (name "/SI_MISO")
(node (ref "ST_SI1") (pin "7") (pinfunction "MISO") (pintype "output"))
(node (ref "ST_nRF1") (pin "7") (pinfunction "MISO") (pintype "output"))
(node (ref "U2") (pin "31") (pinfunction "GPIO19/VSPIQ/U0CTS/EMAC_TXD0") (pintype "bidirectional")))
(net (code "30") (name "/SI_MOSI")
(node (ref "ST_SI1") (pin "6") (pinfunction "MOSI") (pintype "input"))
(node (ref "ST_nRF1") (pin "6") (pinfunction "MOSI") (pintype "input"))
(node (ref "U2") (pin "37") (pinfunction "GPIO23/VSPID/HS1_STROBE") (pintype "bidirectional")))
(net (code "31") (name "/SI_SCK")
(node (ref "ST_SI1") (pin "5") (pinfunction "SCK") (pintype "input"))
(node (ref "ST_nRF1") (pin "5") (pinfunction "SCK") (pintype "input"))
(node (ref "U2") (pin "30") (pinfunction "GPIO18/VSPICLK/HS1_DATA7") (pintype "bidirectional")))
(net (code "32") (name "/SL")
(node (ref "FA2") (pin "1") (pintype "passive"))
(node (ref "ST_REL1") (pin "3") (pinfunction "Pin_3") (pintype "passive")))
(net (code "33") (name "/SLC")
(node (ref "REL1") (pin "4") (pintype "passive"))
(node (ref "ST_REL1") (pin "1") (pinfunction "Pin_1") (pintype "passive")))
(net (code "34") (name "/SLO")
(node (ref "REL1") (pin "3") (pintype "passive"))
(node (ref "ST_REL1") (pin "2") (pinfunction "Pin_2") (pintype "passive")))
(net (code "35") (name "GNDD")
(node (ref "C1") (pin "2") (pintype "passive"))
(node (ref "C10") (pin "1") (pintype "passive"))
(node (ref "C2") (pin "2") (pintype "passive"))
(node (ref "C3") (pin "2") (pintype "passive"))
(node (ref "C4") (pin "1") (pintype "passive"))
(node (ref "C5") (pin "2") (pintype "passive"))
(node (ref "C6") (pin "2") (pintype "passive"))
(node (ref "C7") (pin "2") (pintype "passive"))
(node (ref "C8") (pin "2") (pintype "passive"))
(node (ref "C9") (pin "2") (pintype "passive"))
(node (ref "D1") (pin "1") (pinfunction "K") (pintype "passive"))
(node (ref "D2") (pin "1") (pinfunction "K") (pintype "passive"))
(node (ref "D4") (pin "1") (pinfunction "K") (pintype "passive"))
(node (ref "PS1") (pin "3") (pinfunction "-Vout") (pintype "power_out"))
(node (ref "Q1") (pin "2") (pinfunction "E") (pintype "passive"))
(node (ref "ST_EXT1") (pin "2") (pinfunction "2") (pintype "passive"))
(node (ref "ST_I2C1") (pin "2") (pinfunction "Pin_2") (pintype "passive"))
(node (ref "ST_IR1") (pin "3") (pinfunction "Pin_3") (pintype "passive"))
(node (ref "ST_OW1") (pin "1") (pinfunction "Pin_1") (pintype "passive"))
(node (ref "ST_PRG1") (pin "1") (pinfunction "Pin_1") (pintype "passive"))
(node (ref "ST_SI1") (pin "1") (pinfunction "GND") (pintype "power_in"))
(node (ref "ST_nRF1") (pin "1") (pinfunction "GND") (pintype "power_in"))
(node (ref "U1") (pin "3") (pinfunction "GND") (pintype "power_in"))
(node (ref "U2") (pin "1") (pinfunction "GND") (pintype "power_in"))
(node (ref "U2") (pin "15") (pinfunction "GND") (pintype "power_in"))
(node (ref "U2") (pin "38") (pinfunction "GND") (pintype "power_in"))
(node (ref "U2") (pin "39") (pinfunction "THERMAL_PAD") (pintype "power_in")))
(net (code "36") (name "Net-(D1-Pad2)")
(node (ref "D1") (pin "2") (pinfunction "A") (pintype "passive"))
(node (ref "R4") (pin "2") (pintype "passive")))
(net (code "37") (name "Net-(D2-Pad2)")
(node (ref "D2") (pin "2") (pinfunction "A") (pintype "passive"))
(node (ref "R5") (pin "2") (pintype "passive")))
(net (code "38") (name "Net-(D3-Pad2)")
(node (ref "D3") (pin "2") (pinfunction "A") (pintype "passive"))
(node (ref "Q1") (pin "3") (pinfunction "C") (pintype "passive"))
(node (ref "REL1") (pin "5") (pintype "passive")))
(net (code "39") (name "Net-(D4-Pad2)")
(node (ref "D4") (pin "2") (pinfunction "A") (pintype "passive"))
(node (ref "R8") (pin "2") (pintype "passive")))
(net (code "40") (name "Net-(Q1-Pad1)")
(node (ref "Q1") (pin "1") (pinfunction "B") (pintype "input"))
(node (ref "R7") (pin "1") (pintype "passive")))
(net (code "41") (name "Net-(R6-Pad2)")
(node (ref "R6") (pin "2") (pintype "passive"))
(node (ref "U2") (pin "3") (pinfunction "EN") (pintype "input")))
(net (code "42") (name "unconnected-(ST_EXT1-Pad5)")
(node (ref "ST_EXT1") (pin "5") (pinfunction "5") (pintype "passive+no_connect")))
(net (code "43") (name "unconnected-(ST_EXT1-Pad7)")
(node (ref "ST_EXT1") (pin "7") (pinfunction "7") (pintype "passive+no_connect")))
(net (code "44") (name "unconnected-(ST_EXT1-Pad8)")
(node (ref "ST_EXT1") (pin "8") (pinfunction "8") (pintype "passive+no_connect")))
(net (code "45") (name "unconnected-(ST_EXT1-Pad9)")
(node (ref "ST_EXT1") (pin "9") (pinfunction "9") (pintype "passive+no_connect")))
(net (code "46") (name "unconnected-(ST_EXT1-Pad10)")
(node (ref "ST_EXT1") (pin "10") (pinfunction "10") (pintype "passive+no_connect")))
(net (code "47") (name "unconnected-(U2-Pad4)")
(node (ref "U2") (pin "4") (pinfunction "GPI36/SENSOR_VP/ADC_H/ADC1_CH0/RTC_GPIO0") (pintype "input+no_connect")))
(net (code "48") (name "unconnected-(U2-Pad6)")
(node (ref "U2") (pin "6") (pinfunction "GPI34/ADC1_CH6/RTC_GPIO4") (pintype "input+no_connect")))
(net (code "49") (name "unconnected-(U2-Pad7)")
(node (ref "U2") (pin "7") (pinfunction "GPI35/ADC1_CH7/RTC_GPIO5") (pintype "input+no_connect")))
(net (code "50") (name "unconnected-(U2-Pad17)")
(node (ref "U2") (pin "17") (pinfunction "GPIO9/SD_DATA2/SPIHD/HS1_DATA2/U1RXD") (pintype "bidirectional+no_connect")))
(net (code "51") (name "unconnected-(U2-Pad18)")
(node (ref "U2") (pin "18") (pinfunction "GPIO10/SD_DATA3/SPIWP/HS1_DATA3/U1TXD") (pintype "bidirectional+no_connect")))
(net (code "52") (name "unconnected-(U2-Pad19)")
(node (ref "U2") (pin "19") (pinfunction "GPIO11/SD_CMD/SPICS0/HS1_CMD/U1RTS") (pintype "bidirectional+no_connect")))
(net (code "53") (name "unconnected-(U2-Pad20)")
(node (ref "U2") (pin "20") (pinfunction "GPIO6/SD_CLK/SPICLK/HS1_CLK/U1CTS") (pintype "bidirectional+no_connect")))
(net (code "54") (name "unconnected-(U2-Pad21)")
(node (ref "U2") (pin "21") (pinfunction "GPIO7/SD_DATA0/SPIQ/HS1_DATA0/U2RTS") (pintype "bidirectional+no_connect")))
(net (code "55") (name "unconnected-(U2-Pad22)")
(node (ref "U2") (pin "22") (pinfunction "GPIO8/SD_DATA1/SPID/HS1_DATA1/U2CTS") (pintype "bidirectional+no_connect")))
(net (code "56") (name "unconnected-(U2-Pad24)")
(node (ref "U2") (pin "24") (pinfunction "GPIO2/ADC2_CH2/TOUCH2/RTC_GPIO12/HSPIWP/HS2_DATA0/SD_DATA0") (pintype "bidirectional+no_connect")))
(net (code "57") (name "unconnected-(U2-Pad27)")
(node (ref "U2") (pin "27") (pinfunction "GPIO16/HS1_DATA4/U2RXD/EMAC_CLK_OUT") (pintype "bidirectional+no_connect")))
(net (code "58") (name "unconnected-(U2-Pad28)")
(node (ref "U2") (pin "28") (pinfunction "GPIO17/HS1_DATA5/U2TXD/EMAC_CLK_OUT_180") (pintype "bidirectional+no_connect")))
(net (code "59") (name "unconnected-(U2-Pad32)")
(node (ref "U2") (pin "32") (pinfunction "NC") (pintype "no_connect")))
(net (code "60") (name "unconnected-(U2-Pad33)")
(node (ref "U2") (pin "33") (pinfunction "GPIO21/VSPIHD/EMAC_TX_EN") (pintype "bidirectional+no_connect")))
(net (code "61") (name "unconnected-(U2-Pad36)")
(node (ref "U2") (pin "36") (pinfunction "GPIO22/VSPIWP/U0RTS/EMAC_TXD1") (pintype "bidirectional+no_connect")))))