-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcharliedistance.net
3932 lines (3932 loc) · 156 KB
/
charliedistance.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 "/Users/tf/fcloud/Projects/Born Hack/2020/Badge/charliedistance/charliedistance.sch")
(date "Thursday, 09 July 2020 at 21:24:35")
(tool "Eeschema (5.1.5-0-10_14)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Charlie Distance Badge")
(company BornHack)
(rev)
(date)
(source charliedistance.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /issi_charlie_9x16_a/) (tstamps /5EC90811/)
(title_block
(title "IS31FL3731 Charlieplex 9x16 matrix")
(company)
(rev 1.0)
(date)
(source issi_charlie_9x16.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /issi_charlie_9x16_b/) (tstamps /5F64D6C7/)
(title_block
(title "IS31FL3731 Charlieplex 9x16 matrix")
(company)
(rev 1.0)
(date)
(source issi_charlie_9x16.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /psu/) (tstamps /5ECCD596/)
(title_block
(title "Badge 3.3v power supply with 2x AA and USB, auto switch")
(company)
(rev)
(date)
(source psu_2xAA_usb_3v3.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /samd21/) (tstamps /5ED0DA4B/)
(title_block
(title "SAMD21 controller, flash, usb and programming")
(company)
(rev 1.0)
(date)
(source samd21.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /ir/) (tstamps /5EE5A538/)
(title_block
(title "Infrared transmit and receive")
(company)
(rev 1.0)
(date)
(source ir.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name /buttons/) (tstamps /5EE5ADBC/)
(title_block
(title Buttons)
(company)
(rev 1.0)
(date)
(source buttons.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref X1)
(value Badgelife_sao_connector_v169bis)
(footprint badgelife_sao_v169bis:Badgelife-SAOv169-BADGE-2x3)
(libsource (lib badgelife_shitty_addon_v169bis) (part Badgelife_sao_connector_v169bis) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EE11D88))
(comp (ref U1)
(value IS31FL3731-QF)
(footprint Housings_DFN_QFN:QFN-28-1EP_4x4mm_Pitch0.4mm)
(datasheet http://www.issi.com/WW/pdf/31FL3731.pdf)
(libsource (lib Driver_LED) (part IS31FL3731-QF) (description "9x16 LED matrix driver with 8-bit PWM and breathing, QFN-28"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EC90B4E))
(comp (ref C3)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EC984F2))
(comp (ref R1)
(value 20k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib device) (part R) (description Resistor))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EC99B87))
(comp (ref C1)
(value 1uF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECA0503))
(comp (ref C2)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECA1718))
(comp (ref D1)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECAB43A))
(comp (ref D2)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECADC4D))
(comp (ref D3)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECAEC69))
(comp (ref D4)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECB0FE9))
(comp (ref D5)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECB0FF3))
(comp (ref D6)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECB2EC1))
(comp (ref D7)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECB2ECB))
(comp (ref D8)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECB2EDD))
(comp (ref D9)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECB2EE7))
(comp (ref D10)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECE8721))
(comp (ref D11)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECE872B))
(comp (ref D12)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECE8735))
(comp (ref D13)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECE8741))
(comp (ref D14)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECE874B))
(comp (ref D15)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECE8757))
(comp (ref D16)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECE8761))
(comp (ref D17)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECE876D))
(comp (ref D18)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECE8777))
(comp (ref D19)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECF28F4))
(comp (ref D20)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECF28FE))
(comp (ref D21)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECF2908))
(comp (ref D22)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECF2914))
(comp (ref D23)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECF291E))
(comp (ref D24)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECF292A))
(comp (ref D25)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECF2934))
(comp (ref D26)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECF2940))
(comp (ref D27)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECF294A))
(comp (ref D28)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECFC687))
(comp (ref D29)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECFC691))
(comp (ref D30)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECFC69B))
(comp (ref D31)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECFC6A7))
(comp (ref D32)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECFC6B1))
(comp (ref D33)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECFC6BD))
(comp (ref D34)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECFC6C7))
(comp (ref D35)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECFC6D3))
(comp (ref D36)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ECFC6DD))
(comp (ref D37)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED021E0))
(comp (ref D38)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED021EA))
(comp (ref D39)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED021F4))
(comp (ref D40)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02200))
(comp (ref D41)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED0220A))
(comp (ref D42)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02216))
(comp (ref D43)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02220))
(comp (ref D44)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED0222C))
(comp (ref D45)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02236))
(comp (ref D46)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02252))
(comp (ref D47)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED0225C))
(comp (ref D48)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02266))
(comp (ref D49)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02272))
(comp (ref D50)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED0227C))
(comp (ref D51)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02288))
(comp (ref D52)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02292))
(comp (ref D53)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED0229E))
(comp (ref D54)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED022A8))
(comp (ref D55)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED022C7))
(comp (ref D56)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED022D1))
(comp (ref D57)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED022DB))
(comp (ref D58)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED022E7))
(comp (ref D59)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED022F1))
(comp (ref D60)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED022FD))
(comp (ref D61)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02307))
(comp (ref D62)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02313))
(comp (ref D63)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED0231D))
(comp (ref D64)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED0233A))
(comp (ref D65)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02344))
(comp (ref D66)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED0234E))
(comp (ref D67)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED0235A))
(comp (ref D68)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02364))
(comp (ref D69)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02370))
(comp (ref D70)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED0237A))
(comp (ref D71)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02386))
(comp (ref D72)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5ED02390))
(comp (ref D73)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18622))
(comp (ref D74)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1862C))
(comp (ref D75)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18636))
(comp (ref D76)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18642))
(comp (ref D77)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1864C))
(comp (ref D78)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18658))
(comp (ref D79)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18662))
(comp (ref D80)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1866E))
(comp (ref D81)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18678))
(comp (ref D82)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18694))
(comp (ref D83)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1869E))
(comp (ref D84)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF186A8))
(comp (ref D85)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF186B3))
(comp (ref D86)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF186BD))
(comp (ref D87)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF186C9))
(comp (ref D88)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF186D3))
(comp (ref D89)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF186DF))
(comp (ref D90)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF186E9))
(comp (ref D91)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18704))
(comp (ref D92)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1870E))
(comp (ref D93)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18718))
(comp (ref D94)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18722))
(comp (ref D95)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1872C))
(comp (ref D96)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18738))
(comp (ref D97)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18742))
(comp (ref D98)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1874E))
(comp (ref D99)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18758))
(comp (ref D100)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1876F))
(comp (ref D101)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18779))
(comp (ref D102)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18783))
(comp (ref D103)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1878D))
(comp (ref D104)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18797))
(comp (ref D105)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF187A2))
(comp (ref D106)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF187AC))
(comp (ref D107)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF187B8))
(comp (ref D108)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF187C2))
(comp (ref D109)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF187D7))
(comp (ref D110)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF187E1))
(comp (ref D111)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF187EB))
(comp (ref D112)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF187F5))
(comp (ref D113)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF187FF))
(comp (ref D114)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18809))
(comp (ref D115)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18813))
(comp (ref D116)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1881F))
(comp (ref D117)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18829))
(comp (ref D118)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1883B))
(comp (ref D119)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18845))
(comp (ref D120)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1884F))
(comp (ref D121)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18859))
(comp (ref D122)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18863))
(comp (ref D123)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF1886D))
(comp (ref D124)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18877))
(comp (ref D125)
(value LED_Small_ALT)
(footprint LEDs:LED_0603)
(datasheet ~)
(libsource (lib device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /issi_charlie_9x16_a/) (tstamps /5EC90811/))
(tstamp 5EF18882))
(comp (ref D126)