-
Notifications
You must be signed in to change notification settings - Fork 1
/
altimeter.net
2060 lines (2060 loc) · 88.4 KB
/
altimeter.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(export (version D)
(design
(source /home/thomas/Projects/altimeter/alturia-pcb/altimeter.sch)
(date "Sat May 23 22:58:11 2020")
(tool "Eeschema 5.1.6")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev "v 1.2 rev.A")
(date)
(source altimeter.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Connectors/) (tstamps /5D3DE309/)
(title_block
(title)
(company)
(rev "v 1.2 rev.A")
(date)
(source Connectors.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name "/Pyro Output Stage 0/") (tstamps /5D473C9B/)
(title_block
(title)
(company)
(rev "v 1.2 rev.A")
(date)
(source pyro_outputstage.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name "/Pyro Output Stage 1/") (tstamps /5D488E46/)
(title_block
(title)
(company)
(rev "v 1.2 rev.A")
(date)
(source pyro_outputstage.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name "/Pyro Output Stage 2/") (tstamps /5D48B429/)
(title_block
(title)
(company)
(rev "v 1.2 rev.A")
(date)
(source pyro_outputstage.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name "/Pyro Output Stage 3/") (tstamps /5D4E7D5B/)
(title_block
(title)
(company)
(rev "v 1.2 rev.A")
(date)
(source pyro_outputstage.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U107)
(value MS5611-01BA)
(footprint Package_LGA:LGA-8_3x5mm_P1.25mm)
(datasheet https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=MS5611-01BA03&DocType=Data+Sheet&DocLang=English)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Measurement-Specialties/MS560702BA03-50?qs=%2Fha2pyFaduj7bZYAXiWvnF9nCQuPCYCW%252BbRwaRxHKSrn25fabmNd%252BQ%3D%3D)
(field (name Parnumber) "MS560702BA03-50 "))
(libsource (lib Sensor_Pressure) (part MS5611-01BA) (description "Barometric pressure sensor, 10cm resolution, 10 to 1200 mbar, I2C and SPI interface up to 20MHz, LGA-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3C7446))
(comp (ref C101)
(value 20p)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Murata-Electronics/GCM1555G1H220JA16D?qs=sGAEpiMZZMs0AnBnWHyRQAsAWwhBCY7bDLShlSp46t28ceXO6IsPuQ%3D%3D)
(field (name Parnumber) GCM1555G1H220JA16D))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4147AB))
(comp (ref C102)
(value 20p)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Murata-Electronics/GCM1555G1H220JA16D?qs=sGAEpiMZZMs0AnBnWHyRQAsAWwhBCY7bDLShlSp46t28ceXO6IsPuQ%3D%3D)
(field (name Parnumber) GCM1555G1H220JA16D))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D415036))
(comp (ref Q101)
(value DMG2301L)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Diodes-Incorporated/DMG2301L-7?qs=sGAEpiMZZMshyDBzk1%2FWi7D7EaJfF%252Bz4L6K6mPI5IG5tw42rmqyxiA%3D%3D)
(field (name Parnumber) DMG2301L-7))
(libsource (lib Device) (part Q_PMOS_GSD) (description "P-MOSFET transistor, gate/source/drain"))
(sheetpath (names /) (tstamps /))
(tstamp 5D449B6D))
(comp (ref R104)
(value 100k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402100KFKED?qs=sGAEpiMZZMu61qfTUdNhG2DpbjADlD3GqPf2An0kBCw%3D)
(field (name Parnumber) CRCW0402100KFKEDC))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D467D2B))
(comp (ref R103)
(value 100k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402100KFKED?qs=sGAEpiMZZMu61qfTUdNhG2DpbjADlD3GqPf2An0kBCw%3D)
(field (name Parnumber) CRCW0402100KFKEDC))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D46D6CD))
(comp (ref C106)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4A24CA))
(comp (ref C104)
(value 4.7u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/KEMET/C0805C104Z3VACTU?qs=sGAEpiMZZMs0AnBnWHyRQFCCI5cSbRT%2FdZzrd8bbt%252Bc%3D)
(field (name Parnumber) C0805C104Z3VACTU))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4E220F))
(comp (ref C107)
(value 4.7u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Taiyo-Yuden/EMK107BJ225MA-T?qs=sGAEpiMZZMs0AnBnWHyRQPSjYu%2Fkbgu8gi8YbsqojVfHLlKjG2ASkw%3D%3D)
(field (name Parnumber) EMK107BJ225MA-T))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4E8D23))
(comp (ref C108)
(value 2.2u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Taiyo-Yuden/EMK107ABJ475KA-T?qs=sGAEpiMZZMsh%252B1woXyUXjzXZPAgA2%252BEM0YjaF6PuMqo%3D)
(field (name Parnumber) EMK107ABJ475KA-T))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4FB37A))
(comp (ref U103)
(value AIS2120SXTR)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/STMicroelectronics/AIS2120SXTR?qs=%2Fha2pyFadugZjNTqMEitk1TqmZGE9nJR7UIHc%2FlvT7bsDzSJaWYiUA%3D%3D)
(field (name Parnumber) AIS2120SXTR))
(libsource (lib altimeter) (part AIS2120SXTR) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D5C1996))
(comp (ref C103)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Yageo/CC0603KRX5R8BB105?qs=sGAEpiMZZMs0AnBnWHyRQIOKs%2FDjbJvGM2Qk4x9TyVw%3D)
(field (name Parnumber) CC0603KRX5R8BB105))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D5CEC78))
(comp (ref C2)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4B52BB))
(comp (ref C1)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4BEA31))
(comp (ref C3)
(value 1m)
(footprint Capacitor_THT:CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Illinois-Capacitor-CDE/337TTA016M?qs=3tP%252BN51vMXcJjE4PHk19Og%3D%3D)
(field (name Parnumber) "337TTA016M "))
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4D611A))
(comp (ref U1)
(value LMV331)
(footprint Package_TO_SOT_SMD:SOT-353_SC-70-5)
(datasheet http://www.ti.com/lit/ds/symlink/lmv331.pdf)
(fields
(field (name Mouser_Link) https://www.mouser.de/datasheet/2/115/LMV331_393-335820.pdf)
(field (name Parnumber) LMV331SE-7))
(libsource (lib Comparator) (part LMV331) (description "Single General-Purpose Low-Voltage Comparator, SOT-23-5/SC-70-5"))
(sheetpath (names /) (tstamps /))
(tstamp 5D501785))
(comp (ref Y1)
(value Crystal_GND24)
(footprint Crystal:Crystal_SMD_2016-4Pin_2.0x1.6mm)
(datasheet https://www.mouser.de/datasheet/2/122/ECX-1637B-1633271.pdf)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/ECS/ECS-160-12-37B-CTN-TR?qs=%2Fha2pyFadujvhxBwFsOldwE2gAFaayUwHG1acvMOXAgHbMYRHo7ofA%3D%3D)
(field (name Parnumber) ECS-160-12-37B-CTN-TR))
(libsource (lib Device) (part Crystal_GND24) (description "Four pin crystal, GND on pins 2 and 4"))
(sheetpath (names /) (tstamps /))
(tstamp 5D515671))
(comp (ref R2)
(value 220k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402220KFKED?qs=sGAEpiMZZMu61qfTUdNhG2DpbjADlD3G5pQ69okwQNw%3D)
(field (name Parnumber) CRCW0402220KFKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D4C5890))
(comp (ref R1)
(value 68k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402768K0FKEDC)
(field (name Parnumber) CRCW040268K0FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D4C75D7))
(comp (ref Q102)
(value NTR4003NT1G)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/ON-Semiconductor/NTR4003NT1G?qs=sGAEpiMZZMshyDBzk1%2FWi4hQ7dFcTtZiRq92fftwFXs%3D)
(field (name Parnumber) NTR4003NT1G))
(libsource (lib Device) (part Q_NMOS_GSD) (description "N-MOSFET transistor, gate/source/drain"))
(sheetpath (names /) (tstamps /))
(tstamp 5D54DF32))
(comp (ref LS101)
(value Speaker_Crystal)
(footprint altimeter:CSS-95B30-SMT)
(datasheet https://www.mouser.de/datasheet/2/670/css-95b30-smt-1311901.pdf)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/CUI/CSS-95B30-SMT-TR?qs=%2Fha2pyFadujUtUiS6nVN8UjFiyT71DSqrQ1WhaWeieDQerreQwEnLQ%3D%3D)
(field (name Parnumber) "CSS-95B30-SMT-TR "))
(libsource (lib Device) (part Speaker_Crystal) (description "Crystal speaker/transducer"))
(sheetpath (names /) (tstamps /))
(tstamp 5D553764))
(comp (ref D103)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/ON-Semiconductor-Fairchild/1N4148WS?qs=sGAEpiMZZMtoHjESLttvkr4bXZrJfFziTdC5C0Y1oek%3D)
(field (name Parnumber) 1N4148WS))
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 5D5C2008))
(comp (ref U106)
(value BMI088)
(footprint altimeter:BMI088)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Bosch-Sensortec/BMI088?qs=sGAEpiMZZMve4%2FbfQkoj%252BKNIMLZP%2FhAQsZAKYu1PzHs%3D)
(field (name Parnumber) BMI088))
(libsource (lib altimeter) (part BMI088) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D631374))
(comp (ref C109)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D6E0200))
(comp (ref C110)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D704C25))
(comp (ref C111)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D512E0A))
(comp (ref C113)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D513394))
(comp (ref C115)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D51377B))
(comp (ref C116)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D513A48))
(comp (ref C112)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D51426E))
(comp (ref C114)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D514560))
(comp (ref R102)
(value 2.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW04022K70FKEDC?qs=sGAEpiMZZMu61qfTUdNhG9bvwnXh9sSrHB5zaMHoC9p2GBlct%252B1VIg%3D%3D)
(field (name Parnumber) CRCW04022K70FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D570C1E))
(comp (ref Q103)
(value SISS05dn)
(footprint Package_SO:Vishay_PowerPAK_1212-8_Single)
(datasheet https://www.mouser.de/datasheet/2/427/siss05dn-1595673.pdf)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Siliconix/SISS05DN-T1-GE3?qs=%2Fha2pyFadugz6r8MF7HjV9XJLYucB9iA801wzI6YUU8%3D)
(field (name Parnumber) SISS05DN-T1-GE3))
(libsource (lib altimeter) (part SI7149ADP) (description "P-MOSFET transistor, drain/gate/source"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7A8BFD))
(comp (ref R106)
(value 2.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW04022K70FKEDC?qs=sGAEpiMZZMu61qfTUdNhG9bvwnXh9sSrHB5zaMHoC9p2GBlct%252B1VIg%3D%3D)
(field (name Parnumber) CRCW04022K70FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D87B7D0))
(comp (ref U102)
(value MT25Q_W9)
(footprint altimeter:micron-wpdfn_8x6mm)
(datasheet https://www.micron.com/-/media/client/global/documents/products/data-sheet/nor-flash/serial-nor/mt25q/die-rev-b/mt25q_qlkt_l_512_abb_0.pdf?rev=9954479269714be9aaffbf716642c35f)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Micron/MT25QL512ABB1EW9-0SIT?qs=sGAEpiMZZMtI%252BQ06EiAoG%252BAe0qJpJIMLZ3oBAzI5jlY%3D)
(field (name Parnumber) MT25QL512ABB1EW9-0SIT))
(libsource (lib altimeter) (part MT25Q_W9) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EBDF007))
(comp (ref U105)
(value LDL212)
(footprint Package_DFN_QFN:DFN-6-1EP_3x3mm_P0.95mm_EP1.7x2.6mm)
(datasheet https://www.st.com/resource/en/datasheet/ldl212.pdf)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/STMicroelectronics/LDL212PU50R?qs=sGAEpiMZZMsGz1a6aV8DcBSoZqFSANO3dLAhEqRmCNA%3D)
(field (name Parnumber) "LDL212PU50R "))
(libsource (lib altimeter) (part LDL212) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EBEE69E))
(comp (ref D101)
(value LED_RGBA)
(footprint altimeter:SMD_RGB_LED)
(datasheet https://www.mouser.de/datasheet/2/445/150080M153000-1714255.pdf)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/150080M153000?qs=sGAEpiMZZMseGfSY3csMkdgyOOAg6kv2ATVeB2UaEgWtXXrdgl5jsw==)
(field (name Parnumber) "150080M153000 "))
(libsource (lib Device) (part LED_RGBA) (description "RGB LED, red/green/blue/anode"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2C799D))
(comp (ref R107)
(value 680)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402680RFKED?qs=sGAEpiMZZMu61qfTUdNhG2DpbjADlD3GyuaBeN1cc%2FA%3D)
(field (name Parnumber) CRCW0402680RFKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F2CCFC2))
(comp (ref R105)
(value 680)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402680RFKED?qs=sGAEpiMZZMu61qfTUdNhG2DpbjADlD3GyuaBeN1cc%2FA%3D)
(field (name Parnumber) CRCW0402680RFKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F2DB955))
(comp (ref R101)
(value 680)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402680RFKED?qs=sGAEpiMZZMu61qfTUdNhG2DpbjADlD3GyuaBeN1cc%2FA%3D)
(field (name Parnumber) CRCW0402680RFKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F2DBCF2))
(comp (ref C118)
(value 2.2u)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5ED273B6))
(comp (ref C117)
(value 2.2u)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5ED279E2))
(comp (ref C119)
(value 1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Taiyo-Yuden/EMK107BJ225MA-T?qs=sGAEpiMZZMs0AnBnWHyRQPSjYu%2Fkbgu8gi8YbsqojVfHLlKjG2ASkw%3D%3D)
(field (name Parnumber) EMK107BJ225MA-T))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5ED56924))
(comp (ref U108)
(value STM32F405RGTx)
(footprint Package_QFP:LQFP-64_10x10mm_P0.5mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00037051.pdf)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/STMicroelectronics/STM32F405RGT7?qs=sGAEpiMZZMvh0aGzCjJ9ppxwOvp%252BLF2Y)
(field (name Parnumber) "STM32F405RGT7 "))
(libsource (lib MCU_ST_STM32F4) (part STM32F405RGTx) (description "ARM Cortex-M4 MCU, 1024KB flash, 128KB RAM, 168MHz, 1.8-3.6V, 51 GPIO, LQFP-64"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC965AC))
(comp (ref R108)
(value 2.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5EC2A71C))
(comp (ref C120)
(value 4.7u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/KEMET/C0805C104Z3VACTU?qs=sGAEpiMZZMs0AnBnWHyRQFCCI5cSbRT%2FdZzrd8bbt%252Bc%3D)
(field (name Parnumber) C0805C104Z3VACTU))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF34CA7))
(comp (ref C121)
(value 4.7u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/KEMET/C0805C104Z3VACTU?qs=sGAEpiMZZMs0AnBnWHyRQFCCI5cSbRT%2FdZzrd8bbt%252Bc%3D)
(field (name Parnumber) C0805C104Z3VACTU))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF35156))
(comp (ref C122)
(value 4.7u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/KEMET/C0805C104Z3VACTU?qs=sGAEpiMZZMs0AnBnWHyRQFCCI5cSbRT%2FdZzrd8bbt%252Bc%3D)
(field (name Parnumber) C0805C104Z3VACTU))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF36AD0))
(comp (ref C123)
(value 4.7u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/KEMET/C0805C104Z3VACTU?qs=sGAEpiMZZMs0AnBnWHyRQFCCI5cSbRT%2FdZzrd8bbt%252Bc%3D)
(field (name Parnumber) C0805C104Z3VACTU))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF36FB4))
(comp (ref C124)
(value 4.7u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Taiyo-Yuden/EMK107ABJ475KA-T?qs=sGAEpiMZZMsh%252B1woXyUXjzXZPAgA2%252BEM0YjaF6PuMqo%3D)
(field (name Parnumber) EMK107ABJ475KA-T))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F00270B))
(comp (ref U101)
(value TLV767)
(footprint altimeter:TI_WSON_TLV767)
(datasheet http://www.ti.com/lit/ds/symlink/tlv767.pdf?HQS=TI-null-null-mousermode-df-pf-null-wwe&DCM=yes&ref_url=https%3A%2F%2Fwww.mouser.de%2F&distId=26)
(fields
(field (name Mouser_Link) https://www.mouser.de/Texas-Instruments/Semiconductors/Power-Management-ICs/Voltage-Regulators-Voltage-Controllers/LDO-Voltage-Regulators/TLV767-Series/_/N-5cgac?P=1y8t43uZ1z0zls6Z1z0wa2e)
(field (name Parnumber) TLV76733DRVR))
(libsource (lib altimeter) (part TLV767) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EDCD084))
(comp (ref J202)
(value Conn_ARM_JTAG_SWD_10)
(footprint Connector_PinHeader_2.00mm:PinHeader_2x05_P2.00mm_Vertical_SMD)
(datasheet http://infocenter.arm.com/help/topic/com.arm.doc.ddi0314h/DDI0314H_coresight_components_trm.pdf)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Amphenol-FCI/57202-G51-05LF?qs=EpiMZZMs%252BGHln7q6pm24n0txessAMKkUfqCysfDA%3D)
(field (name Parnumber) "57202-G51-05LF "))
(libsource (lib Connector) (part Conn_ARM_JTAG_SWD_10) (description "Cortex Debug Connector, standard ARM Cortex-M SWD and JTAG interface"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5D3DE887))
(comp (ref J201)
(value Conn_01x10)
(footprint Connector_Molex:Molex_MicroClasp_55935-1010_1x10_P2.00mm_Horizontal)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Molex/55935-1010?qs=%2Fha2pyFaduj3M7T2a9STTQYVOGeLuTIxWP1L4Ymmci%252BgjL3enOzonYHkRZDnKq9I)
(field (name Parnumber) "55935-1010 "))
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5D607587))
(comp (ref J205)
(value Conn_01x04)
(footprint Connector_Molex:Molex_PicoBlade_53048-0410_1x04_P1.25mm_Horizontal)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Molex/53048-0410?qs=%2Fha2pyFaduhazv%252BrzlAyvQZXU%2FDmMavUdv7l26oboIbszvaUNyo%252Bpw2d6Y81NNYE)
(field (name Parnumber) 53048-0410))
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5D616D6A))
(comp (ref J203)
(value Conn_02x03_Counter_Clockwise)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Horizontal)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Harwin/M20-9740346?qs=sGAEpiMZZMs%252BGHln7q6pmzlZUuX%2F53qj2xUq9U8k%252BE4%3D)
(field (name Parnumber) M20-9740346))
(libsource (lib Connector_Generic) (part Conn_02x03_Odd_Even) (description "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5D61EC32))
(comp (ref H201)
(value MountingHole)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5D62934E))
(comp (ref H202)
(value MountingHole)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5D62B183))
(comp (ref J204)
(value USB_B_Micro)
(footprint Connector_USB:USB_Micro-B_Molex-105017-0001)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Molex/105017-0001?qs=sGAEpiMZZMulM8LPOQ%252BykxkHE97o%2FWJn1YkS%2FQp33f4%3D)
(field (name Parnumber) "105017-0001 "))
(libsource (lib Connector) (part USB_B_Micro) (description "USB Micro Type B connector"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5D5D0BB5))
(comp (ref R201)
(value 1.5k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW04021K50FKED?qs=sGAEpiMZZMu61qfTUdNhG2DpbjADlD3Gu1a8Ybkd9F8%3D)
(field (name Parnumber) CRCW04021K50FKEDC))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5D5D0BD6))
(comp (ref C201)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5D577CD8))
(comp (ref C202)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5D5800D9))
(comp (ref C203)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Wurth-Elektronik/885012205037?qs=sGAEpiMZZMs0AnBnWHyRQEGbLOF2VP1iQ21DRO%252BfKQRXXkG1Pup5LQ%3D%3D)
(field (name Parnumber) 885012205037))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5D584D8C))
(comp (ref U201)
(value USBLC6-2P6)
(footprint Package_TO_SOT_SMD:SOT-666)
(datasheet http://www2.st.com/resource/en/datasheet/CD00050750.pdf)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/STMicroelectronics/USBLC6-2SC6?qs=sGAEpiMZZMvxHShE6Whpu%2FcIE2H5IOBdvREMGHqn6h0%3D)
(field (name Parnumber) USBLC6-2SC6))
(libsource (lib altimeter-rescue) (part USBLC6-2SC6-Power_Protection) (description ""))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5D7DF314))
(comp (ref J206)
(value Conn_01x10_MountingPin)
(footprint Connector_Molex:Molex_PicoBlade_53398-1071_1x10-1MP_P1.25mm_Vertical)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Molex/53398-1071?qs=%2Fha2pyFaduhYrC0nzbiX9cKRUf%2FVssYiuUxFMhDDvKdlRqeC7ZSoLJfREeJWSxiv)
(field (name Parnumber) 53398-1071))
(libsource (lib Connector_Generic_MountingPin) (part Conn_01x10_MountingPin) (description "Generic connectable mounting pin connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5F26AAFB))
(comp (ref U202)
(value ATA6561)
(footprint Package_DFN_QFN:DFN-8-1EP_3x3mm_P0.65mm_EP1.55x2.4mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/20005991B.pdf)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Microchip-Technology/ATA6561-GBQW-N?qs=sGAEpiMZZMve4%2FbfQkoj%252BI%2F7t6KV9V5GttbTFJRO2QE%3D)
(field (name Parnumber) ATA6561-GBQW-N))
(libsource (lib altimeter) (part ATA6561) (description ""))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5F31CB3C))
(comp (ref C204)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5EC7B23E))
(comp (ref C205)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5EC7B77C))
(comp (ref R202)
(value 120)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/datasheet/2/315/AOA0000C304-1149620.pdf)
(field (name Parnumber) ERJ-6RBD1200V))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Connectors/) (tstamps /5D3DE309/))
(tstamp 5EF194ED))
(comp (ref R302)
(value 33)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/TE-Connectivity-Neohm/CPF0402B33RE1?qs=sGAEpiMZZMu61qfTUdNhGxAfPTOoMd3M04DSieB%252B0Z0%3D)
(field (name Parnumber) CPF0402B33RE1))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 0/") (tstamps /5D473C9B/))
(tstamp 5D4757F5))
(comp (ref R303)
(value 2.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW04022K70FKEDC?qs=sGAEpiMZZMu61qfTUdNhG9bvwnXh9sSrHB5zaMHoC9p2GBlct%252B1VIg%3D%3D)
(field (name Parnumber) CRCW04022K70FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 0/") (tstamps /5D473C9B/))
(tstamp 5D47580C))
(comp (ref R301)
(value 2.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW04022K70FKEDC?qs=sGAEpiMZZMu61qfTUdNhG9bvwnXh9sSrHB5zaMHoC9p2GBlct%252B1VIg%3D%3D)
(field (name Parnumber) CRCW04022K70FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 0/") (tstamps /5D473C9B/))
(tstamp 5D475828))
(comp (ref Q301)
(value BC848CDW1T1G)
(footprint Package_TO_SOT_SMD:SOT-363_SC-70-6)
(datasheet http://www.onsemi.com/pub_link/Collateral/BC846BDW1T1-D.PDF)
(fields
(field (name Mouser_Link) https://www.mouser.de/manufacturer/on-semiconductor/)
(field (name Parnumber) BC848CDW1T1G))
(libsource (lib Transistor_BJT) (part BC847BDW1) (description "100mA IC, 45V Vce, Dual NPN/NPN Transistors, SOT-363"))
(sheetpath (names "/Pyro Output Stage 0/") (tstamps /5D473C9B/))
(tstamp 5D475835))
(comp (ref U301)
(value SI7232DN)
(footprint Package_SO:Vishay_PowerPAK_1212-8_Dual)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Siliconix/SI7232DN-T1-GE3?qs=%2Fha2pyFaduiZCEC0X5XOlemXjOWX3oZDDwY4%252BOM6S%252B4%3D)
(field (name Parnumber) "SI7232DN-T1-GE3 "))
(libsource (lib altimeter) (part SI7232DN) (description ""))
(sheetpath (names "/Pyro Output Stage 0/") (tstamps /5D473C9B/))
(tstamp 5D4F79DE))
(comp (ref F301)
(value Polyfuse)
(footprint Fuse:Fuse_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Bel-Fuse/0ZCM0008FF2G?qs=sGAEpiMZZMsxR%252BBXi4wRUHZtKAyWcVPAeoO9zfZPDm1Bddpp1KgY1Q%3D%3D)
(field (name Parnumber) 0ZCM0008FF2G))
(libsource (lib Device) (part Polyfuse) (description "Resettable fuse, polymeric positive temperature coefficient"))
(sheetpath (names "/Pyro Output Stage 0/") (tstamps /5D473C9B/))
(tstamp 5D6F3FF8))
(comp (ref R3)
(value 68k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402768K0FKEDC)
(field (name Parnumber) CRCW040268K0FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 0/") (tstamps /5D473C9B/))
(tstamp 5D4D8D4C))
(comp (ref R4)
(value 220k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402220KFKED?qs=sGAEpiMZZMu61qfTUdNhG2DpbjADlD3G5pQ69okwQNw%3D)
(field (name Parnumber) CRCW0402220KFKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 0/") (tstamps /5D473C9B/))
(tstamp 5D4D933B))
(comp (ref R402)
(value 33)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/TE-Connectivity-Neohm/CPF0402B33RE1?qs=sGAEpiMZZMu61qfTUdNhGxAfPTOoMd3M04DSieB%252B0Z0%3D)
(field (name Parnumber) CPF0402B33RE1))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 1/") (tstamps /5D488E46/))
(tstamp 5D4757F5))
(comp (ref R403)
(value 2.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW04022K70FKEDC?qs=sGAEpiMZZMu61qfTUdNhG9bvwnXh9sSrHB5zaMHoC9p2GBlct%252B1VIg%3D%3D)
(field (name Parnumber) CRCW04022K70FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 1/") (tstamps /5D488E46/))
(tstamp 5D47580C))
(comp (ref R401)
(value 2.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW04022K70FKEDC?qs=sGAEpiMZZMu61qfTUdNhG9bvwnXh9sSrHB5zaMHoC9p2GBlct%252B1VIg%3D%3D)
(field (name Parnumber) CRCW04022K70FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 1/") (tstamps /5D488E46/))
(tstamp 5D475828))
(comp (ref Q401)
(value BC848CDW1T1G)
(footprint Package_TO_SOT_SMD:SOT-363_SC-70-6)
(datasheet http://www.onsemi.com/pub_link/Collateral/BC846BDW1T1-D.PDF)
(fields
(field (name Mouser_Link) https://www.mouser.de/manufacturer/on-semiconductor/)
(field (name Parnumber) BC848CDW1T1G))
(libsource (lib Transistor_BJT) (part BC847BDW1) (description "100mA IC, 45V Vce, Dual NPN/NPN Transistors, SOT-363"))
(sheetpath (names "/Pyro Output Stage 1/") (tstamps /5D488E46/))
(tstamp 5D475835))
(comp (ref F401)
(value Polyfuse)
(footprint Fuse:Fuse_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Bel-Fuse/0ZCM0008FF2G?qs=sGAEpiMZZMsxR%252BBXi4wRUHZtKAyWcVPAeoO9zfZPDm1Bddpp1KgY1Q%3D%3D)
(field (name Parnumber) 0ZCM0008FF2G))
(libsource (lib Device) (part Polyfuse) (description "Resettable fuse, polymeric positive temperature coefficient"))
(sheetpath (names "/Pyro Output Stage 1/") (tstamps /5D488E46/))
(tstamp 5D6F3FF8))
(comp (ref R5)
(value 68k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402768K0FKEDC)
(field (name Parnumber) CRCW040268K0FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 1/") (tstamps /5D488E46/))
(tstamp 5D4D8D4C))
(comp (ref R6)
(value 220k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402220KFKED?qs=sGAEpiMZZMu61qfTUdNhG2DpbjADlD3G5pQ69okwQNw%3D)
(field (name Parnumber) CRCW0402220KFKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 1/") (tstamps /5D488E46/))
(tstamp 5D4D933B))
(comp (ref R502)
(value 33)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/TE-Connectivity-Neohm/CPF0402B33RE1?qs=sGAEpiMZZMu61qfTUdNhGxAfPTOoMd3M04DSieB%252B0Z0%3D)
(field (name Parnumber) CPF0402B33RE1))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 2/") (tstamps /5D48B429/))
(tstamp 5D4757F5))
(comp (ref R503)
(value 2.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW04022K70FKEDC?qs=sGAEpiMZZMu61qfTUdNhG9bvwnXh9sSrHB5zaMHoC9p2GBlct%252B1VIg%3D%3D)
(field (name Parnumber) CRCW04022K70FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 2/") (tstamps /5D48B429/))
(tstamp 5D47580C))
(comp (ref R501)
(value 2.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW04022K70FKEDC?qs=sGAEpiMZZMu61qfTUdNhG9bvwnXh9sSrHB5zaMHoC9p2GBlct%252B1VIg%3D%3D)
(field (name Parnumber) CRCW04022K70FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 2/") (tstamps /5D48B429/))
(tstamp 5D475828))
(comp (ref Q501)
(value BC848CDW1T1G)
(footprint Package_TO_SOT_SMD:SOT-363_SC-70-6)
(datasheet http://www.onsemi.com/pub_link/Collateral/BC846BDW1T1-D.PDF)
(fields
(field (name Mouser_Link) https://www.mouser.de/manufacturer/on-semiconductor/)
(field (name Parnumber) BC848CDW1T1G))
(libsource (lib Transistor_BJT) (part BC847BDW1) (description "100mA IC, 45V Vce, Dual NPN/NPN Transistors, SOT-363"))
(sheetpath (names "/Pyro Output Stage 2/") (tstamps /5D48B429/))
(tstamp 5D475835))
(comp (ref U501)
(value SI7232DN)
(footprint Package_SO:Vishay_PowerPAK_1212-8_Dual)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Siliconix/SI7232DN-T1-GE3?qs=%2Fha2pyFaduiZCEC0X5XOlemXjOWX3oZDDwY4%252BOM6S%252B4%3D)
(field (name Parnumber) "SI7232DN-T1-GE3 "))
(libsource (lib altimeter) (part SI7232DN) (description ""))
(sheetpath (names "/Pyro Output Stage 2/") (tstamps /5D48B429/))
(tstamp 5D4F79DE))
(comp (ref F501)
(value Polyfuse)
(footprint Fuse:Fuse_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Bel-Fuse/0ZCM0008FF2G?qs=sGAEpiMZZMsxR%252BBXi4wRUHZtKAyWcVPAeoO9zfZPDm1Bddpp1KgY1Q%3D%3D)
(field (name Parnumber) 0ZCM0008FF2G))
(libsource (lib Device) (part Polyfuse) (description "Resettable fuse, polymeric positive temperature coefficient"))
(sheetpath (names "/Pyro Output Stage 2/") (tstamps /5D48B429/))
(tstamp 5D6F3FF8))
(comp (ref R7)
(value 68k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402768K0FKEDC)
(field (name Parnumber) CRCW040268K0FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 2/") (tstamps /5D48B429/))
(tstamp 5D4D8D4C))
(comp (ref R8)
(value 220k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW0402220KFKED?qs=sGAEpiMZZMu61qfTUdNhG2DpbjADlD3G5pQ69okwQNw%3D)
(field (name Parnumber) CRCW0402220KFKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 2/") (tstamps /5D48B429/))
(tstamp 5D4D933B))
(comp (ref R12)
(value 33)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/TE-Connectivity-Neohm/CPF0402B33RE1?qs=sGAEpiMZZMu61qfTUdNhGxAfPTOoMd3M04DSieB%252B0Z0%3D)
(field (name Parnumber) CPF0402B33RE1))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 3/") (tstamps /5D4E7D5B/))
(tstamp 5D4757F5))
(comp (ref R13)
(value 2.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW04022K70FKEDC?qs=sGAEpiMZZMu61qfTUdNhG9bvwnXh9sSrHB5zaMHoC9p2GBlct%252B1VIg%3D%3D)
(field (name Parnumber) CRCW04022K70FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 3/") (tstamps /5D4E7D5B/))
(tstamp 5D47580C))
(comp (ref R10)
(value 2.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name Mouser_Link) https://www.mouser.de/ProductDetail/Vishay-Dale/CRCW04022K70FKEDC?qs=sGAEpiMZZMu61qfTUdNhG9bvwnXh9sSrHB5zaMHoC9p2GBlct%252B1VIg%3D%3D)
(field (name Parnumber) CRCW04022K70FKEDC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Pyro Output Stage 3/") (tstamps /5D4E7D5B/))
(tstamp 5D475828))
(comp (ref Q1)
(value BC848CDW1T1G)
(footprint Package_TO_SOT_SMD:SOT-363_SC-70-6)
(datasheet http://www.onsemi.com/pub_link/Collateral/BC846BDW1T1-D.PDF)
(fields
(field (name Mouser_Link) https://www.mouser.de/manufacturer/on-semiconductor/)
(field (name Parnumber) BC848CDW1T1G))