forked from tspopp/AquaMQTT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AquaMQTT.kicad_pcb
10893 lines (10863 loc) · 428 KB
/
AquaMQTT.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "OWB1_5V")
(net 3 "Net-(Q1-C)")
(net 4 "TXD1_5V_ESP")
(net 5 "Net-(Q1-B)")
(net 6 "TXD2_5V_ESP")
(net 7 "Net-(Q3-B)")
(net 8 "Net-(Q3-C)")
(net 9 "OWB2_5V")
(net 10 "GND")
(net 11 "TXD1_3V3_ESP")
(net 12 "RXD1_3V3_ESP")
(net 13 "TXD2_3V3_ESP")
(net 14 "RXD2_3V3_ESP")
(net 15 "+3V3")
(net 16 "unconnected-(J1-Pin_3-Pad3)")
(net 17 "unconnected-(J1-Pin_4-Pad4)")
(net 18 "DHW_UNKNOWN")
(net 19 "unconnected-(J1-Pin_7-Pad7)")
(net 20 "unconnected-(J1-Pin_8-Pad8)")
(net 21 "unconnected-(J2-Pin_3-Pad3)")
(net 22 "unconnected-(J2-Pin_4-Pad4)")
(net 23 "unconnected-(J2-Pin_7-Pad7)")
(net 24 "unconnected-(J2-Pin_8-Pad8)")
(net 25 "unconnected-(A2-Pad5V)")
(net 26 "unconnected-(A2-PadA0)")
(net 27 "unconnected-(A2-PadA1)")
(net 28 "unconnected-(A2-PadA2)")
(net 29 "unconnected-(A2-PadA3)")
(net 30 "Net-(A2-A4{slash}SDA)")
(net 31 "Net-(A2-A5{slash}SCL)")
(net 32 "unconnected-(A2-PadA6)")
(net 33 "unconnected-(A2-PadA7)")
(net 34 "unconnected-(A2-PadB0)")
(net 35 "unconnected-(A2-PadB1)")
(net 36 "Net-(A2-D0{slash}RX)")
(net 37 "Net-(A2-D1{slash}TX)")
(net 38 "unconnected-(A2-PadD6)")
(net 39 "unconnected-(A2-PadD7)")
(net 40 "unconnected-(A2-PadD8)")
(net 41 "unconnected-(A2-PadD9)")
(net 42 "unconnected-(A2-PadD10)")
(net 43 "unconnected-(A2-D11_MOSI-PadD11)")
(net 44 "unconnected-(A2-D12_MISO-PadD12)")
(net 45 "unconnected-(A2-D13_SCK-PadD13)")
(net 46 "unconnected-(A2-~{RESET}-PadRST)")
(footprint "Package_TO_SOT_THT:TO-92L_HandSolder" (layer "F.Cu")
(tstamp 075c5a13-59f1-4db5-b901-2876a97883ae)
(at 191 85 180)
(descr "TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm, hand-soldering variant with enlarged pads (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "AquaMQTT.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "0.1A Ic, 45V Vce, Small Signal NPN Transistor, TO-92")
(property "ki_keywords" "NPN Transistor")
(path "/3cf6064c-0b29-4650-a57a-074a2518299b")
(attr through_hole)
(fp_text reference "Q3" (at 1.27 -3.8) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7358a6e-a3eb-4518-bf8f-6c268f4233e5)
)
(fp_text value "BC547" (at 1.27 2.79) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6281db4b-32b5-492a-9b95-54450b9cdc48)
)
(fp_text user "${REFERENCE}" (at 1.27 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89ec1336-94c7-4524-bf7f-f4495a8b7d1d)
)
(fp_line (start -0.53 1.85) (end 3.07 1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34063f82-9542-48b1-ba63-c36c16171a35))
(fp_arc (start -0.541453 1.842156) (mid -1.247298 -0.581475) (end 0.45 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d5f6d7b-9733-4d94-a163-0bf6926e9c5c))
(fp_arc (start 2.05 -2.45) (mid 3.769931 -0.601036) (end 3.078445 1.827684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22d3f748-17cd-434a-a92b-6e9b0c709674))
(fp_line (start -1.46 -3.05) (end 4 -3.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 77a90dfb-d2f9-4213-910c-de1b40d33266))
(fp_line (start -1.45 -3.05) (end -1.46 2.01)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8572369d-9a02-4270-9861-171c89c1c237))
(fp_line (start 4 2.01) (end -1.46 2.01)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3c809718-cbed-4f17-a576-eded7e078a08))
(fp_line (start 4 2.01) (end 4 -3.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d7bcd09-1209-44e2-9f23-5d7d95cc5869))
(fp_line (start -0.5 1.75) (end 3 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ab1dec8-f843-4eba-b10c-c7b44bd823e3))
(fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5029ed11-d842-4f31-b7d2-638f18048991))
(fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17ec15aa-14e8-4678-aec7-07b939f67438))
(pad "1" thru_hole rect (at 0 0 180) (size 1.1 1.8) (drill 0.75 (offset 0 0.4)) (layers "*.Cu" "*.Mask")
(net 8 "Net-(Q3-C)") (pinfunction "C") (pintype "passive") (tstamp 21dfa4b0-4992-438e-9e8c-9cc2de841066))
(pad "2" thru_hole roundrect (at 1.27 -1.27 180) (size 1.1 1.8) (drill 0.75 (offset 0 -0.4)) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(Q3-B)") (pinfunction "B") (pintype "input") (tstamp e095c4f8-173f-466b-acfc-66397c073450))
(pad "3" thru_hole roundrect (at 2.54 0 180) (size 1.1 1.8) (drill 0.75 (offset 0 0.4)) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pinfunction "E") (pintype "passive") (tstamp 2146c0b7-2b13-4921-a02f-23f13b3fe7e7))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92L.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCM_arduino-library:Arduino_Nano_ESP32_Socket" (layer "F.Cu")
(tstamp 09346dff-7cb0-4b26-bdcd-b178705f527a)
(at 154.78 34.822 180)
(descr "https://docs.arduino.cc/hardware/nano-esp32")
(property "Sheetfile" "AquaMQTT.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Socket for Arduino Nano ESP32")
(property "ki_keywords" "Arduino MPU Shield")
(path "/54ed7b30-6fed-4edc-afa2-c2ebc78169cb")
(attr through_hole)
(fp_text reference "A2" (at 0 -44.45) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78b0cf1f-b268-489a-99f3-b16a6e885898)
)
(fp_text value "Arduino Nano ESP32" (at 0 -21.082 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74bd96c2-44fb-48e7-a2e7-e2aa87fd2c86)
)
(fp_text user "USB" (at 0 0.575) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 9f481c04-73ca-4aeb-80df-2b6e093566b6)
)
(fp_line (start -8.89 -43.18) (end -8.89 0)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2a596011-ef16-498f-9107-221474fcc716))
(fp_line (start -8.89 -43.18) (end 8.89 -43.18)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fa2999a7-700e-445d-acd6-1f7992743ce7))
(fp_line (start -8.89 0) (end 8.89 0)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 47b289ad-a819-48d4-95f2-0ae20fb6d9f8))
(fp_line (start 8.89 -43.18) (end 8.89 0)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ada42761-413c-4d35-8e4c-2893218152d6))
(fp_circle (center -7.62 -41.91) (end -5.77 -41.91)
(stroke (width 0.15) (type solid)) (fill none) (layer "B.CrtYd") (tstamp 38ed0081-27fd-4c84-bccb-031022379214))
(fp_circle (center -7.62 -1.27) (end -5.77 -1.27)
(stroke (width 0.15) (type solid)) (fill none) (layer "B.CrtYd") (tstamp 80267de5-6342-46db-abba-8e71ba728ab1))
(fp_circle (center 7.62 -41.91) (end 9.47 -41.91)
(stroke (width 0.15) (type solid)) (fill none) (layer "B.CrtYd") (tstamp 34552138-2b8a-4777-8141-27d62adcc99e))
(fp_circle (center 7.62 -1.27) (end 9.47 -1.27)
(stroke (width 0.15) (type solid)) (fill none) (layer "B.CrtYd") (tstamp a9bedf85-dd62-40c8-a5b4-374d32f3dd81))
(fp_line (start -9.144 -43.434) (end -8.6614 -43.434)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 823976bd-a284-4191-80a0-9db9d8103d01))
(fp_line (start -9.144 -42.9514) (end -9.144 -43.434)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 7a04a966-dcd4-48db-a693-60cd6a7ffa76))
(fp_line (start -9.144 -2.3114) (end -9.144 -40.8686)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 0764e99f-ead8-41c2-97a2-404bb676ac2a))
(fp_line (start -9.144 0.254) (end -9.144 -0.2286)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 9acc6d59-e79e-4db9-9651-7873aaaf09b0))
(fp_line (start -8.6614 0.254) (end -9.144 0.254)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp e0cc916f-438c-4111-981b-e524d7bdec18))
(fp_line (start -6.5786 -43.434) (end 6.5786 -43.434)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 7c7fb1fb-3f12-42da-91bc-3a25ab8b0a60))
(fp_line (start -5.654 0.254) (end -6.5786 0.254)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp a7bcc228-bdd8-4f57-a6f7-708c7975c181))
(fp_line (start -5.654 1.404) (end -5.654 0.254)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp ce27fb4b-30ea-4207-801b-61a6e2ccd5b8))
(fp_line (start 5.654 0.254) (end 5.654 1.404)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 8b39562f-fcb0-494a-8bf3-92987b98823f))
(fp_line (start 5.654 1.404) (end -5.654 1.404)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 72d47e20-f3f9-463f-a545-b0bdaaf74498))
(fp_line (start 6.5786 0.254) (end 5.654 0.254)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp e0a7637e-c5fc-49a1-8d9a-0a03d35b6fc5))
(fp_line (start 8.6614 -43.434) (end 9.144 -43.434)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp d94f440a-49f4-458a-b0d7-b444c122de5d))
(fp_line (start 9.144 -43.434) (end 9.144 -42.9514)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 60f8fe84-0d53-4e37-96ac-6cdca8920d63))
(fp_line (start 9.144 -40.8686) (end 9.144 -2.3114)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp b80d5f6e-8424-4f48-9297-d8c92cf32d50))
(fp_line (start 9.144 -0.2286) (end 9.144 0.254)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 65ad716d-5f30-4cd6-9630-054ec4e1d117))
(fp_line (start 9.144 0.254) (end 8.6614 0.254)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 1f216010-924f-4a69-bff6-db736361b1f1))
(fp_arc (start -9.144 -40.8686) (mid -9.467363 -41.91) (end -9.144 -42.9514)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp acd397cd-89aa-467c-9789-439764e44b1c))
(fp_arc (start -9.144 -0.2286) (mid -9.467363 -1.27) (end -9.144 -2.3114)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 428d85ef-6959-43dd-b7a2-3526a794481a))
(fp_arc (start -8.6614 -43.434) (mid -7.62 -43.757363) (end -6.5786 -43.434)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp c7da8191-d078-4d2d-a94e-a6b2f980f230))
(fp_arc (start -6.5786 0.254) (mid -7.62 0.577363) (end -8.6614 0.254)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 3c78bed7-2741-423c-a32a-3b4a627a3087))
(fp_arc (start 6.5786 -43.434) (mid 7.62 -43.757363) (end 8.6614 -43.434)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp bff19358-3458-4fde-b469-c213e216358f))
(fp_arc (start 8.6614 0.254) (mid 7.62 0.577363) (end 6.5786 0.254)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 70aa9752-d28a-41dc-bc39-b4403fc3ceaa))
(fp_arc (start 9.144 -42.9514) (mid 9.467363 -41.91) (end 9.144 -40.8686)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 32603b19-9f1e-46d2-ad3b-7b277dfe3830))
(fp_arc (start 9.144 -2.3114) (mid 9.467363 -1.27) (end 9.144 -0.2286)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp d5bc555b-92a5-4121-8fe0-d407c2efc984))
(fp_circle (center -7.62 -41.91) (end -6.02 -41.91)
(stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp b155c120-c70d-401f-85b8-ebad206c9743))
(fp_circle (center -7.62 -1.27) (end -6.02 -1.27)
(stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp b79fa634-e848-41a9-9149-f3c4c90053fc))
(fp_circle (center 7.62 -41.91) (end 9.22 -41.91)
(stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 25a02271-898c-4721-873d-63b87272eb69))
(fp_circle (center 7.62 -1.27) (end 9.22 -1.27)
(stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 9141b4c7-b1fe-4202-9ee8-e44886f451e0))
(fp_line (start -5.4 0) (end -5.4 1.15)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 0ab9f7c1-3fe5-4318-a9bf-7e0069518696))
(fp_line (start -5.4 1.15) (end 5.4 1.15)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 6263ed1f-9945-469e-9234-55908e53980d))
(fp_line (start 5.4 1.15) (end 5.4 0)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp ca62eca9-c7f1-4dad-a985-251e236d1335))
(fp_rect (start -8.89 -40.64) (end -6.35 -2.54)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 506f325d-4b4f-4e98-8a44-eb57e003f00f))
(fp_rect (start 6.35 -40.64) (end 8.89 -2.54)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp eb1a42f6-dd6d-4e18-8307-6453cc8c552e))
(fp_circle (center -7.62 -41.91) (end -6.02 -41.91)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp c230f931-9542-48af-b73c-2b98fc03ef0a))
(fp_circle (center -7.62 -1.27) (end -6.02 -1.27)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 24b5929c-4944-4d3b-94d5-ef5211e67693))
(fp_circle (center 7.62 -41.91) (end 9.22 -41.91)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp dcfe23ff-9f29-41fc-ae98-cf999632cf54))
(fp_circle (center 7.62 -1.27) (end 9.22 -1.27)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 90192f35-e163-461a-92c2-31634f9ed848))
(pad "" np_thru_hole circle (at -7.62 -41.91 180) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (tstamp f7776293-1f18-4b46-a9b9-f46d82ac64e7))
(pad "" np_thru_hole circle (at -7.62 -1.27 180) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (tstamp c6166136-bb92-4336-8953-c9b61881186a))
(pad "" np_thru_hole circle (at 7.62 -41.91 180) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (tstamp 7f2fa4db-9eaf-4baa-ab8f-da2026db2162))
(pad "" np_thru_hole circle (at 7.62 -1.27 180) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (tstamp 0a132229-6fa3-4803-b6a6-4ab27c77e402))
(pad "3V3" thru_hole circle (at 7.62 -6.35 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 15 "+3V3") (pinfunction "3.3V") (pintype "power_out") (tstamp 91b480d7-be92-4f84-bb56-918bef0778ab))
(pad "5V" thru_hole circle (at 7.62 -31.75 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 25 "unconnected-(A2-Pad5V)") (pinfunction "5V") (pintype "power_in+no_connect") (tstamp baeb598a-b119-4560-8cec-e28869ff179e))
(pad "A0" thru_hole circle (at 7.62 -11.43 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 26 "unconnected-(A2-PadA0)") (pinfunction "A0") (pintype "bidirectional+no_connect") (tstamp 9dc948e6-2c16-449d-86e2-7de0daef7dc2))
(pad "A1" thru_hole circle (at 7.62 -13.97 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 27 "unconnected-(A2-PadA1)") (pinfunction "A1") (pintype "bidirectional+no_connect") (tstamp ba12f8e4-6fee-4bbd-a4f9-280fb17c6673))
(pad "A2" thru_hole circle (at 7.62 -16.51 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 28 "unconnected-(A2-PadA2)") (pinfunction "A2") (pintype "bidirectional+no_connect") (tstamp 275ec714-4262-4961-af78-90e5c4de5d80))
(pad "A3" thru_hole circle (at 7.62 -19.05 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 29 "unconnected-(A2-PadA3)") (pinfunction "A3") (pintype "bidirectional+no_connect") (tstamp c88e4ddf-e6b6-4733-ab6c-e3a924551441))
(pad "A4" thru_hole circle (at 7.62 -21.59 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 30 "Net-(A2-A4{slash}SDA)") (pinfunction "A4/SDA") (pintype "bidirectional") (tstamp 114aff0b-c447-4b71-b6e5-759bbed0e4f2))
(pad "A5" thru_hole circle (at 7.62 -24.13 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 31 "Net-(A2-A5{slash}SCL)") (pinfunction "A5/SCL") (pintype "bidirectional") (tstamp 54cfc14c-0c9d-4d30-b364-fb7fbaf1b6c7))
(pad "A6" thru_hole circle (at 7.62 -26.67 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(A2-PadA6)") (pinfunction "A6") (pintype "input+no_connect") (tstamp f1004eb2-19aa-40ef-bb94-f79523228ad3))
(pad "A7" thru_hole circle (at 7.62 -29.21 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 33 "unconnected-(A2-PadA7)") (pinfunction "A7") (pintype "input+no_connect") (tstamp 798b3073-8f94-4d02-8e54-856bee5ccfc3))
(pad "B0" thru_hole circle (at 7.62 -8.89 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 34 "unconnected-(A2-PadB0)") (pinfunction "B0") (pintype "bidirectional+no_connect") (tstamp dff17d0e-04a9-42b7-8950-1660511a9b55))
(pad "B1" thru_hole circle (at 7.62 -34.29 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 35 "unconnected-(A2-PadB1)") (pinfunction "B1") (pintype "bidirectional+no_connect") (tstamp a1c1815d-4870-44df-80dc-83c1fb9915b8))
(pad "D0" thru_hole circle (at -7.62 -36.83 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 36 "Net-(A2-D0{slash}RX)") (pinfunction "D0/RX") (pintype "bidirectional") (tstamp 7b2aff74-efae-4923-845f-9ce9e5616b72))
(pad "D1" thru_hole circle (at -7.62 -39.37 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 37 "Net-(A2-D1{slash}TX)") (pinfunction "D1/TX") (pintype "bidirectional") (tstamp ea0fed43-f572-4cc0-bd02-9758b9b71cf9))
(pad "D2" thru_hole circle (at -7.62 -29.21 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 12 "RXD1_3V3_ESP") (pinfunction "D2") (pintype "bidirectional") (tstamp a94726e1-d6f1-4cd5-bc0c-f24f866eda35))
(pad "D3" thru_hole circle (at -7.62 -26.67 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 11 "TXD1_3V3_ESP") (pinfunction "D3") (pintype "bidirectional") (tstamp c11e30e7-674d-4f32-9596-59986bdd5f58))
(pad "D4" thru_hole circle (at -7.62 -24.13 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 14 "RXD2_3V3_ESP") (pinfunction "D4") (pintype "bidirectional") (tstamp a6a73f28-8dad-427b-834c-5a5e576e0190))
(pad "D5" thru_hole circle (at -7.62 -21.59 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 13 "TXD2_3V3_ESP") (pinfunction "D5") (pintype "bidirectional") (tstamp af5a8edc-3168-4cfc-ad62-0ad4bbecfaa9))
(pad "D6" thru_hole circle (at -7.62 -19.05 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 38 "unconnected-(A2-PadD6)") (pinfunction "D6") (pintype "bidirectional+no_connect") (tstamp af7c8d7e-5c34-4d1e-a5f2-0fa172edcbc0))
(pad "D7" thru_hole circle (at -7.62 -16.51 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 39 "unconnected-(A2-PadD7)") (pinfunction "D7") (pintype "bidirectional+no_connect") (tstamp 6004bdea-d75a-4c11-a43d-a2a69673ffd5))
(pad "D8" thru_hole circle (at -7.62 -13.97 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 40 "unconnected-(A2-PadD8)") (pinfunction "D8") (pintype "bidirectional+no_connect") (tstamp c490e4ab-f630-4780-ab5f-babbc2394821))
(pad "D9" thru_hole circle (at -7.62 -11.43 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 41 "unconnected-(A2-PadD9)") (pinfunction "D9") (pintype "bidirectional+no_connect") (tstamp 35d27a9c-25af-44b6-aa85-fe46dc3c2d09))
(pad "D10" thru_hole circle (at -7.62 -8.89 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 42 "unconnected-(A2-PadD10)") (pinfunction "D10") (pintype "bidirectional+no_connect") (tstamp 96250206-3b5b-49d7-998e-28ff18b84e44))
(pad "D11" thru_hole circle (at -7.62 -6.35 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 43 "unconnected-(A2-D11_MOSI-PadD11)") (pinfunction "D11_MOSI") (pintype "bidirectional+no_connect") (tstamp effe9f8c-7da6-4cb9-95ed-5c985ef198af))
(pad "D12" thru_hole circle (at -7.62 -3.81 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 44 "unconnected-(A2-D12_MISO-PadD12)") (pinfunction "D12_MISO") (pintype "bidirectional+no_connect") (tstamp a58fffdf-1c75-41bc-85b9-f6da16fe4a16))
(pad "D13" thru_hole circle (at 7.62 -3.81 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 45 "unconnected-(A2-D13_SCK-PadD13)") (pinfunction "D13_SCK") (pintype "bidirectional+no_connect") (tstamp 25821720-48f4-46df-8e71-20d1187b69b7))
(pad "GND1" thru_hole rect (at -7.62 -31.75 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 10 "GND") (pinfunction "GND") (pintype "power_in") (tstamp bee60291-97fb-4237-84c9-a5b23900c1a1))
(pad "GND2" thru_hole rect (at 7.62 -36.83 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 10 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 937bd9bb-1814-4deb-8d52-32942298968c))
(pad "RST" thru_hole circle (at -7.62 -34.29 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 46 "unconnected-(A2-~{RESET}-PadRST)") (pinfunction "~{RESET}") (pintype "open_collector+no_connect") (tstamp cfd92a34-d38f-4bdc-ac09-795ab8c2227a))
(pad "VIN" thru_hole circle (at 7.62 -39.37 180) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "VIN") (pintype "power_in") (tstamp a9f0ad84-f58b-46f4-b5fe-0bbb918696e5))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 10151c68-a172-471c-a08b-c9f84e3df489)
(at 183 91.46)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "AquaMQTT.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/f58a8747-5b8f-4aa9-af99-ea690334347a")
(attr through_hole)
(fp_text reference "J7" (at -2.5 1.04 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f630b0fb-a933-4274-9c1f-6599b63f781d)
)
(fp_text value "Passthrough" (at 0 5.54) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6b50df9-2a39-4e52-8533-5b5e79c8b4c8)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 924f65ba-6db2-40d9-8cea-f9a5684f723f)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e5fb59b-9b6f-4dbc-91b9-5765c9ee3a16))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74356c1c-c90e-466e-b1f0-1d4105a42735))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4a789c5-5fc1-4e9a-901d-21f63446b4d7))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2a4ae67-fbc7-4957-91b7-d1565421f072))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2843445f-b43d-42df-9c36-b5682a9016cb))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ebea097-fba4-4958-8ee0-f335105e2c25))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 051efe88-1b5e-417e-a912-d15254538862))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47e4dd44-d089-4667-b2b1-a0bdbd0f0a7c))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 691e32a0-0bbe-4223-9c74-daf7856b028e))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ae92770-c34d-4e78-8ec3-e53105ec9e34))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4b74883-24ac-4ddb-aa61-b5c4ec6c1470))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 890de490-e512-4392-9e5b-e9cc728e8aff))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f362a9fd-18e9-4782-9064-1766f0959ec5))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8566290b-1994-40ea-a925-8d220a59e72a))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00992c77-2a2c-493b-a42f-dde28b33352f))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "OWB1_5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 15653a03-34c1-4e0e-9a3e-2252a15da7bc))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "OWB2_5V") (pinfunction "Pin_2") (pintype "passive") (tstamp 72a59260-d720-49ea-bf7e-18f8364acd43))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal" (layer "F.Cu")
(tstamp 2dbcff3f-24a7-42d9-8b38-47240e2e9192)
(at 188.5 59.84 -90)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "AquaMQTT.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/99b9bb9d-6e84-40c6-a044-2f03987e98a4")
(attr through_hole)
(fp_text reference "R4" (at 10.16 2.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83c77900-9cb5-418c-89eb-29f97992376f)
)
(fp_text value "R4.7k" (at 10.26 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71ecf945-ee2b-4377-8997-c68aae69bd00)
)
(fp_text user "${REFERENCE}" (at 10.16 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5af6eb98-60a3-433d-8c49-4ea938765103)
)
(fp_line (start 1.44 0) (end 5.09 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d58a190-9aba-4617-99bf-9e081bebaaf6))
(fp_line (start 5.09 -1.92) (end 5.09 1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48a0149b-8b02-4602-8b19-b395aebec17a))
(fp_line (start 5.09 1.92) (end 15.23 1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fdf887cd-a8c7-4c4e-a8cd-084fe4bf98d3))
(fp_line (start 15.23 -1.92) (end 5.09 -1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0eaa38f-e541-4dfb-a221-8251c53e76f7))
(fp_line (start 15.23 1.92) (end 15.23 -1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1283218-e03d-46bb-a2cc-bce3e8404754))
(fp_line (start 18.88 0) (end 15.23 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e5937b9-4d14-411b-a8c6-f5b40f0301bd))
(fp_line (start -1.45 -2.05) (end -1.45 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2363054c-d0f3-4e55-9dbf-ec8fd1593ff9))
(fp_line (start -1.45 2.05) (end 21.77 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c28af5e2-3b96-4da8-bfa2-0a259a47024d))
(fp_line (start 21.77 -2.05) (end -1.45 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 15340f7e-2b16-49b8-987f-b25072091132))
(fp_line (start 21.77 2.05) (end 21.77 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp af252807-b80e-4a67-bcec-de03943f2ccf))
(fp_line (start 0 0) (end 5.21 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db946002-ddb1-4d54-9ccf-8c1bf6158f85))
(fp_line (start 5.21 -1.8) (end 5.21 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92183d65-1536-481b-8654-40924200c331))
(fp_line (start 5.21 1.8) (end 15.11 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6689079b-033d-4c84-ae80-14b240c7561c))
(fp_line (start 15.11 -1.8) (end 5.21 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1606c91b-2a3c-4236-9c37-d83330ad9512))
(fp_line (start 15.11 1.8) (end 15.11 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26683507-e003-485d-be2b-50cc58a43405))
(fp_line (start 20.32 0) (end 15.11 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81dd79c4-d5e6-48d1-82b2-4f0e734795d1))
(pad "1" thru_hole circle (at 0 0 270) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pintype "passive") (tstamp 4076c7f9-9613-4693-bf55-bf2c716734a3))
(pad "2" thru_hole oval (at 20.32 0 270) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 9 "OWB2_5V") (pintype "passive") (tstamp 06b4d448-aa34-4bbe-b4de-cef500012494))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal" (layer "F.Cu")
(tstamp 337980ee-d23a-4e04-9cb2-c7f830bd8ceb)
(at 181.5 80.16 90)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "AquaMQTT.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/96132371-8022-4ff9-aa71-64bb673cc132")
(attr through_hole)
(fp_text reference "R3" (at 10.16 -2.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0debe4fc-a0cc-41ff-a0d9-fc40ccfc7245)
)
(fp_text value "R10k" (at 10.26 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84970df4-f4bf-4182-a5f5-57995c8c9a05)
)
(fp_text user "${REFERENCE}" (at 10.16 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc3ae043-7b27-4a21-8985-5f6d6a2cbe24)
)
(fp_line (start 1.44 0) (end 5.09 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef807bdc-13a9-4161-b94c-d1f5dc1d645f))
(fp_line (start 5.09 -1.92) (end 5.09 1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14adb6b1-2862-4518-b53f-ec87f849429b))
(fp_line (start 5.09 1.92) (end 15.23 1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35ab2f75-d3ff-4833-b304-fc77408e13c1))
(fp_line (start 15.23 -1.92) (end 5.09 -1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b719f97-c7aa-47f0-8f1f-dcdd5149cbac))
(fp_line (start 15.23 1.92) (end 15.23 -1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e78680fd-9983-4c9b-8a18-a40943111f1a))
(fp_line (start 18.88 0) (end 15.23 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0736f5e6-04f8-44d3-bed5-11864773d86b))
(fp_line (start -1.45 -2.05) (end -1.45 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1eed5862-e4a5-4a0e-a448-f5869b7e92f7))
(fp_line (start -1.45 2.05) (end 21.77 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 84e0441a-4ec6-47ab-85aa-24ef0cc16700))
(fp_line (start 21.77 -2.05) (end -1.45 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d8ad220-c2ca-44fe-adea-b6a43c52d226))
(fp_line (start 21.77 2.05) (end 21.77 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a172e706-28fa-458f-b864-94b6319e5d0b))
(fp_line (start 0 0) (end 5.21 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d9a3204b-a241-488e-b2eb-9f38d913cc9d))
(fp_line (start 5.21 -1.8) (end 5.21 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9944067d-2db2-4c52-b1ba-14c39c00e2c5))
(fp_line (start 5.21 1.8) (end 15.11 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a947274-fc86-4e96-aa9e-db33053d9989))
(fp_line (start 15.11 -1.8) (end 5.21 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7528190b-cde4-4626-aa40-f8aaa68be58b))
(fp_line (start 15.11 1.8) (end 15.11 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 165d49f7-6d0f-47ac-93a5-831b1eff65d7))
(fp_line (start 20.32 0) (end 15.11 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 000c4dbb-ee56-4b11-96ab-c59ef0851c69))
(pad "1" thru_hole circle (at 0 0 90) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 4 "TXD1_5V_ESP") (pintype "passive") (tstamp 15f0fb15-e555-4743-a006-7ee2b54596e6))
(pad "2" thru_hole oval (at 20.32 0 90) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 5 "Net-(Q1-B)") (pintype "passive") (tstamp 1da7bc12-4d19-4db4-94f2-a4419fc39de0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92L_HandSolder" (layer "F.Cu")
(tstamp 362a649d-b8ab-45af-8223-bbc1f790efee)
(at 175.23 86.02)
(descr "TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm, hand-soldering variant with enlarged pads (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "AquaMQTT.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "0.1A Ic, 45V Vce, Small Signal NPN Transistor, TO-92")
(property "ki_keywords" "NPN Transistor")
(path "/bdffd008-bd2a-4e84-be95-1d8dc54f7a8f")
(attr through_hole)
(fp_text reference "Q2" (at 1.27 2.73) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a66dba7-6115-4186-9886-c00a6394ae0b)
)
(fp_text value "BC547" (at 1.27 -3.77) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp adef63c6-30a9-4188-ba43-5b9871a322be)
)
(fp_text user "${REFERENCE}" (at 1.27 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 217c0f33-8cce-4152-a0c0-b3511ca2ccb2)
)
(fp_line (start -0.53 1.85) (end 3.07 1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d0809a0-287a-4327-a55c-f52183d1727e))
(fp_arc (start -0.541453 1.842156) (mid -1.247298 -0.581475) (end 0.45 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5971631-22bf-4a8d-88b0-f4c268b65943))
(fp_arc (start 2.05 -2.45) (mid 3.769931 -0.601036) (end 3.078445 1.827684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7809fa4-a06f-48dd-b99a-246d1ce76cd4))
(fp_line (start -1.46 -3.05) (end 4 -3.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7592ee49-a6a5-4810-adb6-56695f69ca94))
(fp_line (start -1.45 -3.05) (end -1.46 2.01)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f530a299-4584-4144-8a3a-1019c68d9314))
(fp_line (start 4 2.01) (end -1.46 2.01)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 09163b0b-338c-4b58-b2da-47a35b2cb8ae))
(fp_line (start 4 2.01) (end 4 -3.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 97901e83-febd-426f-9097-1343926541c2))
(fp_line (start -0.5 1.75) (end 3 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d5594bf-9447-43d1-93cc-9ec608def021))
(fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58910c01-dc67-42ae-a950-72b9c371f853))
(fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19d27791-10a2-499b-8981-aa698cb1e7e6))
(pad "1" thru_hole rect (at 0 0) (size 1.1 1.8) (drill 0.75 (offset 0 0.4)) (layers "*.Cu" "*.Mask")
(net 2 "OWB1_5V") (pinfunction "C") (pintype "passive") (tstamp e8e0c85b-683c-413e-917c-65bc1ca783a1))
(pad "2" thru_hole roundrect (at 1.27 -1.27) (size 1.1 1.8) (drill 0.75 (offset 0 -0.4)) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(Q1-C)") (pinfunction "B") (pintype "input") (tstamp eee89e20-3f0d-49f1-adb2-0253f1c1198c))
(pad "3" thru_hole roundrect (at 2.54 0) (size 1.1 1.8) (drill 0.75 (offset 0 0.4)) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pinfunction "E") (pintype "passive") (tstamp ec7dca22-a37b-4b60-96ea-50eccd454a4d))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92L.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal" (layer "F.Cu")
(tstamp 3e78222f-c270-48fc-bc5c-9b05a5a9b84e)
(at 201.25 80.16 90)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "AquaMQTT.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/43779968-39b4-449d-bce5-8fb5ad1c4826")
(attr through_hole)
(fp_text reference "R6" (at 10 -2.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e049393f-f1d5-469f-97be-8b6b6c9b6ed4)
)
(fp_text value "R10k" (at 10.06 -0.05 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3696b43c-d764-42cd-8531-8e762b61ea40)
)
(fp_text user "${REFERENCE}" (at 10.16 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6bd1e176-7f73-4a02-b81b-0a78b7d4ae18)
)
(fp_line (start 1.44 0) (end 5.09 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72512052-793f-4439-a70a-4aa180ebcd70))
(fp_line (start 5.09 -1.92) (end 5.09 1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8bab2435-b386-42e4-a8b2-ef48cbae5e9e))
(fp_line (start 5.09 1.92) (end 15.23 1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88c0175e-4f81-4643-bed8-e8e18c838ed2))
(fp_line (start 15.23 -1.92) (end 5.09 -1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d35286fc-21bc-471a-a561-f68cc331c95f))
(fp_line (start 15.23 1.92) (end 15.23 -1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e22c24c-860d-4b33-baa1-90447451e14c))
(fp_line (start 18.88 0) (end 15.23 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9d1433c-231a-4f64-b152-11d20d25675a))
(fp_line (start -1.45 -2.05) (end -1.45 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51ecd11b-2e0b-4cfd-be02-79644550f9e9))
(fp_line (start -1.45 2.05) (end 21.77 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76c9aeed-62cc-486c-a739-deebccaa4a88))
(fp_line (start 21.77 -2.05) (end -1.45 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 49a2318c-02de-4598-ac4c-d1fdb1783289))
(fp_line (start 21.77 2.05) (end 21.77 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2db07c3-77d5-4221-b07e-d3542ce6ea4a))
(fp_line (start 0 0) (end 5.21 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f2af9ff-f0f7-4aa7-93bd-a6e269975982))
(fp_line (start 5.21 -1.8) (end 5.21 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11973b1f-dd9a-408b-a94c-aeed708bee48))
(fp_line (start 5.21 1.8) (end 15.11 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ae6f207-a4a7-4c50-9df0-dcb1f000ba5c))
(fp_line (start 15.11 -1.8) (end 5.21 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 32612e8b-c98c-4287-82ff-05b57ae91611))
(fp_line (start 15.11 1.8) (end 15.11 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f606a4a-7371-4af1-ae07-df8186b994ce))
(fp_line (start 20.32 0) (end 15.11 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4cb1afff-1067-4660-acbc-2d7fa95cee64))
(pad "1" thru_hole circle (at 0 0 90) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 6 "TXD2_5V_ESP") (pintype "passive") (tstamp d509a600-b46f-4d43-af5a-b138b91d0459))
(pad "2" thru_hole oval (at 20.32 0 90) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 7 "Net-(Q3-B)") (pintype "passive") (tstamp 92aa9cab-8a22-4a2b-8bdb-fd5099247a06))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal" (layer "F.Cu")
(tstamp 4580a403-e949-42b7-858d-87df49044aa6)
(at 169 59.84 -90)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "AquaMQTT.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/2a86e6d7-2154-4437-8d89-2e6f7a14d926")
(attr through_hole)
(fp_text reference "R1" (at 10.16 2.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0dd31ac-1fc8-4df2-a664-925d1d3978f8)
)
(fp_text value "R4.7k" (at 10.26 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a22c5177-b3cc-4945-b576-a47900a49bc8)
)
(fp_text user "${REFERENCE}" (at 10.16 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 193cef92-d891-42e0-828b-293c0e72ea5d)
)
(fp_line (start 1.44 0) (end 5.09 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b37942b1-e366-45a0-8e2c-31c8252917ef))
(fp_line (start 5.09 -1.92) (end 5.09 1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e21b19cd-1748-4147-a952-18a5f284de12))
(fp_line (start 5.09 1.92) (end 15.23 1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e76b6b6-de2b-4c01-8f82-dbb9b527c2a0))
(fp_line (start 15.23 -1.92) (end 5.09 -1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7cd9031-8ea1-47d5-8ff8-6b5fa646dff2))
(fp_line (start 15.23 1.92) (end 15.23 -1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 186e9db5-343e-475c-9667-5e1488e47fb4))
(fp_line (start 18.88 0) (end 15.23 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2777ac8-d099-4365-b498-426b421f3b8c))
(fp_line (start -1.45 -2.05) (end -1.45 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2f16ba1-8bab-4620-a60a-feb3696b0337))
(fp_line (start -1.45 2.05) (end 21.77 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41a4e877-1ae2-455f-8872-86a402f6bc5a))
(fp_line (start 21.77 -2.05) (end -1.45 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ace8c7ee-0a00-4e42-9e59-a75918aa4fc8))
(fp_line (start 21.77 2.05) (end 21.77 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aabb332c-d636-4686-b0e7-ebbc776ae703))
(fp_line (start 0 0) (end 5.21 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b12eee3-4f93-473e-a57a-64d2c4efe830))
(fp_line (start 5.21 -1.8) (end 5.21 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 225e5062-a8a8-4eee-8ea8-dbc5d0b6673e))
(fp_line (start 5.21 1.8) (end 15.11 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38d08adb-3373-4a71-8a77-e1b6cf522b77))
(fp_line (start 15.11 -1.8) (end 5.21 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fccda366-c90e-4299-a6c3-d2a2000bf3a8))
(fp_line (start 15.11 1.8) (end 15.11 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eefd0a6f-2cc2-44e8-8490-3a53c89541bd))
(fp_line (start 20.32 0) (end 15.11 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55ca6ac2-2c13-4807-9b2f-3ad791239399))
(pad "1" thru_hole circle (at 0 0 270) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pintype "passive") (tstamp be9e1103-81bc-4fc9-8841-4a05b2b81c07))
(pad "2" thru_hole oval (at 20.32 0 270) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 2 "OWB1_5V") (pintype "passive") (tstamp 8d16b7a4-d77a-4933-b883-e51c817cfddd))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal" (layer "F.Cu")
(tstamp 4aa31cf3-e8af-4538-9592-ef9ac726efe7)
(at 195 59.84 -90)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "AquaMQTT.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/4d4ae7cf-a26f-4079-a6c8-fbfe430fd141")
(attr through_hole)
(fp_text reference "R5" (at 10.16 2.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58423ac1-3e4d-4ab0-a9c9-8217911a1afd)
)
(fp_text value "R100k" (at 9.96 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5c33b28-6570-48f4-a557-3f7e07f2e306)
)
(fp_text user "${REFERENCE}" (at 10.16 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d484d66-d3d7-4648-851b-7f6137fc53f1)
)
(fp_line (start 1.44 0) (end 5.09 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5bb3cc1-df71-40ea-bce8-29c1ae657e1d))
(fp_line (start 5.09 -1.92) (end 5.09 1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74611cd4-fa1a-4f2e-9be5-2b73be8947b4))
(fp_line (start 5.09 1.92) (end 15.23 1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5adafdcf-73ff-4b7f-a02c-24da043f00bf))
(fp_line (start 15.23 -1.92) (end 5.09 -1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e55a5f2a-19ad-481d-a370-4307dadf3f25))
(fp_line (start 15.23 1.92) (end 15.23 -1.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0f3f486-a1f0-4c40-8f57-3f8fe974b4b7))
(fp_line (start 18.88 0) (end 15.23 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 60b1c09a-b4c0-4877-9d4c-5ed1289f5129))
(fp_line (start -1.45 -2.05) (end -1.45 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 96c838af-d494-4f2e-9961-778703961345))
(fp_line (start -1.45 2.05) (end 21.77 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a3016f0-411c-472c-bca6-e3a7dc5c9895))
(fp_line (start 21.77 -2.05) (end -1.45 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 716cb8a7-8929-4426-9e42-00c28536e142))
(fp_line (start 21.77 2.05) (end 21.77 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8dde5c73-1825-4aaa-8bea-f84c8a781dcd))
(fp_line (start 0 0) (end 5.21 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp da707fdf-0b11-46c9-80d8-5bdaeabe6c2b))
(fp_line (start 5.21 -1.8) (end 5.21 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c40be966-a425-4197-8275-7ef099ef49ba))
(fp_line (start 5.21 1.8) (end 15.11 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79c4e9bc-e402-460d-b4d2-ebaf9444e76c))
(fp_line (start 15.11 -1.8) (end 5.21 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 687b18a7-70bc-436e-905f-6bf562481f81))
(fp_line (start 15.11 1.8) (end 15.11 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57e6114a-30d7-48c9-8ff3-38e86b66af3b))
(fp_line (start 20.32 0) (end 15.11 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e875da24-c95d-430f-a628-7ae3aebe1e12))
(pad "1" thru_hole circle (at 0 0 270) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pintype "passive") (tstamp 153cbfde-37ea-4150-8e1a-b4ecae6310bb))
(pad "2" thru_hole oval (at 20.32 0 270) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 8 "Net-(Q3-C)") (pintype "passive") (tstamp 38892bc5-9dfc-44bf-b8ac-c19b906688d3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 4ddb8c5e-ba58-489b-a831-6f3eff4adffe)
(at 188.38 94 90)
(descr "Through hole straight pin header, 2x04, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x04 2.54mm double row")
(property "Sheetfile" "AquaMQTT.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, double row, 02x04, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/780088ff-a201-4269-b458-9db78d79bf74")
(attr through_hole)
(fp_text reference "J2" (at 1.5 -2.63 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6226915-e767-4de6-871b-e99c3cff76e7)
)
(fp_text value "DHW HMI" (at -2.7 3.92 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc6703e8-2a3a-498c-9fb3-3b42db3de0ed)
)
(fp_text user "${REFERENCE}" (at 1.27 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bad52baa-f7ce-4eb1-9ca5-0e619a45e9ad)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b51b4cde-c398-491f-aedc-3c3997c920a3))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5bfbc38d-35a5-44b7-b9cb-47259ebbef5a))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca235969-b573-42b2-b48d-fdb39e836cbc))
(fp_line (start -1.33 1.27) (end 1.27 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6705ca92-c413-4179-8ec8-54c559211bf3))
(fp_line (start -1.33 8.95) (end 3.87 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0fdad136-ef8d-4c61-a551-3def618d709d))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66d767bb-b686-4d0f-8feb-5c30302043b2))
(fp_line (start 1.27 1.27) (end 1.27 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9480805f-9e41-4608-af77-4f17b8b29379))
(fp_line (start 3.87 -1.33) (end 3.87 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d0e97aa5-d437-49eb-b4cd-a10932260c03))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 766c460c-6d5b-4a1d-bb3a-fe31a222ba6c))
(fp_line (start -1.8 9.4) (end 4.35 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12f7e0c1-9f5d-4151-ad52-49d03eb8c85b))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de39746e-bb9c-4dce-a468-d646180ebcbd))
(fp_line (start 4.35 9.4) (end 4.35 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ffd3ad2d-8d35-4396-b7d3-eb6fe695739c))
(fp_line (start -1.27 0) (end 0 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9402eff3-f0d2-413e-b113-9799bb6621f1))
(fp_line (start -1.27 8.89) (end -1.27 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49762997-66a6-412a-b1ed-66639dd5dac5))
(fp_line (start 0 -1.27) (end 3.81 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f90de08d-a1fe-4258-990f-6cd3a18c4dab))
(fp_line (start 3.81 -1.27) (end 3.81 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19a9ca90-71bd-4fa1-91b1-e570e9b889da))
(fp_line (start 3.81 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e56f2e29-7875-4595-955e-5b27074c31d5))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp c29ef21a-ed05-46f1-8448-8f9cafac80f3))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp a294cb16-1dae-44f8-bed3-41369b8a41e0))
(pad "3" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(J2-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 6a3999bd-3270-44b5-b2a6-53113faabd62))
(pad "4" thru_hole oval (at 2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "unconnected-(J2-Pin_4-Pad4)") (pinfunction "Pin_4") (pintype "passive+no_connect") (tstamp cd97a8fa-2888-4daa-8b27-dd7afdbb3627))
(pad "5" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "OWB2_5V") (pinfunction "Pin_5") (pintype "passive") (tstamp e7ad098f-0271-47bc-b6e5-5ee101659581))
(pad "6" thru_hole oval (at 2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "DHW_UNKNOWN") (pinfunction "Pin_6") (pintype "passive") (tstamp 69dd351f-1a11-4876-8180-c4c6b21c0a94))
(pad "7" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(J2-Pin_7-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp fe2575b1-4656-4652-b462-d7025e721246))
(pad "8" thru_hole oval (at 2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "unconnected-(J2-Pin_8-Pad8)") (pinfunction "Pin_8") (pintype "passive+no_connect") (tstamp 07bcea9c-b966-4202-92b1-ed0666a8bcae))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_4.3mm_M4_DIN965" (layer "F.Cu")
(tstamp 5cd68e99-9a0e-4350-b09d-7b73d1634dee)
(at 202.75 93.75)
(descr "Mounting Hole 4.3mm, no annular, M4, DIN965")
(tags "mounting hole 4.3mm no annular m4 din965")
(property "Sheetfile" "AquaMQTT.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/fbfb1c45-c3ea-4722-970d-3e1bc20181be")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -4.75) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8bfc900-2dfb-4423-8696-41499f2694d8)
)
(fp_text value "MountingHole" (at 0 4.75) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70ae2640-6cec-4064-85b9-d79ff09e7b96)
)
(fp_text user "${REFERENCE}" (at -0.2 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e09ff81d-53a1-417d-9ba7-f3f7f24de3c1)
)
(fp_circle (center 0 0) (end 3.75 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 9a907ca6-39af-4d0e-8bac-ee490afb504b))
(fp_circle (center 0 0) (end 4 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp f9f92164-1e28-4cfc-8a7b-8461dd21631e))
(pad "" np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers "*.Cu" "*.Mask") (tstamp ccc4364a-2891-4840-8bb9-f825a53a059e))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 6bb0a62d-213a-4cb4-aef3-8219ee6a4950)
(at 169.6 49.6 180)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "AquaMQTT.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/1d549021-1be6-4d59-b379-148a2c7fa35a")
(attr through_hole)
(fp_text reference "J6" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c41a89d9-f73c-46d5-95a8-879b244a91a9)
)
(fp_text value "RTC DS3231" (at -17.4 3.94) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1a7a85c-be2d-4045-aed1-17645a4058a3)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a77cbd2-2407-4bf7-bb30-c6ef7c9a90ae)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b81d83cd-bc0a-4237-91a3-66e2e2011b51))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da353206-d736-4d63-b6e3-9f4fecf8cd22))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86b1d461-9759-4168-90da-05b166fb80a0))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6bc287b5-e8ad-4436-939c-23631e3d6cb9))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f778f296-3afe-4141-961d-6dbb959b38c7))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 189b6c1a-b369-4d6d-8fa9-663494d65d3f))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ace2ddef-f636-4eca-995e-3e45d64f7262))
(fp_line (start -1.8 9.4) (end 1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 495daf91-fab4-4710-a0f0-017cbe2fd014))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee4e8a93-5f73-492f-bef0-cae026e022b4))
(fp_line (start 1.8 9.4) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7be89844-50de-420d-841d-59900b88d077))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97b36607-997f-4139-9b6f-282363c3b8f1))
(fp_line (start -1.27 8.89) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b48f833-7773-40c2-bf08-046cf9562363))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 086355c4-0d9a-411f-a56c-221a74295e8c))
(fp_line (start 1.27 -1.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c1d0177-8d83-4560-bd50-e4ae9894b042))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 690e0a0a-1311-4797-907f-0d6022b6e9e9))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 512cf78a-eac0-491c-95da-1cdbc401d9ec))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "+3V3") (pinfunction "Pin_2") (pintype "passive") (tstamp 650d080e-f04a-4cb3-8a88-0ad00665e707))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "Net-(A2-A4{slash}SDA)") (pinfunction "Pin_3") (pintype "passive") (tstamp ea98eb01-8773-41fe-a3f9-ab8f425bc4ba))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "Net-(A2-A5{slash}SCL)") (pinfunction "Pin_4") (pintype "passive") (tstamp d74cf278-5528-4930-8813-ec6552ab41cd))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)