-
Notifications
You must be signed in to change notification settings - Fork 0
/
PyroOutput.kicad_sch
995 lines (971 loc) · 36.9 KB
/
PyroOutput.kicad_sch
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
(kicad_sch (version 20211123) (generator eeschema)
(uuid 3019c847-3ccf-490a-9dd6-694227c3fba5)
(paper "A4")
(lib_symbols
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (id 1) (at 0 -5.08 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" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(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:LED_Small_Filled" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at -1.27 3.175 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LED_Small_Filled" (id 1) (at -4.445 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode light-emitting-diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode, small symbol, filled shape" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_Small_Filled_0_1"
(polyline
(pts
(xy -0.762 -1.016)
(xy -0.762 1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy -0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 0 0.762)
(xy -0.508 1.27)
(xy -0.254 1.27)
(xy -0.508 1.27)
(xy -0.508 1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.508 1.27)
(xy 0 1.778)
(xy 0.254 1.778)
(xy 0 1.778)
(xy 0 1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_Small_Filled_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 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" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(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 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "TXV_LIB:Pyro" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "Pyro" (id 1) (at 0 3.556 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" "power-flag pyro" (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 \"PYRO\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Pyro_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Pyro_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "PYRO" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "TXV_LIB:TPS1HC100" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TPS1HC100" (id 1) (at 0 15.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm" (id 2) (at 0 -16.51 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)
)
(symbol "TPS1HC100_0_1"
(rectangle (start -8.89 13.97) (end 8.89 -13.97)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "TPS1HC100_1_1"
(pin power_in line (at -11.43 -8.89 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 8.89 180) (length 2.54)
(name "VOUT" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -8.89 180) (length 2.54)
(name "NC" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -11.43 11.43 0) (length 2.54)
(name "VBB" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -11.43 8.89 0) (length 2.54)
(name "VBB" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -11.43 180) (length 2.54)
(name "NC" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -11.43 -11.43 0) (length 2.54)
(name "PAD" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 3.81 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 1.27 0) (length 2.54)
(name "DIAG_EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 11.43 3.81 180) (length 2.54)
(name "~{FAULT}" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -3.81 0) (length 2.54)
(name "LATCH" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin output line (at 11.43 1.27 180) (length 2.54)
(name "SNS" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -1.27 0) (length 2.54)
(name "ILIM" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -6.35 180) (length 2.54)
(name "NC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 11.43 11.43 180) (length 2.54)
(name "VOUT" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (id 1) (at 0 3.556 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" "power-flag" (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 \"+3V3\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (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" "power-flag" (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 156.21 98.425) (diameter 0) (color 0 0 0 0)
(uuid 0d678ff1-21aa-4e6f-ae06-abf24406f3c8)
)
(junction (at 129.54 116.205) (diameter 0) (color 0 0 0 0)
(uuid 539dec9e-2c45-4201-ab13-cbbbab8fc31b)
)
(junction (at 160.02 109.22) (diameter 0) (color 0 0 0 0)
(uuid 59246647-4e57-4b5f-9f1e-b0cc1fb90bb2)
)
(junction (at 160.655 92.71) (diameter 0) (color 0 0 0 0)
(uuid 70cf3e26-e279-4e61-a2f5-466ff5585d49)
)
(junction (at 160.655 98.425) (diameter 0) (color 0 0 0 0)
(uuid 8634edb8-50db-43d2-95bb-5918d2cd24cc)
)
(junction (at 130.81 95.885) (diameter 0) (color 0 0 0 0)
(uuid 8afefa03-006b-4e40-b19e-6596c7cc472e)
)
(junction (at 132.08 116.205) (diameter 0) (color 0 0 0 0)
(uuid 91c69423-de51-44fe-bc70-fec455b50634)
)
(junction (at 157.48 98.425) (diameter 0) (color 0 0 0 0)
(uuid 92419cc9-1070-47aa-876c-2cf8f5a03a47)
)
(junction (at 130.81 116.205) (diameter 0) (color 0 0 0 0)
(uuid a072347a-1cac-4ead-8c61-cfe38fd40342)
)
(junction (at 122.555 103.505) (diameter 0) (color 0 0 0 0)
(uuid a26bc030-7d8a-4b19-aa84-9206cc0de2b0)
)
(junction (at 130.81 98.425) (diameter 0) (color 0 0 0 0)
(uuid dfa2c928-7d9a-4cd3-90db-112716296421)
)
(junction (at 130.81 118.745) (diameter 0) (color 0 0 0 0)
(uuid f9e60890-c09c-4221-9409-43a2ec4885e8)
)
(no_connect (at 155.575 116.205) (uuid 69675058-6b96-42da-8df5-92aaf6930be8))
(no_connect (at 155.575 118.745) (uuid a2306fdc-d8f4-42ce-83f7-03c3d3fe62be))
(no_connect (at 155.575 103.505) (uuid f630bdcd-b048-45d2-91a0-928349b89dad))
(wire (pts (xy 157.48 98.425) (xy 160.655 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00c9c1c9-df78-4bf8-a378-9edee7dafbe3)
)
(wire (pts (xy 154.305 90.17) (xy 154.305 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01600802-66c5-45a2-be7f-4fa2327d845b)
)
(wire (pts (xy 160.02 109.22) (xy 160.02 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 086ab04d-4086-427c-992f-819b91a9021d)
)
(wire (pts (xy 129.54 116.205) (xy 130.81 116.205))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d32fbdb-2a37-4863-af10-fc85c1c6174f)
)
(wire (pts (xy 157.48 113.665) (xy 155.575 113.665))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 127b0e8c-8b10-4db4-b691-908ac98caaf1)
)
(wire (pts (xy 122.555 103.505) (xy 120.015 103.505))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cd85cce-d94a-4a92-8af2-23d3a2b66793)
)
(wire (pts (xy 161.29 92.71) (xy 160.655 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 200b738a-50e9-4f57-b197-9a6a0ae11af3)
)
(wire (pts (xy 160.02 92.71) (xy 160.655 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d916084-6196-4479-adf2-d8e271fa0c32)
)
(wire (pts (xy 167.64 92.71) (xy 166.37 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d19e22b-2666-4e7d-825d-37a04ed07fa1)
)
(wire (pts (xy 130.81 116.205) (xy 130.81 118.745))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41fc1c23-edd4-45a5-8036-7f62b013770f)
)
(wire (pts (xy 132.715 118.745) (xy 130.81 118.745))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42b7a68a-3837-4773-af68-a35059da48c3)
)
(wire (pts (xy 132.715 108.585) (xy 129.54 108.585))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43f4cf53-1dc5-4426-bbd2-fabe9c3d45ec)
)
(wire (pts (xy 175.26 109.22) (xy 160.02 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51bdd1cb-8a01-4b1c-940a-3ff4dd1de87c)
)
(wire (pts (xy 132.715 103.505) (xy 122.555 103.505))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5968c877-7376-4e25-b8db-5e755d570d06)
)
(wire (pts (xy 155.575 106.045) (xy 156.21 106.045))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6025c071-1487-4c03-a645-f67437519813)
)
(wire (pts (xy 157.48 98.425) (xy 157.48 113.665))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6428332e-b689-4aa8-86bb-3bee31b6f177)
)
(wire (pts (xy 160.655 98.425) (xy 161.29 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6afdccaa-d9c7-4949-88e8-e04bfdac5efc)
)
(wire (pts (xy 129.54 114.935) (xy 129.54 116.205))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ceb10bf-4340-4309-8250-882c2b60a70e)
)
(wire (pts (xy 122.555 116.205) (xy 129.54 116.205))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7308e13a-4809-4e8e-af65-9905819aa376)
)
(wire (pts (xy 122.555 114.935) (xy 122.555 116.205))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75d5a810-84fd-42c4-a0b7-6b82d09662a2)
)
(wire (pts (xy 132.08 116.205) (xy 130.81 116.205))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7be13a36-eb8e-440f-aaac-2fd6665d9f61)
)
(wire (pts (xy 132.08 111.125) (xy 132.08 116.205))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7cc510d9-2339-42a7-bb31-eff1142f0636)
)
(wire (pts (xy 132.08 106.045) (xy 132.715 106.045))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e247c2e-b63e-4a70-8c32-64933e91ced0)
)
(wire (pts (xy 130.81 93.98) (xy 130.81 95.885))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9116f42f-8d27-4055-8fab-af8b6ed6959f)
)
(wire (pts (xy 123.825 98.425) (xy 124.46 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96815f61-f3f5-43c2-b68f-856577233f16)
)
(wire (pts (xy 130.81 118.745) (xy 130.81 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b4851fe-4e2f-4de0-a685-8e53004d88aa)
)
(wire (pts (xy 156.21 109.22) (xy 156.21 106.045))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e5b0177-ea58-4f76-8b57-ff1c6e52d9df)
)
(wire (pts (xy 156.21 98.425) (xy 155.575 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a2c0fc07-9ed2-42e8-8fef-f02fce3412ee)
)
(wire (pts (xy 132.715 111.125) (xy 132.08 111.125))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a60f8360-f38f-439d-b446-391101ae4282)
)
(wire (pts (xy 132.715 95.885) (xy 130.81 95.885))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a6386af6-d744-458e-b19d-8fd97b5ad9f9)
)
(wire (pts (xy 132.715 98.425) (xy 130.81 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7340f23-0eaa-48ae-aea8-b5b53a0ae99a)
)
(wire (pts (xy 156.21 98.425) (xy 157.48 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b79d8d99-88b5-4d84-a010-b6d768d67ec8)
)
(wire (pts (xy 130.81 98.425) (xy 130.81 95.885))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c14f4f41-991c-47f8-ba74-4a4e89170acf)
)
(wire (pts (xy 160.02 116.205) (xy 160.02 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c374668c-56af-42dd-a650-35352e96de63)
)
(wire (pts (xy 129.54 108.585) (xy 129.54 109.855))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cb4b7bcd-f8cd-4398-9baf-986854c6b2ae)
)
(wire (pts (xy 160.02 100.965) (xy 160.02 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d2683b99-bb18-4d41-a0c5-df26e16e4210)
)
(wire (pts (xy 160.655 92.71) (xy 160.655 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d32a1d0f-6a8f-45b4-822f-8b613131fd8a)
)
(wire (pts (xy 122.555 104.14) (xy 122.555 103.505))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d66c8b0e-b6b3-43ea-8c6d-9724edcc57d6)
)
(wire (pts (xy 129.54 98.425) (xy 130.81 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid de7d8275-fd45-47d5-ae9a-4b0c51b81f57)
)
(wire (pts (xy 122.555 109.22) (xy 122.555 109.855))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e63748d3-3196-486f-8f95-bb4d9876653d)
)
(wire (pts (xy 156.21 95.885) (xy 156.21 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e7c8f673-e523-47ce-91b8-92cf1c7605ce)
)
(wire (pts (xy 160.02 109.22) (xy 156.21 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e8cb6cb3-dd2b-4328-8592-132e369ebb71)
)
(wire (pts (xy 155.575 95.885) (xy 156.21 95.885))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb06cbed-9a37-40e7-bc33-37acd0ee650a)
)
(wire (pts (xy 161.29 100.965) (xy 160.02 100.965))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f368b66f-c8a4-4ccf-b925-3f03c13bf28f)
)
(wire (pts (xy 132.715 116.205) (xy 132.08 116.205))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f58742f8-e57e-4646-a6f5-0463e0eceeb8)
)
(wire (pts (xy 154.305 92.71) (xy 154.94 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fc80fa5b-8c07-4dda-8002-331dcafd556b)
)
(text "R_ILIM = 56k\n--> 860mA Current Limit" (at 134.62 125.73 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 098afe52-27f0-4ec0-bf39-4eb766d2a851)
)
(text "1k*Iout/1040" (at 161.29 111.125 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7cbc8c8d-fbc1-4902-ac93-6c241131aada)
)
(text "Pyro outputs" (at 109.855 92.71 0)
(effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify left bottom))
(uuid ec0137ed-9765-4dfb-9cee-4a1826ddb19d)
)
(hierarchical_label "Current" (shape output) (at 175.26 109.22 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bcd0d850-a20d-42e1-b97f-b14f9222717c)
)
(hierarchical_label "Continuity" (shape output) (at 167.64 92.71 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bfcdffb4-9a75-4453-a5cf-48d0c88fa2a7)
)
(hierarchical_label "Control" (shape input) (at 120.015 103.505 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f43f384e-6bcf-4d6c-ac65-2e849bdb75c5)
)
(symbol (lib_id "Device:R_Small") (at 160.02 113.03 180)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c464d)
(property "Reference" "R69" (id 0) (at 161.29 112.395 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "1k" (id 1) (at 161.29 114.3 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 160.02 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 160.02 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5f714629-119e-4043-afb5-5f3ff1088ecb))
(pin "2" (uuid 16d0b933-f9f7-4b03-8e78-9b4312677781))
)
(symbol (lib_id "power:GND") (at 123.825 98.425 270)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c4656)
(property "Reference" "#PWR0187" (id 0) (at 117.475 98.425 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 118.745 98.425 90))
(property "Footprint" "" (id 2) (at 123.825 98.425 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 123.825 98.425 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 81a2848f-6b16-4740-b922-713f53eed7c9))
)
(symbol (lib_id "TXV_LIB:Pyro") (at 130.81 93.98 0)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c465d)
(property "Reference" "#PWR0188" (id 0) (at 130.81 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "Pyro" (id 1) (at 130.81 90.17 0))
(property "Footprint" "" (id 2) (at 130.81 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 130.81 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0a52099a-10c7-4b7d-9bca-e3f4b94740c5))
)
(symbol (lib_id "Device:C_Small") (at 127 98.425 270)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c4663)
(property "Reference" "C61" (id 0) (at 125.73 95.885 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (id 1) (at 124.46 100.965 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 127 98.425 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 127 98.425 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ca1b27aa-aab5-42b2-9fa3-0fc131d3f2ff))
(pin "2" (uuid 22805bc2-1c97-47df-b922-d4d81e255705))
)
(symbol (lib_id "power:+3V3") (at 132.08 106.045 90)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c466c)
(property "Reference" "#PWR0189" (id 0) (at 135.89 106.045 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (id 1) (at 126.365 106.045 90))
(property "Footprint" "" (id 2) (at 132.08 106.045 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 132.08 106.045 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid df9251d1-2791-495c-88ae-17f4ab7cbffc))
)
(symbol (lib_id "Device:R_Small") (at 129.54 112.395 0) (mirror x)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c4675)
(property "Reference" "R67" (id 0) (at 128.27 111.76 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "56k" (id 1) (at 128.27 113.665 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 129.54 112.395 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 129.54 112.395 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0c97f3ed-a303-4931-a055-7d94d1861af0))
(pin "2" (uuid bbf692d8-75f9-4fc7-8b21-d6a36476f9f9))
)
(symbol (lib_id "power:GND") (at 160.02 116.205 0) (mirror y)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c468d)
(property "Reference" "#PWR0190" (id 0) (at 160.02 122.555 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 160.02 120.015 0))
(property "Footprint" "" (id 2) (at 160.02 116.205 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 160.02 116.205 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 38c4f6a6-af4c-4845-b9ab-0dda394ec1f4))
)
(symbol (lib_id "TXV_LIB:TPS1HC100") (at 144.145 107.315 0)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c469c)
(property "Reference" "U19" (id 0) (at 144.145 90.17 0))
(property "Value" "TPS1HC100" (id 1) (at 144.145 92.075 0))
(property "Footprint" "Package_SO:HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm" (id 2) (at 144.145 123.825 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 144.145 107.315 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5aeac1bd-a36c-4926-b80f-558014ee5ac7))
(pin "10" (uuid cc9da298-6cd2-4809-a2f5-ce304d1618b9))
(pin "11" (uuid aeb839b2-caa6-41dd-a923-5369a689a8bf))
(pin "12" (uuid 7840ce12-318c-42ae-9311-f2b9fbdce18e))
(pin "13" (uuid 86e8f4b0-192c-413e-a913-acff36a115dc))
(pin "14" (uuid 1456318a-f4ce-4f83-a74d-c395c7e2347c))
(pin "15" (uuid 15b081cf-5f34-4fde-93f8-72a4d0a95ad7))
(pin "2" (uuid 491916c7-61ba-43c2-bf27-c2d653232ebc))
(pin "3" (uuid 6097ab06-8afe-47a8-bb6b-2857bbf78c4a))
(pin "4" (uuid eb5b9d22-dd50-4401-a905-41c877991b0f))
(pin "5" (uuid 82dc3b7a-734a-4433-8b0e-c8211ec21773))
(pin "6" (uuid 472ac11d-a2f7-4de5-b6de-0a34d0095333))
(pin "7" (uuid c2a35cae-dd5d-451f-ae4b-c57cfda62053))
(pin "8" (uuid 3ad02243-797e-465e-a7e3-3896009c81d8))
(pin "9" (uuid f2b99827-fa2d-4ab1-8669-9ec226089785))
)
(symbol (lib_id "Device:R_Small") (at 122.555 106.68 0)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c46a2)
(property "Reference" "R66" (id 0) (at 119.38 106.045 0))
(property "Value" "120" (id 1) (at 119.38 107.95 0))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 122.555 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 122.555 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 13bd4268-2a8f-422b-b1d2-60d75c072f0d))
(pin "2" (uuid 370239c0-944a-40e0-89e9-66ade0ad6752))
)
(symbol (lib_id "Device:R_Small") (at 163.83 92.71 270) (mirror x)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c46ad)
(property "Reference" "R70" (id 0) (at 161.925 88.9 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "56k" (id 1) (at 161.925 90.805 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 163.83 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 163.83 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2240424e-3bd0-44fa-8308-fc29e9c8068a))
(pin "2" (uuid c8faf8be-a91d-4275-a6ce-cab96688eb5d))
)
(symbol (lib_id "Device:R_Small") (at 157.48 92.71 270)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c46b3)
(property "Reference" "R68" (id 0) (at 157.48 88.9 90))
(property "Value" "56k" (id 1) (at 157.48 90.805 90))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 157.48 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 157.48 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 92bc20f7-15f6-4617-93f5-8369fbd72d47))
(pin "2" (uuid 07fdfdcc-4872-4067-8a18-6d2f0971ae29))
)
(symbol (lib_id "power:+3V3") (at 154.305 90.17 0)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c46b9)
(property "Reference" "#PWR0191" (id 0) (at 154.305 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (id 1) (at 154.305 86.36 0))
(property "Footprint" "" (id 2) (at 154.305 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 154.305 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6294d60a-5a6d-4e91-bd35-79741339d7e4))
)
(symbol (lib_id "power:GND") (at 160.02 102.235 0) (mirror y)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c46cd)
(property "Reference" "#PWR0192" (id 0) (at 160.02 108.585 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 160.02 106.045 0))
(property "Footprint" "" (id 2) (at 160.02 102.235 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 160.02 102.235 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 260e98b8-d0b2-42bf-b7ef-765b82cfa705))
)
(symbol (lib_id "power:GND") (at 130.81 120.65 0)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c46d4)
(property "Reference" "#PWR0193" (id 0) (at 130.81 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 130.81 124.46 0))
(property "Footprint" "" (id 2) (at 130.81 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 130.81 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0a4b41b1-78d4-498a-961b-04b53c2af296))
)
(symbol (lib_id "Device:LED_Small_Filled") (at 122.555 112.395 90)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c46da)
(property "Reference" "D12" (id 0) (at 116.205 111.76 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "PYRO 1" (id 1) (at 113.665 113.665 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 122.555 112.395 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 122.555 112.395 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fa15908b-b974-4d08-a66c-21578a348a2c))
(pin "2" (uuid 0f002426-23d5-470c-820f-9b55f9f15cc9))
)
(symbol (lib_id "Connector_Generic:Conn_01x02") (at 166.37 100.965 0) (mirror x)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000639c46e3)
(property "Reference" "J22" (id 0) (at 168.402 100.7618 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Pyro" (id 1) (at 168.402 98.4504 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "TXV_LIB:Molex_SL_1x2_Vertical" (id 2) (at 166.37 100.965 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 166.37 100.965 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Male Mate" "" (id 4) (at 166.37 100.965 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mate Datasheet" "" (id 5) (at 166.37 100.965 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6960d6eb-f6f1-4de9-87ff-576797f41c26))
(pin "2" (uuid 4a1eb0be-83ab-4181-8cfc-4a2a5b6a0d4a))
)
)