aboutsummaryrefslogtreecommitdiffstats
path: root/kicad-dart-70/ant_switch.kicad_sch
blob: be2be488111f58579801973af238ea85efe0b60c (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
(kicad_sch (version 20211123) (generator eeschema)

  (uuid 49e0c066-64cd-4c9a-a836-04fb17e46c95)

  (paper "A4")

  (title_block
    (title "DART-70 TRX")
    (date "2023-02-24")
    (rev "0")
    (company "HB9EGM")
    (comment 1 "A 4m Band SSB/CW Transceiver")
  )

  (lib_symbols
    (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 0.254 1.778 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_Small_0_1"
        (polyline
          (pts
            (xy -1.524 -0.508)
            (xy 1.524 -0.508)
          )
          (stroke (width 0.3302) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.524 0.508)
            (xy 1.524 0.508)
          )
          (stroke (width 0.3048) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "C_Small_1_1"
        (pin passive line (at 0 2.54 270) (length 2.032)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -2.54 90) (length 2.032)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "L" (id 0) (at -1.27 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "L" (id 1) (at 1.905 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Inductor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "L_0_1"
        (arc (start 0 -2.54) (mid 0.635 -1.905) (end 0 -1.27)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 0 -1.27) (mid 0.635 -0.635) (end 0 0)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 0 0) (mid 0.635 0.635) (end 0 1.27)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 0 1.27) (mid 0.635 1.905) (end 0 2.54)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "L_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 2.032 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R" (id 1) (at 0 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at -1.778 0 90)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Resistor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_0_1"
        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "R_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Transistor_FET:IRF7309IPBF" (pin_names hide) (in_bom yes) (on_board yes)
      (property "Reference" "Q" (id 0) (at 5.08 1.905 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "IRF7309IPBF" (id 1) (at 5.08 0 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 5.08 -1.905 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Datasheet" "http://www.irf.com/product-info/datasheets/data/irf7309ipbf.pdf" (id 3) (at 2.54 0 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "ki_keywords" "Dual HEXFET N-Channel P-Channel MOSFET" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "3A Id, 30V Vds, Dual HEXFET MOSFET, SO-8" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "IRF7309IPBF_0_1"
        (polyline
          (pts
            (xy 0.254 0)
            (xy -2.54 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.254 1.905)
            (xy 0.254 -1.905)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.762 -1.27)
            (xy 0.762 -2.286)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.762 0.508)
            (xy 0.762 -0.508)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.762 2.286)
            (xy 0.762 1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.54 2.54)
            (xy 2.54 1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.54 -2.54)
            (xy 2.54 0)
            (xy 0.762 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.762 -1.778)
            (xy 3.302 -1.778)
            (xy 3.302 1.778)
            (xy 0.762 1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 1.651 0) (radius 2.794)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 2.54 -1.778) (radius 0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (circle (center 2.54 1.778) (radius 0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
      )
      (symbol "IRF7309IPBF_1_1"
        (polyline
          (pts
            (xy 1.016 0)
            (xy 2.032 0.381)
            (xy 2.032 -0.381)
            (xy 1.016 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (polyline
          (pts
            (xy 2.794 0.508)
            (xy 2.921 0.381)
            (xy 3.683 0.381)
            (xy 3.81 0.254)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 3.302 0.381)
            (xy 2.921 -0.254)
            (xy 3.683 -0.254)
            (xy 3.302 0.381)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin passive line (at 2.54 -5.08 90) (length 2.54)
          (name "S" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -5.08 0 0) (length 2.54)
          (name "G" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 5.08 270) (length 2.54) hide
          (name "D" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 5.08 270) (length 2.54)
          (name "D" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
      )
      (symbol "IRF7309IPBF_2_1"
        (polyline
          (pts
            (xy 2.286 0)
            (xy 1.27 0.381)
            (xy 1.27 -0.381)
            (xy 2.286 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (polyline
          (pts
            (xy 2.794 -0.508)
            (xy 2.921 -0.381)
            (xy 3.683 -0.381)
            (xy 3.81 -0.254)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 3.302 -0.381)
            (xy 2.921 0.254)
            (xy 3.683 0.254)
            (xy 3.302 -0.381)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin passive line (at 2.54 -5.08 90) (length 2.54)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -5.08 0 0) (length 2.54)
          (name "G" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 5.08 270) (length 2.54) hide
          (name "D" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 5.08 270) (length 2.54)
          (name "D" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "mpb:BAT18" (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
      (property "Reference" "D" (id 0) (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "BAT18" (id 1) (at 0 -2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" (id 2) (at 0 1.27 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "diode" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Band Switching Diode" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "SOT-23" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "BAT18_0_1"
        (polyline
          (pts
            (xy -1.27 0)
            (xy 2.54 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.27 1.27)
            (xy -1.27 -1.27)
          )
          (stroke (width 0.2032) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 1.27)
            (xy 1.27 -1.27)
            (xy -1.27 0)
            (xy 1.27 1.27)
          )
          (stroke (width 0.2032) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "BAT18_1_1"
        (pin passive line (at 3.81 0 180) (length 2.54)
          (name "A" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -3.81 0 0) (length 2.54)
          (name "K" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "GND" (id 1) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "global power" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "GND_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 -1.27)
            (xy 1.27 -1.27)
            (xy 0 -2.54)
            (xy -1.27 -1.27)
            (xy 0 -1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "GND_1_1"
        (pin power_in line (at 0 0 270) (length 0) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
  )

  (junction (at 189.23 85.09) (diameter 0) (color 0 0 0 0)
    (uuid 153891b9-9b12-4f50-9a98-ecdbd06a399b)
  )
  (junction (at 152.4 102.87) (diameter 0) (color 0 0 0 0)
    (uuid 2f070657-b135-4fcd-add9-48dd84b3281e)
  )
  (junction (at 109.22 99.06) (diameter 0) (color 0 0 0 0)
    (uuid 4e038311-ee54-49fb-9eb7-c0316874a4cb)
  )
  (junction (at 173.99 87.63) (diameter 0) (color 0 0 0 0)
    (uuid 52204af2-75dc-4c35-95ec-c12043e2307f)
  )
  (junction (at 116.84 106.68) (diameter 0) (color 0 0 0 0)
    (uuid 5c195e8e-51ef-49c0-a13f-73d9081d7b76)
  )
  (junction (at 140.97 90.17) (diameter 0) (color 0 0 0 0)
    (uuid 621e2b11-49a1-4c42-8709-23a714f3c4e2)
  )
  (junction (at 198.12 97.79) (diameter 0) (color 0 0 0 0)
    (uuid 9fd7b84c-2405-465b-9fd7-ab8b858a1d84)
  )
  (junction (at 173.99 77.47) (diameter 0) (color 0 0 0 0)
    (uuid abd3d7f0-3e9f-493a-b389-c8d631cd6d92)
  )
  (junction (at 189.23 97.79) (diameter 0) (color 0 0 0 0)
    (uuid accbcd6f-3bd2-46dd-adf7-4e47b884db68)
  )
  (junction (at 173.99 92.71) (diameter 0) (color 0 0 0 0)
    (uuid bbdd5ec3-2fdb-4f4e-8ca3-94090fca6ef3)
  )
  (junction (at 152.4 77.47) (diameter 0) (color 0 0 0 0)
    (uuid be728c0b-57e2-4a47-a989-4f020c221b31)
  )
  (junction (at 152.4 90.17) (diameter 0) (color 0 0 0 0)
    (uuid c254f54b-a8f6-4337-af4d-274a70d6e004)
  )
  (junction (at 109.22 85.09) (diameter 0) (color 0 0 0 0)
    (uuid c2a0ece2-9b8d-4b20-8cba-e9c3d3e3f810)
  )
  (junction (at 173.99 102.87) (diameter 0) (color 0 0 0 0)
    (uuid fd2f0930-e79f-431b-9ca1-e3da431bd1d6)
  )

  (wire (pts (xy 149.86 77.47) (xy 152.4 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 11a092ce-08c8-4685-8edd-a08960945dfe)
  )
  (wire (pts (xy 189.23 97.79) (xy 189.23 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1952d33e-f83d-4fa3-9ea4-5f4c916e0f60)
  )
  (wire (pts (xy 179.07 102.87) (xy 173.99 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 20e77374-4f6a-4983-afea-f03508261794)
  )
  (wire (pts (xy 143.51 102.87) (xy 144.78 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2453e264-4ce3-4c96-acf4-01177741c22c)
  )
  (wire (pts (xy 149.86 102.87) (xy 152.4 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 24add0fc-2ff9-4238-8775-e5e7ce59f007)
  )
  (wire (pts (xy 173.99 77.47) (xy 179.07 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3461bb47-b8f9-409e-b38c-078e9019a939)
  )
  (wire (pts (xy 189.23 85.09) (xy 199.39 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3f85d3e5-24b2-464d-b539-7a317779db98)
  )
  (wire (pts (xy 173.99 92.71) (xy 173.99 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 46efcdc1-8217-4b61-82c4-634a5a01ea83)
  )
  (wire (pts (xy 173.99 87.63) (xy 173.99 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4bcbf4ee-1407-4ef8-b1ee-8cb5c6ceabe0)
  )
  (wire (pts (xy 152.4 102.87) (xy 152.4 101.6))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4df67a20-605f-41fd-9e23-bcbdaeeb7116)
  )
  (wire (pts (xy 109.22 85.09) (xy 109.22 99.06))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5068bd52-7f9b-495c-a3bb-f0de5c2f2fc5)
  )
  (wire (pts (xy 109.22 81.28) (xy 109.22 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 54b7a788-4d17-4763-b481-60f440329aad)
  )
  (wire (pts (xy 152.4 78.74) (xy 152.4 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 61affa4e-03ee-439a-b834-b8e5cf8411fb)
  )
  (wire (pts (xy 109.22 106.68) (xy 116.84 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6979af95-1ae4-45c2-bdf7-809189064ec8)
  )
  (wire (pts (xy 173.99 102.87) (xy 152.4 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 724e1483-d637-472d-b842-c6e99bf60b8e)
  )
  (wire (pts (xy 173.99 80.01) (xy 173.99 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 73c60a96-4160-4c01-aff6-78edf9094302)
  )
  (wire (pts (xy 116.84 87.63) (xy 130.81 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8cdbf2dd-3737-4ae0-ba34-a6ae8185ec01)
  )
  (wire (pts (xy 116.84 106.68) (xy 116.84 104.14))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8cfe5153-41ff-4df6-b861-d00a4e12c23a)
  )
  (wire (pts (xy 116.84 86.36) (xy 116.84 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9277270e-2158-4fcd-82cd-66e951edddae)
  )
  (wire (pts (xy 189.23 102.87) (xy 186.69 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9551d398-0344-457d-ab9d-233fd3318b05)
  )
  (wire (pts (xy 189.23 85.09) (xy 189.23 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 97347436-cebd-487f-b941-853246632897)
  )
  (wire (pts (xy 198.12 97.79) (xy 207.01 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 98864e62-38d4-4345-97ce-2b42fcdd6813)
  )
  (wire (pts (xy 204.47 85.09) (xy 207.01 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a04e5033-9715-4046-8c41-e47fccbc0e39)
  )
  (wire (pts (xy 116.84 73.66) (xy 116.84 76.2))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a721905c-400f-448b-a61b-eadffb3243f3)
  )
  (wire (pts (xy 105.41 73.66) (xy 116.84 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a7dc42b4-0dc2-40cf-b0ca-2e7be3ce1a0f)
  )
  (wire (pts (xy 140.97 92.71) (xy 138.43 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b0fee6b8-fbc7-468c-89a5-9b06ee7427e9)
  )
  (wire (pts (xy 152.4 90.17) (xy 152.4 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b2006438-ddf9-48ea-8447-04c0ba21d17a)
  )
  (wire (pts (xy 140.97 87.63) (xy 138.43 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b53aa56d-c52e-4df0-93f9-5a39817ebe7d)
  )
  (wire (pts (xy 105.41 85.09) (xy 109.22 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ba3579cb-9cb0-4ad8-bc85-5121de0aa5d7)
  )
  (wire (pts (xy 196.85 97.79) (xy 198.12 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bd06a01f-0b6e-4871-a183-42847ef18529)
  )
  (wire (pts (xy 152.4 86.36) (xy 152.4 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c5a28555-2647-4003-b6b6-74646117a5b8)
  )
  (wire (pts (xy 189.23 77.47) (xy 186.69 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c91cd218-869c-4e14-8439-719fc1cdc3b7)
  )
  (wire (pts (xy 173.99 102.87) (xy 173.99 101.6))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d6d1a0d6-0083-4908-945b-3f28df88dcdc)
  )
  (wire (pts (xy 152.4 77.47) (xy 173.99 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dc0b51d3-093c-40e6-b138-aeaeebcdf0e0)
  )
  (wire (pts (xy 173.99 92.71) (xy 171.45 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e0603f7b-1cb1-41cf-9973-66abc14fd31f)
  )
  (wire (pts (xy 172.72 87.63) (xy 173.99 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e3e62ab7-bd42-4767-8834-29af7758f7dc)
  )
  (wire (pts (xy 116.84 92.71) (xy 116.84 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e3fb1ee0-f285-4888-ba5c-e3fdd5ed2d2f)
  )
  (wire (pts (xy 143.51 77.47) (xy 144.78 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e9dbf9b4-4402-4a4d-8642-7a08879f0cac)
  )
  (wire (pts (xy 140.97 90.17) (xy 152.4 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f1d3c149-ffa2-4918-b4dc-80445a47a501)
  )
  (wire (pts (xy 189.23 77.47) (xy 189.23 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f455072d-c804-4259-ad99-915e17d9c462)
  )
  (wire (pts (xy 140.97 87.63) (xy 140.97 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f61c3947-0dd3-4d7b-bc1c-2f272f23531a)
  )
  (wire (pts (xy 130.81 92.71) (xy 116.84 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f917f3ba-037b-42d7-9e6f-17595b6e9039)
  )
  (wire (pts (xy 140.97 90.17) (xy 140.97 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f971c761-1290-4687-adad-e0546cf92762)
  )

  (text "First try without fitting neither D1 nor D2, and then see if isolation is enough.\n\n+VTX 9V: Q1A conducting, V_{PIN}=0V, D4 blocking, D2 conducting, D1 blocking, D3 conducting. Antenna connected to TX.\n+VTX 0V: Q1B conducting, V_{PIN}=9V, D4 conducting, D2 blocking, D1 conducting, D3 blocking. Antenna connected to RX.\n\nBAT18: approx 1pF with 2V reverse voltage; 0.5Ohm at 10mA forward current, 0.8V drop.\n\n(9V - 5V - 0.8V) / 8mA = 400 Ohm"
    (at 85.09 127 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid d437a213-62ef-4c36-8319-8e53f14fca2d)
  )

  (label "V_{PIN}" (at 142.24 90.17 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 34dd1d82-fdeb-49d3-abd7-0fedf44b7d1d)
  )

  (global_label "+5VA" (shape input) (at 214.63 97.79 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 13ae2b76-8a68-477c-8b9d-872db4fe4e0b)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 222.0021 97.8694 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "+5VA" (shape input) (at 165.1 87.63 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 7d9374c1-90ba-4e6a-b149-35cccd244cc0)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 157.7279 87.5506 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "+VTX" (shape input) (at 105.41 85.09 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 8f2aa2bb-c511-40ad-b333-546f06fb46f4)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 98.1588 85.0106 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "+9VA" (shape input) (at 105.41 73.66 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid a06e011e-6025-42c5-9af1-7b3d03dee29a)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 98.0379 73.5806 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )

  (hierarchical_label "TX" (shape input) (at 143.51 102.87 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 32c683df-f2df-4dd2-b304-65bf10f15433)
  )
  (hierarchical_label "ANT" (shape bidirectional) (at 207.01 85.09 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 723936c0-1cdd-49d2-a843-c47eabc28d9c)
  )
  (hierarchical_label "RX" (shape output) (at 143.51 77.47 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid f3af4332-3cc8-4f94-82ba-b7d8d7f5dab5)
  )

  (symbol (lib_id "mpb:BAT18") (at 182.88 77.47 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 0386d4d2-f79f-4b93-86f1-854306747b7f)
    (property "Reference" "D24" (id 0) (at 182.2958 71.12 0))
    (property "Value" "BAT18" (id 1) (at 182.2958 73.66 0))
    (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" (id 2) (at 182.88 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "/home/bram/Sync/Doc/Datasheet/BAT18-1125947.pdf" (id 3) (at 182.88 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 182.88 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "BAT18" (id 5) (at 182.88 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 428f053c-ac03-4ea9-b7a4-b4ba1df1dc72))
    (pin "3" (uuid 2f2bc2a4-dfae-4211-be65-11b91120e028))
  )

  (symbol (lib_id "Device:C_Small") (at 198.12 100.33 0) (mirror y) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 0edb74b4-a814-48c3-8fab-8abbc699e1ce)
    (property "Reference" "C178" (id 0) (at 200.66 99.0662 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "10nF" (id 1) (at 200.66 101.6062 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 198.12 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 198.12 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A103KXJTBC" (id 4) (at 198.12 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 5) (at 198.12 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cd0323ed-8687-477c-a439-d3d273497a43))
    (pin "2" (uuid 987611d1-18eb-4de6-b891-2b72b9cb38c3))
  )

  (symbol (lib_id "power:GND") (at 116.84 106.68 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 103c5de4-6c24-47ee-bd9e-c0f8da40f3b1)
    (property "Reference" "#PWR057" (id 0) (at 116.84 113.03 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 116.967 109.9058 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
    (property "Footprint" "" (id 2) (at 116.84 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 116.84 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 655fb7ae-333a-40bd-83f3-bcbf101f23e0))
  )

  (symbol (lib_id "mpb:BAT18") (at 173.99 83.82 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 29e03b63-3abe-49c2-94e8-b7ee108d5751)
    (property "Reference" "D1" (id 0) (at 176.53 83.1341 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BAT18" (id 1) (at 176.53 85.6741 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" (id 2) (at 175.26 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "/home/bram/Sync/Doc/Datasheet/BAT18-1125947.pdf" (id 3) (at 173.99 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 173.99 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "BAT18" (id 5) (at 173.99 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 764e5158-6f74-47fa-a151-c324dc7f2e65))
    (pin "3" (uuid cdaf5979-3943-4784-9a40-21bc7297ee12))
  )

  (symbol (lib_id "Device:C_Small") (at 147.32 77.47 270) (mirror x) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2ba41983-4c04-4158-a117-d251215480e8)
    (property "Reference" "C17" (id 0) (at 147.3136 71.12 90))
    (property "Value" "10nF" (id 1) (at 147.3136 73.66 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 147.32 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 147.32 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A103KXJTBC" (id 4) (at 147.32 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 5) (at 147.32 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6a46aa87-2a78-433c-b2b9-7bf348ed2d2c))
    (pin "2" (uuid 9749c9ba-ab85-4eed-be51-639bdc91da5f))
  )

  (symbol (lib_id "Device:R") (at 134.62 92.71 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2fb49f66-f350-41d2-806c-c8967fffe274)
    (property "Reference" "R130" (id 0) (at 134.62 96.52 90))
    (property "Value" "150" (id 1) (at 134.62 99.06 90))
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 134.62 90.932 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 134.62 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 134.62 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1e8abb82-1e2f-4046-9d04-ae0eae20bb9f))
    (pin "2" (uuid 88704b28-5541-401e-8a75-7a460719e3de))
  )

  (symbol (lib_id "Device:L") (at 152.4 97.79 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 3c4bdb2a-0312-40af-af31-ee7314223aaa)
    (property "Reference" "L48" (id 0) (at 153.67 96.5199 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1uH" (id 1) (at 153.67 99.0599 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Inductor_SMD:L_1008_2520Metric_Pad1.43x2.20mm_HandSolder" (id 2) (at 152.4 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 152.4 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "LQW2UAS1R0x0CL" (id 4) (at 152.4 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 5) (at 152.4 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cf0c9ba8-ea85-476c-84b7-e15fbdb4ffcd))
    (pin "2" (uuid 86efeec0-0b02-42b6-959a-d953413b1060))
  )

  (symbol (lib_id "Device:C_Small") (at 201.93 85.09 270) (mirror x) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 43ee07cb-df04-45ff-ab07-f2405b80d5d3)
    (property "Reference" "C181" (id 0) (at 201.9236 78.74 90))
    (property "Value" "10nF" (id 1) (at 201.9236 81.28 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 201.93 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 201.93 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A103KXJTBC" (id 4) (at 201.93 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 5) (at 201.93 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 79da4f1e-7206-4477-929b-7ef558e48ab9))
    (pin "2" (uuid 8e171375-089d-4cdc-b53a-15d09676a67e))
  )

  (symbol (lib_id "Device:R") (at 210.82 97.79 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4ac8eeac-5cca-4d5c-acdb-998ed4f7abdd)
    (property "Reference" "R197" (id 0) (at 210.82 91.44 90))
    (property "Value" "100" (id 1) (at 210.82 93.98 90))
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 210.82 99.568 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 210.82 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 210.82 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 78b7ca27-5e8f-4c8a-8383-830ce5670494))
    (pin "2" (uuid 587d3f3a-5c87-47a2-b1eb-b3ac7a4622e0))
  )

  (symbol (lib_id "Transistor_FET:IRF7309IPBF") (at 114.3 99.06 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 5f18b6e7-49e8-483b-b794-98e50109d6b9)
    (property "Reference" "Q26" (id 0) (at 120.65 99.0599 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "IRF7309" (id 1) (at 120.65 100.3299 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 119.38 100.965 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "/home/bram/Sync/Doc/Datasheet/IRF7309.pdf" (id 3) (at 116.84 99.06 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "MPN" "IRF7309TRPBF" (id 4) (at 114.3 99.06 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 5) (at 114.3 99.06 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 93ff6cf1-3226-48a8-bba6-c6a07cd5d59f))
    (pin "2" (uuid 65dd9965-da6d-4ad9-a127-b5b19bc30dd6))
    (pin "7" (uuid 52ce92f2-1ffd-4301-ad91-7912aa18a290))
    (pin "8" (uuid 3439c2d4-6dda-486d-94ea-30e39ae5984b))
    (pin "3" (uuid ba8cc049-c105-4de1-878b-b1dbe6de7d57))
    (pin "4" (uuid 4e37fb9e-80ab-4142-a214-915c8a797024))
    (pin "5" (uuid d21acb24-22d5-4f00-99de-a550b2e303b5))
    (pin "6" (uuid 97974bf9-8a18-4bae-af65-2a4432a530f7))
  )

  (symbol (lib_id "Transistor_FET:IRF7309IPBF") (at 114.3 81.28 0) (mirror x) (unit 2)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 623ec9aa-65d9-4a8d-8578-f5fbf5770ed4)
    (property "Reference" "Q26" (id 0) (at 120.65 80.0099 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "IRF7309" (id 1) (at 120.65 82.5499 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 119.38 79.375 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "/home/bram/Sync/Doc/Datasheet/IRF7309.pdf" (id 3) (at 116.84 81.28 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "MPN" "IRF7309TRPBF" (id 5) (at 114.3 81.28 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 114.3 81.28 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d98f2c33-a62f-4cf8-87a2-61168649f191))
    (pin "2" (uuid bdee35fb-588c-4510-94fc-9a9ca1702855))
    (pin "7" (uuid 4c5df834-caa7-40ab-8e75-6d6bbfd257bb))
    (pin "8" (uuid c1dec542-6b7e-4205-9ad8-759154cc29f3))
    (pin "3" (uuid 50dafb67-9e1c-4131-a47d-3968c0adc896))
    (pin "4" (uuid b2e131ab-b000-4f69-bb30-eade55bc29d6))
    (pin "5" (uuid bd56ada1-e951-4385-979d-819ceb3409da))
    (pin "6" (uuid e431edd8-3ba0-4730-9a78-adeb66230727))
  )

  (symbol (lib_id "mpb:BAT18") (at 182.88 102.87 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 68594239-e6ee-4f12-bf7b-91e58ba88563)
    (property "Reference" "D25" (id 0) (at 183.4642 106.68 0))
    (property "Value" "BAT18" (id 1) (at 183.4642 109.22 0))
    (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" (id 2) (at 182.88 101.6 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "/home/bram/Sync/Doc/Datasheet/BAT18-1125947.pdf" (id 3) (at 182.88 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 182.88 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "BAT18" (id 5) (at 182.88 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 23a2f643-dad7-4d04-b702-e8b58b64a918))
    (pin "3" (uuid a4d14887-7886-4b58-9b49-2ad793aa8929))
  )

  (symbol (lib_id "Device:L") (at 193.04 97.79 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8658dfaa-39b8-4a1e-a53c-e42c215541eb)
    (property "Reference" "L49" (id 0) (at 193.04 91.44 90))
    (property "Value" "1uH" (id 1) (at 193.04 93.98 90))
    (property "Footprint" "Inductor_SMD:L_1008_2520Metric_Pad1.43x2.20mm_HandSolder" (id 2) (at 193.04 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 193.04 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "LQW2UAS1R0x0CL" (id 4) (at 193.04 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 5) (at 193.04 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 23aef98d-02e4-4bd9-a725-ad226f802df2))
    (pin "2" (uuid ea750df2-4295-40e8-aeb0-05aa8ac6977b))
  )

  (symbol (lib_id "Device:R") (at 109.22 102.87 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8a623977-5088-44ce-af4f-9983a91745ae)
    (property "Reference" "R11" (id 0) (at 106.68 101.5999 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "100k" (id 1) (at 106.68 104.1399 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 107.442 102.87 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 109.22 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 109.22 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 527bd9f2-4891-4fe8-b9af-da5a1c720603))
    (pin "2" (uuid b6e84f4f-67e2-41e6-ace2-2bf5815b999d))
  )

  (symbol (lib_id "mpb:BAT18") (at 173.99 97.79 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9ad28677-58d4-4780-a7da-a89ffdca0138)
    (property "Reference" "D2" (id 0) (at 176.53 97.1041 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BAT18" (id 1) (at 176.53 99.6441 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" (id 2) (at 175.26 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "/home/bram/Sync/Doc/Datasheet/BAT18-1125947.pdf" (id 3) (at 173.99 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 173.99 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "BAT18" (id 5) (at 173.99 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 313fc88d-b7bb-45d8-b174-0f8eb91ad211))
    (pin "3" (uuid b17236e8-8522-42df-b145-f2ec9372b4f3))
  )

  (symbol (lib_id "Device:C_Small") (at 147.32 102.87 270) (mirror x) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid c3f45427-299e-417f-bff2-861c449ee20d)
    (property "Reference" "C116" (id 0) (at 147.3136 96.52 90))
    (property "Value" "10nF" (id 1) (at 147.3136 99.06 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 147.32 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 147.32 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A103KXJTBC" (id 4) (at 147.32 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 5) (at 147.32 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ef2661f6-aa0f-4e20-9137-eb657d4ca664))
    (pin "2" (uuid 419da996-26b2-4c96-9a6a-2c91d35fc9b7))
  )

  (symbol (lib_id "power:GND") (at 166.37 92.71 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid c9b88ebc-a641-41e9-8965-6c72108b173b)
    (property "Reference" "#PWR060" (id 0) (at 160.02 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 167.64 92.7099 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "" (id 2) (at 166.37 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 166.37 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 45431499-3c9a-4a83-b0d9-e80c9d69a4b7))
  )

  (symbol (lib_id "Device:R") (at 168.91 87.63 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid cb4e6116-71be-4743-813c-79e91dc420a8)
    (property "Reference" "R133" (id 0) (at 168.91 81.28 90))
    (property "Value" "100" (id 1) (at 168.91 83.82 90))
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 168.91 85.852 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 168.91 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 168.91 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9c20ca28-78ea-42a3-bea2-331c69a49967))
    (pin "2" (uuid 15e346c2-7150-4714-a444-560bb08043d7))
  )

  (symbol (lib_id "Device:C_Small") (at 168.91 92.71 270) (mirror x) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid dbf9bfef-eaa6-4865-9638-cc6286eaf1d1)
    (property "Reference" "C119" (id 0) (at 168.9036 96.52 90))
    (property "Value" "10nF" (id 1) (at 168.9036 99.06 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 168.91 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 168.91 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A103KXJTBC" (id 4) (at 168.91 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 5) (at 168.91 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6d78c2bf-d265-4ecd-91dc-bc05392cfc95))
    (pin "2" (uuid 7213c6f5-4111-44a3-bfb1-e64278f4176c))
  )

  (symbol (lib_id "power:GND") (at 198.12 102.87 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid ebdadbe9-1b81-4670-8783-965af20e86f2)
    (property "Reference" "#PWR06" (id 0) (at 198.12 109.22 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 198.1199 101.6 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "" (id 2) (at 198.12 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 198.12 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6c1ffa83-e07d-4ea2-944d-e287bf7c7794))
  )

  (symbol (lib_id "Device:L") (at 152.4 82.55 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid f86c608b-89b9-4c69-adc9-c0a475e63f40)
    (property "Reference" "L1" (id 0) (at 153.67 81.2799 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1uH" (id 1) (at 153.67 83.8199 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Inductor_SMD:L_1008_2520Metric_Pad1.43x2.20mm_HandSolder" (id 2) (at 152.4 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 152.4 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "LQW2UAS1R0x0CL" (id 4) (at 152.4 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 5) (at 152.4 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid edaba6bd-acab-4079-b5cc-ba1cfde0a890))
    (pin "2" (uuid adc9f786-33a7-4fcb-a164-e2bc7f0cece5))
  )

  (symbol (lib_id "Device:R") (at 134.62 87.63 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid f9e7540b-2ab5-4277-b326-412bdfa7c893)
    (property "Reference" "R12" (id 0) (at 134.62 81.28 90))
    (property "Value" "150" (id 1) (at 134.62 83.82 90))
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 134.62 85.852 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 134.62 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 134.62 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c4fae0ae-fcd5-4768-9f6a-0a433ce52758))
    (pin "2" (uuid 87305d2d-3a9c-4848-b00f-2cdf8ebeee2e))
  )
)