-
Notifications
You must be signed in to change notification settings - Fork 0
/
leds.kicad_sch
1269 lines (1236 loc) · 46.7 KB
/
leds.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
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid 7fddd7a3-4426-42e7-bf2c-81d55020fbec)
(paper "A4")
(lib_symbols
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) 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" "LED" (id 1) (at 0 -2.54 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" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (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_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 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)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (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 "power:+5V" (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" "+5V" (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 \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_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 "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (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))))
)
)
)
(symbol "power:VCC" (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" "VCC" (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 \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_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 "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 54.61 38.1) (diameter 1.016) (color 0 0 0 0)
(uuid 36e55dc7-b8dd-4b75-aa11-1a977430e4af)
)
(junction (at 72.39 119.38) (diameter 1.016) (color 0 0 0 0)
(uuid 4b64ce61-cd9f-4068-855a-a918a6209675)
)
(junction (at 196.85 66.04) (diameter 1.016) (color 0 0 0 0)
(uuid 66615e91-3e7a-41a3-a5de-d8915c5cd486)
)
(junction (at 214.63 66.04) (diameter 1.016) (color 0 0 0 0)
(uuid 9110f47f-a990-4603-9888-a44e93a8108c)
)
(junction (at 214.63 38.1) (diameter 1.016) (color 0 0 0 0)
(uuid 95b18c49-20bf-4d9f-b3e3-cebdbf176759)
)
(junction (at 91.44 146.05) (diameter 1.016) (color 0 0 0 0)
(uuid b3d79b21-e9ec-46a6-9b4b-229c9984a42a)
)
(junction (at 72.39 66.04) (diameter 1.016) (color 0 0 0 0)
(uuid c7db6f12-37a4-4f57-ae11-a85dc3d9a3a4)
)
(junction (at 53.34 119.38) (diameter 1.016) (color 0 0 0 0)
(uuid d926cf39-414a-4944-b6d1-f15d112b5842)
)
(junction (at 196.85 38.1) (diameter 1.016) (color 0 0 0 0)
(uuid dd70541c-ed72-41a4-b278-03a490cbdaf1)
)
(junction (at 72.39 146.05) (diameter 1.016) (color 0 0 0 0)
(uuid df5d2842-95e0-4dc7-91e0-af6aa7f859bb)
)
(junction (at 54.61 66.04) (diameter 1.016) (color 0 0 0 0)
(uuid e0a5752b-7977-4fe6-89e3-7b0cd68f3242)
)
(junction (at 73.66 38.1) (diameter 1.016) (color 0 0 0 0)
(uuid f64ffca7-3c88-48d2-8d78-4bd7ec67bd1b)
)
(wire (pts (xy 91.44 146.05) (xy 99.06 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 208f8b8f-b422-4b07-a092-06721000df54)
)
(wire (pts (xy 83.82 146.05) (xy 91.44 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 208f8b8f-b422-4b07-a092-06721000df55)
)
(wire (pts (xy 196.85 44.45) (xy 196.85 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 234c2567-2648-4b6e-a98f-ef9e65e29db5)
)
(wire (pts (xy 201.93 44.45) (xy 196.85 44.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 234c2567-2648-4b6e-a98f-ef9e65e29db6)
)
(wire (pts (xy 48.26 146.05) (xy 59.69 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 356aca61-1cc6-4050-9a3f-ab7db3aac943)
)
(wire (pts (xy 196.85 38.1) (xy 201.93 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 369a152f-aa53-4c6b-9245-859e69f60b44)
)
(wire (pts (xy 193.04 38.1) (xy 196.85 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 369a152f-aa53-4c6b-9245-859e69f60b45)
)
(wire (pts (xy 30.48 66.04) (xy 41.91 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3bf46ce4-dba5-4847-8f91-c73f03cb6e34)
)
(wire (pts (xy 173.99 66.04) (xy 185.42 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3fa35ef4-a7ab-497a-b909-d824eb7d455f)
)
(wire (pts (xy 67.31 130.81) (xy 72.39 130.81))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 428253ec-51d5-47a5-bb7d-eaa8725cb9cf)
)
(wire (pts (xy 72.39 130.81) (xy 72.39 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 428253ec-51d5-47a5-bb7d-eaa8725cb9d0)
)
(wire (pts (xy 72.39 156.21) (xy 76.2 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4e0f8d98-fffe-43f0-ac6f-baf633d7dcfe)
)
(wire (pts (xy 54.61 73.66) (xy 54.61 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6413feb9-0785-47d0-8dc4-9eadd44f9211)
)
(wire (pts (xy 58.42 73.66) (xy 54.61 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6413feb9-0785-47d0-8dc4-9eadd44f9212)
)
(wire (pts (xy 209.55 44.45) (xy 214.63 44.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 78d557a1-0fe2-4d3e-8ce9-ad0b7f43a499)
)
(wire (pts (xy 214.63 44.45) (xy 214.63 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 78d557a1-0fe2-4d3e-8ce9-ad0b7f43a49a)
)
(wire (pts (xy 196.85 72.39) (xy 196.85 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8027f8e6-1d29-4500-a9ef-27688926087e)
)
(wire (pts (xy 201.93 72.39) (xy 196.85 72.39))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8027f8e6-1d29-4500-a9ef-27688926087f)
)
(wire (pts (xy 66.04 73.66) (xy 72.39 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8400fdd0-298f-4b09-88f4-7e18c7d07dc0)
)
(wire (pts (xy 72.39 73.66) (xy 72.39 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8400fdd0-298f-4b09-88f4-7e18c7d07dc1)
)
(wire (pts (xy 173.99 38.1) (xy 185.42 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 85015343-63f2-4485-897b-ab27f9fd1421)
)
(wire (pts (xy 209.55 72.39) (xy 214.63 72.39))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 85c01819-82ad-44f0-a235-a220b9e5671b)
)
(wire (pts (xy 214.63 72.39) (xy 214.63 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 85c01819-82ad-44f0-a235-a220b9e5671c)
)
(wire (pts (xy 83.82 156.21) (xy 91.44 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8e347cde-2dfe-4cdb-bb9b-442135a8f027)
)
(wire (pts (xy 91.44 156.21) (xy 91.44 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8e347cde-2dfe-4cdb-bb9b-442135a8f028)
)
(wire (pts (xy 67.31 38.1) (xy 73.66 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8f1ab02a-34e0-40f8-8ea6-96f525aedbc0)
)
(wire (pts (xy 73.66 38.1) (xy 82.55 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8f1ab02a-34e0-40f8-8ea6-96f525aedbc1)
)
(wire (pts (xy 66.04 66.04) (xy 72.39 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9120d408-eecf-49c9-968f-d8fb929d5979)
)
(wire (pts (xy 72.39 66.04) (xy 81.28 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9120d408-eecf-49c9-968f-d8fb929d597a)
)
(wire (pts (xy 53.34 130.81) (xy 53.34 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 95623f08-4322-413b-8a0f-3dacb338e063)
)
(wire (pts (xy 59.69 130.81) (xy 53.34 130.81))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 95623f08-4322-413b-8a0f-3dacb338e064)
)
(wire (pts (xy 193.04 66.04) (xy 196.85 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 99edf30d-1619-4443-90a3-8f0fa96de079)
)
(wire (pts (xy 196.85 66.04) (xy 201.93 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 99edf30d-1619-4443-90a3-8f0fa96de07a)
)
(wire (pts (xy 53.34 119.38) (xy 59.69 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a277a71a-a0aa-4073-bb46-85917768828e)
)
(wire (pts (xy 48.26 119.38) (xy 53.34 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a277a71a-a0aa-4073-bb46-85917768828f)
)
(wire (pts (xy 50.8 38.1) (xy 54.61 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a5c073c6-4e7c-4594-812c-6133da6f31e6)
)
(wire (pts (xy 54.61 38.1) (xy 59.69 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a5c073c6-4e7c-4594-812c-6133da6f31e7)
)
(wire (pts (xy 31.75 38.1) (xy 43.18 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a858fd7c-75ff-4d66-9132-0e955b39cde7)
)
(wire (pts (xy 85.09 119.38) (xy 99.06 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid aa478e64-cf7e-4f79-83e3-c33edba33c88)
)
(wire (pts (xy 67.31 44.45) (xy 73.66 44.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae1e0b73-362b-4397-b7db-9ce7eea44fc0)
)
(wire (pts (xy 73.66 44.45) (xy 73.66 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae1e0b73-362b-4397-b7db-9ce7eea44fc1)
)
(wire (pts (xy 59.69 44.45) (xy 54.61 44.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d13001ef-69c0-4860-85db-caaf1f0da255)
)
(wire (pts (xy 54.61 44.45) (xy 54.61 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d13001ef-69c0-4860-85db-caaf1f0da256)
)
(wire (pts (xy 49.53 66.04) (xy 54.61 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d406eda3-67ef-489f-9e10-c8c8d791d0a3)
)
(wire (pts (xy 54.61 66.04) (xy 58.42 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d406eda3-67ef-489f-9e10-c8c8d791d0a4)
)
(wire (pts (xy 209.55 38.1) (xy 214.63 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid dbfeba66-e02e-4a69-88de-18ae837dbb3d)
)
(wire (pts (xy 214.63 38.1) (xy 224.79 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid dbfeba66-e02e-4a69-88de-18ae837dbb3e)
)
(wire (pts (xy 67.31 146.05) (xy 72.39 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ea17bcd4-33d3-4cdd-a499-9d472e6c1aba)
)
(wire (pts (xy 72.39 146.05) (xy 76.2 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ea17bcd4-33d3-4cdd-a499-9d472e6c1abb)
)
(wire (pts (xy 67.31 119.38) (xy 72.39 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ed2e2464-534a-4260-b04a-b1bfee56e817)
)
(wire (pts (xy 72.39 119.38) (xy 77.47 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ed2e2464-534a-4260-b04a-b1bfee56e818)
)
(wire (pts (xy 209.55 66.04) (xy 214.63 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fadcfaf7-0141-407e-a78c-39158d3ff18e)
)
(wire (pts (xy 214.63 66.04) (xy 224.79 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fadcfaf7-0141-407e-a78c-39158d3ff18f)
)
(wire (pts (xy 72.39 156.21) (xy 72.39 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fe7c5b62-6af9-4dcc-af5a-dcb74ada7692)
)
(text "yellow" (at 69.85 35.56 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0c5e995b-374b-43e2-9171-ba467d353002)
)
(text "yellow" (at 68.58 64.77 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1810f96e-9cde-4d64-b0e3-ba48f63406dd)
)
(text "green\n" (at 212.09 64.77 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 61ad6c37-7f1c-438a-bd05-1fc28c0ba30b)
)
(text "blue" (at 212.09 36.83 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6c95f931-b303-45ed-b50d-312c575f8167)
)
(text "red\n" (at 85.09 118.11 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b3864c85-5752-4df3-9ee7-0d0969a47cb0)
)
(text "white" (at 85.09 146.05 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c54b4191-42b7-4746-9c3e-11931cd3952b)
)
(global_label "BIAS_EN_N_LED" (shape input) (at 48.26 119.38 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4e839326-8b52-4ca8-8136-39fcb97edba1)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 34.4048 119.3006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TIMEPULSE_LED" (shape input) (at 48.26 146.05 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 61b29086-6321-4ee7-9da1-97cb94892725)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 34.1629 145.9706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "STATUS1" (shape input) (at 173.99 66.04 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8ea777c6-6eab-4e6b-a774-abeb709b2aa1)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 162.07 65.9606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "IND_CH1" (shape input) (at 173.99 38.1 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e2bae97e-6777-41c9-9055-defa8de15d1f)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 162.07 38.0206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(symbol (lib_id "power:GND") (at 224.79 66.04 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 038d1004-a758-4d29-9052-dede444f37b9)
(property "Reference" "#PWR0112" (id 0) (at 224.79 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 224.9043 70.3644 0))
(property "Footprint" "" (id 2) (at 224.79 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 224.79 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4aa1c449-20cc-491e-a718-2e8d9d4526a1))
)
(symbol (lib_id "Device:R") (at 63.5 146.05 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0a2d20fa-6267-4882-ba4a-638d743d40ec)
(property "Reference" "R409" (id 0) (at 63.5 140.8176 90))
(property "Value" "3k6" (id 1) (at 63.5 143.129 90))
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (id 2) (at 63.5 147.828 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 63.5 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCBasicPart" "Basic" (id 4) (at 63.5 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPartNr" "C18359" (id 5) (at 63.5 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCType" "0805W8F3601T5E" (id 6) (at 63.5 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "OriginalType" "--" (id 7) (at 63.5 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Supplier" "LCSC" (id 8) (at 63.5 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCplace" "C18359" (id 9) (at 63.5 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC_placed_by" "yes" (id 10) (at 63.5 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7e5e7bc8-8287-4988-a7b2-0d20f87f7595))
(pin "2" (uuid 7918a99e-dd0a-4e1d-8167-4dad4d370c06))
)
(symbol (lib_id "power:VCC") (at 30.48 66.04 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 14343ac4-f49c-4d07-b7f2-28cc68e645fc)
(property "Reference" "#PWR0107" (id 0) (at 30.48 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 30.8483 61.7156 0))
(property "Footprint" "" (id 2) (at 30.48 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 30.48 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0dc37187-75b9-4a63-8c80-dd18705648c9))
)
(symbol (lib_id "power:VCC") (at 99.06 119.38 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 16445567-36ca-417c-bae3-fbb633354737)
(property "Reference" "#PWR0109" (id 0) (at 99.06 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 99.4283 115.0556 0))
(property "Footprint" "" (id 2) (at 99.06 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 99.06 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9e38539a-bae9-447a-9141-63f0bf032431))
)
(symbol (lib_id "power:GND") (at 81.28 66.04 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 179ae777-f622-41e8-b0ca-d3ae55015fe9)
(property "Reference" "#PWR0106" (id 0) (at 81.28 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 81.3943 70.3644 0))
(property "Footprint" "" (id 2) (at 81.28 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 81.28 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c252224b-c9b7-4f8d-8314-5576a7150539))
)
(symbol (lib_id "Device:LED") (at 80.01 146.05 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 27acb697-9502-4044-9060-8ee7e053232a)
(property "Reference" "LED409" (id 0) (at 80.1878 139.6746 0))
(property "Value" "TimeP (white)" (id 1) (at 80.1878 141.986 0))
(property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 80.01 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 80.01 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCBasicPart" "Basic" (id 4) (at 80.01 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPartNr" "C34499" (id 5) (at 80.01 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCType" "C34499 (white)" (id 6) (at 80.01 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "OriginalType" "ORH-W45A " (id 7) (at 80.01 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Supplier" "LCSC" (id 8) (at 80.01 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCplace" "C84256" (id 9) (at 80.01 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC_placed_by" "yes" (id 10) (at 80.01 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e6c54e14-f078-4d8c-bef5-82e0eb3de886))
(pin "2" (uuid e9d3bae8-2f29-400c-9bb4-20475ddf6d91))
)
(symbol (lib_id "Device:LED") (at 63.5 119.38 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 39ffb39b-0b7c-41c1-bb93-e706fd9a832c)
(property "Reference" "LED408" (id 0) (at 63.3222 113.0554 0))
(property "Value" "BiasEn (red)" (id 1) (at 63.3222 115.824 0))
(property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 63.5 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 63.5 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCBasicPart" "Basic" (id 4) (at 63.5 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPartNr" "C84256" (id 5) (at 63.5 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCType" "NCD0805R1 (red)" (id 6) (at 63.5 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "OriginalType" "17-21SURC/S530-A3/TR8 " (id 7) (at 63.5 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Supplier" "LCSC" (id 8) (at 63.5 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCplace" "C84256" (id 9) (at 63.5 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC_placed_by" "yes" (id 10) (at 63.5 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8de4b87a-6557-4ca4-b468-83816c7512fb))
(pin "2" (uuid 92d9337c-9290-44df-8a29-b9af51d15e7a))
)
(symbol (lib_id "Device:LED") (at 62.23 66.04 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 3dd40433-65b8-4069-aa55-83c0b37251d2)
(property "Reference" "LED402" (id 0) (at 62.4078 59.6646 0))
(property "Value" "VCC (yellow)" (id 1) (at 62.4078 61.976 0))
(property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 62.23 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 62.23 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCBasicPart" "Basic" (id 4) (at 62.23 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPartNr" "C2296" (id 5) (at 62.23 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCType" "C2296 (yellow)" (id 6) (at 62.23 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "OriginalType" "E6C0805UYAC1UDA" (id 7) (at 62.23 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Supplier" "LCSC" (id 8) (at 62.23 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCplace" "C2297" (id 9) (at 62.23 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC_placed_by" "yes" (id 10) (at 62.23 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2c7e2b04-395b-4d99-9990-324a4cde27f3))
(pin "2" (uuid 3655cb69-da71-4140-bd63-551b52686133))
)
(symbol (lib_id "Device:LED") (at 62.23 73.66 180) (unit 1)
(in_bom no) (on_board yes)
(uuid 41f79ffd-1357-465c-ba4b-01814559c4dd)
(property "Reference" "LED412" (id 0) (at 62.4078 79.9846 0))
(property "Value" "n.b. optional" (id 1) (at 62.4078 77.216 0))
(property "Footprint" "LED_THT:LED_D3.0mm" (id 2) (at 62.23 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 62.23 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Supplier" "--" (id 4) (at 62.23 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC_placed_by" "no" (id 5) (at 62.23 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7636210e-9902-49c7-908c-4c562dc42d9f))
(pin "2" (uuid d39197c7-cbfc-4413-8e8d-e306247ff116))
)
(symbol (lib_id "Device:LED") (at 63.5 44.45 180) (unit 1)
(in_bom no) (on_board yes)
(uuid 53b395f1-25bb-4a37-9852-658f64d7368a)
(property "Reference" "LED411" (id 0) (at 63.6778 50.7746 0))
(property "Value" "n.b. optional" (id 1) (at 63.6778 48.006 0))
(property "Footprint" "LED_THT:LED_D3.0mm" (id 2) (at 63.5 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 63.5 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Supplier" "--" (id 4) (at 63.5 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC_placed_by" "no" (id 5) (at 63.5 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9a0e7890-9f7d-4781-9b78-40762aecb3d5))
(pin "2" (uuid 6b6cc316-d422-481d-87ca-eb049d5aa2e4))
)
(symbol (lib_id "power:+5V") (at 31.75 38.1 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 616892bc-b476-42ca-8efc-8536c6760463)
(property "Reference" "#PWR0108" (id 0) (at 31.75 41.91 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 32.1183 33.7756 0))
(property "Footprint" "" (id 2) (at 31.75 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 31.75 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e613f1c2-de9e-40a4-bd05-30f1f0d787b2))
)
(symbol (lib_id "Device:R") (at 81.28 119.38 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 73de0bb5-46cd-4fd1-9344-89453af4c82d)
(property "Reference" "R408" (id 0) (at 81.28 114.1476 90))
(property "Value" "2k2" (id 1) (at 81.28 116.459 90))
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (id 2) (at 81.28 121.158 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 81.28 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCBasicPart" "Basic" (id 4) (at 81.28 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPartNr" "C17520" (id 5) (at 81.28 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCType" "0805W8F2201T5E" (id 6) (at 81.28 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "OriginalType" "--" (id 7) (at 81.28 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Supplier" "LCSC" (id 8) (at 81.28 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCplace" "C17520" (id 9) (at 81.28 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC_placed_by" "yes" (id 10) (at 81.28 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dbc9c477-f72f-4d56-af7c-2331e92337b9))
(pin "2" (uuid c0b556da-8723-4c83-9f3a-cf040f7cc371))
)
(symbol (lib_id "Device:R") (at 46.99 38.1 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 78f9000c-94a5-4756-8bff-b51704d645dd)
(property "Reference" "R400" (id 0) (at 46.99 32.8676 90))
(property "Value" "2k7" (id 1) (at 46.99 35.179 90))
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (id 2) (at 46.99 39.878 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 46.99 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCBasicPart" "Basic" (id 4) (at 46.99 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPartNr" "C17530" (id 5) (at 46.99 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCType" "0805W8F2701T5E" (id 6) (at 46.99 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "OriginalType" "RS-05K2701FT " (id 7) (at 46.99 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Supplier" "LCSC" (id 8) (at 46.99 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCplace" "C17530" (id 9) (at 46.99 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC_placed_by" "yes" (id 10) (at 46.99 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4cd75ae0-664e-458b-b325-6c3069008878))
(pin "2" (uuid aa509cfc-c30b-4a0e-9894-f05bd4ba3574))
)
(symbol (lib_id "power:GND") (at 224.79 38.1 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 817fb571-18a4-418a-85fd-1c33820c026e)
(property "Reference" "#PWR0111" (id 0) (at 224.79 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 224.9043 42.4244 0))
(property "Footprint" "" (id 2) (at 224.79 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 224.79 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a4c6ab5b-f522-4a6d-a2c1-c2736515474d))
)
(symbol (lib_id "Device:LED") (at 205.74 44.45 180) (unit 1)
(in_bom no) (on_board yes)
(uuid 9cea94dd-98c4-4323-ad04-48479e36d9a0)
(property "Reference" "LED413" (id 0) (at 205.9178 50.7746 0))
(property "Value" "n.b. optional" (id 1) (at 205.9178 48.006 0))
(property "Footprint" "LED_THT:LED_D3.0mm" (id 2) (at 205.74 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 205.74 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Supplier" "--" (id 4) (at 205.74 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC_placed_by" "no" (id 5) (at 205.74 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4e4a42b0-f743-4125-b51e-49874a92cc02))
(pin "2" (uuid 491d22bf-6722-4949-ad4a-d546ca74c752))
)
(symbol (lib_id "power:GND") (at 82.55 38.1 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid a2af9d12-644a-4c82-b442-2977f55d5915)
(property "Reference" "#PWR0105" (id 0) (at 82.55 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 82.6643 42.4244 0))
(property "Footprint" "" (id 2) (at 82.55 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 82.55 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 50f30669-513f-40ce-b646-badb2aea18b2))
)
(symbol (lib_id "Device:LED") (at 205.74 66.04 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid a3b080b0-38c7-4cf5-b46d-247363a868dd)
(property "Reference" "LED405" (id 0) (at 205.9178 59.6646 0))
(property "Value" "St1 (green)" (id 1) (at 205.9178 61.976 0))
(property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 205.74 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 205.74 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCBasicPart" "Basic" (id 4) (at 205.74 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPartNr" "C2297" (id 5) (at 205.74 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCType" "C2297 (green)" (id 6) (at 205.74 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "OriginalType" "ORH-G35A " (id 7) (at 205.74 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Supplier" "LCSC" (id 8) (at 205.74 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)