-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlpenglow_RadiantRainbow_PCB.kicad_sch
More file actions
1142 lines (1113 loc) · 41.9 KB
/
Alpenglow_RadiantRainbow_PCB.kicad_sch
File metadata and controls
1142 lines (1113 loc) · 41.9 KB
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 e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A")
(title_block
(title "Alpenglow Radiant Rainbow")
(date "2022-04-13")
(rev "A")
(comment 2 "RAR-0100")
(comment 3 "Wright")
)
(lib_symbols
(symbol "Alpenglow: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 outline))
)
)
(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 "Alpenglow:LED" (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" (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_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 1.016 -1.016)
(xy -0.508 0)
(xy 1.016 1.016)
(xy 1.016 -1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -1.778 -0.254)
(xy -2.286 -0.762)
(xy -2.286 -0.508)
(xy -2.286 -0.762)
(xy -2.032 -0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -0.508)
(xy -1.778 -1.016)
(xy -1.778 -0.762)
(xy -1.778 -1.016)
(xy -1.524 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_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 "Alpenglow:RES" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 1.27 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "RES" (id 1) (at 1.27 -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 US 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 "RES_1_1"
(polyline
(pts
(xy 0 0)
(xy 1.016 -0.381)
(xy 0 -0.762)
(xy -1.016 -1.143)
(xy 0 -1.524)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.524)
(xy 1.016 1.143)
(xy 0 0.762)
(xy -1.016 0.381)
(xy 0 0)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at 0 2.54 270) (length 1.016)
(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 1.016)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Alpenglow:SW_SPDT" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 0 4.318 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_SPDT" (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" "switch single-pole double-throw spdt ON-ON" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Switch, single pole double throw" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_SPDT_0_0"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 -2.54) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "SW_SPDT_0_1"
(polyline
(pts
(xy -1.524 0.254)
(xy 1.651 2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 2.54) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "SW_SPDT_1_1"
(pin passive line (at 5.08 2.54 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Battery_Cell" (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "BT" (id 0) (at 2.54 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Battery_Cell" (id 1) (at 2.54 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 1.524 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 1.524 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "battery cell" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Single-cell battery" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Battery_Cell_0_1"
(rectangle (start -2.286 1.778) (end 2.286 1.524)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -1.5748 1.1938) (end 1.4732 0.6858)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 0 0.762)
(xy 0 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.778)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.508 3.429)
(xy 1.524 3.429)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 3.937)
(xy 1.016 2.921)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Battery_Cell_1_1"
(pin passive line (at 0 5.08 270) (length 2.54)
(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.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "2" (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 143.51 90.17) (diameter 0) (color 0 0 0 0)
(uuid 0f00dcf4-f0d3-417c-818d-bc0e37b67c1c)
)
(junction (at 147.32 77.47) (diameter 0) (color 0 0 0 0)
(uuid 27d652f9-aa44-4942-a08c-1755844fce1c)
)
(junction (at 172.72 97.79) (diameter 0) (color 0 0 0 0)
(uuid 283fb8dd-212c-469f-97d7-63bd55857b7d)
)
(junction (at 222.25 121.92) (diameter 0) (color 0 0 0 0)
(uuid 3cdc5a21-db8b-47d0-808f-3e46448cc0d4)
)
(junction (at 195.58 104.14) (diameter 0) (color 0 0 0 0)
(uuid 47a08740-6973-4f3d-bc33-da22086387b4)
)
(junction (at 81.28 139.7) (diameter 0) (color 0 0 0 0)
(uuid 5a0ae724-ffb6-49f2-8d81-6e1bb149b57f)
)
(junction (at 139.7 90.17) (diameter 0) (color 0 0 0 0)
(uuid 5b718b64-a22a-453b-bab7-6a8e67d0d130)
)
(junction (at 143.51 139.7) (diameter 0) (color 0 0 0 0)
(uuid 6922063e-272b-4ef1-9fa6-d47f9e9f4afd)
)
(junction (at 172.72 86.36) (diameter 0) (color 0 0 0 0)
(uuid 6ab7c0f8-8731-46f9-91ad-a25cb31ce6e1)
)
(junction (at 143.51 77.47) (diameter 0) (color 0 0 0 0)
(uuid 6eeb3d11-1d3f-4798-9b0f-7b8b322a6f06)
)
(junction (at 222.25 111.76) (diameter 0) (color 0 0 0 0)
(uuid 7f0d896e-30b9-4324-8209-7729ac552e9f)
)
(junction (at 172.72 139.7) (diameter 0) (color 0 0 0 0)
(uuid 828cf215-c75a-47da-bf80-2126646a6471)
)
(junction (at 172.72 62.23) (diameter 0) (color 0 0 0 0)
(uuid 9d557b77-2831-4202-a57a-1a465eb40429)
)
(junction (at 147.32 90.17) (diameter 0) (color 0 0 0 0)
(uuid a423c2ee-5932-4cba-9dd4-732935498028)
)
(junction (at 195.58 139.7) (diameter 0) (color 0 0 0 0)
(uuid a487c214-11ee-426b-b749-9d8363e5bdbc)
)
(junction (at 195.58 114.3) (diameter 0) (color 0 0 0 0)
(uuid aaf4c4e4-4d4b-4893-95b0-11dffa805909)
)
(junction (at 184.15 62.23) (diameter 0) (color 0 0 0 0)
(uuid b0425a25-da7b-4197-af0c-26ebdff1db44)
)
(junction (at 87.63 50.8) (diameter 0) (color 0 0 0 0)
(uuid cd904642-e0f6-4f4b-8373-f3f8d891019d)
)
(junction (at 139.7 77.47) (diameter 0) (color 0 0 0 0)
(uuid dc9d3d40-93b8-44e0-b0a6-3efbe3400d1b)
)
(junction (at 195.58 62.23) (diameter 0) (color 0 0 0 0)
(uuid e9f8fa10-c0ad-487c-b5e6-01f3095dbba9)
)
(no_connect (at 146.05 53.34) (uuid f5c9c8e3-6f33-462b-a710-6263212731d6))
(wire (pts (xy 172.72 86.36) (xy 180.34 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04343778-baeb-481b-a167-9f8446378d48)
)
(wire (pts (xy 87.63 50.8) (xy 135.89 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 047f5ec8-1d88-4aef-9bc4-20f5f5b04e44)
)
(wire (pts (xy 190.5 114.3) (xy 195.58 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0590af79-a4af-41f6-8e43-39093e291786)
)
(wire (pts (xy 195.58 114.3) (xy 195.58 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05b012f5-b133-4738-ab80-77e6d4235c3b)
)
(wire (pts (xy 132.08 77.47) (xy 132.08 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11356591-8892-430b-bd07-dab8039f6efc)
)
(wire (pts (xy 154.94 86.36) (xy 154.94 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 121a6802-456a-4c66-a263-faf7abca20ea)
)
(wire (pts (xy 200.66 110.49) (xy 200.66 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13f7bd8d-56da-43aa-b8ef-d16caf0b6206)
)
(wire (pts (xy 222.25 62.23) (xy 222.25 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18acd9f8-8686-4ca8-8326-a1b389af3567)
)
(wire (pts (xy 172.72 139.7) (xy 143.51 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1bed7fa1-505c-4405-8418-5fa79c44e11e)
)
(wire (pts (xy 143.51 90.17) (xy 147.32 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ee81015-5766-4da0-9911-94f3669d74d4)
)
(wire (pts (xy 195.58 104.14) (xy 200.66 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2193fd54-9467-445e-a690-7788e71a0a17)
)
(wire (pts (xy 222.25 107.95) (xy 222.25 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2384db4b-9cad-42dc-9c86-0aab94eb3ba6)
)
(wire (pts (xy 147.32 90.17) (xy 154.94 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2863d061-d85f-44f3-bea0-a73d94d89320)
)
(wire (pts (xy 217.17 121.92) (xy 222.25 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 294fd87b-68ac-4a59-be38-34ee173d9923)
)
(wire (pts (xy 184.15 48.26) (xy 184.15 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d5ea63a-789e-49b1-90cb-acc184817882)
)
(wire (pts (xy 139.7 77.47) (xy 132.08 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 328c5dee-d45c-4067-9f76-272bb18996ba)
)
(wire (pts (xy 143.51 62.23) (xy 172.72 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33da343f-89d9-441f-8336-b6c813155f78)
)
(wire (pts (xy 195.58 62.23) (xy 222.25 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a2d21db-b1ac-4a8c-88c7-8a6bbb1f8636)
)
(wire (pts (xy 139.7 77.47) (xy 139.7 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b6ef670-4302-41d4-8379-e213696d052f)
)
(wire (pts (xy 217.17 111.76) (xy 217.17 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 409975b4-8ec9-4a62-8205-a0ef42347042)
)
(wire (pts (xy 147.32 77.47) (xy 147.32 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41765878-33cf-4b5d-a800-a3ab4019351a)
)
(wire (pts (xy 132.08 90.17) (xy 139.7 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 436c18f9-56dc-41f0-a724-d5d7ed8f967a)
)
(wire (pts (xy 48.26 50.8) (xy 87.63 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 458829c4-25c1-4c04-a5f6-436787e06679)
)
(wire (pts (xy 180.34 97.79) (xy 180.34 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4877d87c-9205-48b6-bf81-9271725a66d8)
)
(wire (pts (xy 172.72 86.36) (xy 165.1 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4edc674e-c284-4db0-b7e6-85bf19d717d5)
)
(wire (pts (xy 146.05 48.26) (xy 184.15 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f1a84f8-c0fe-44a2-8729-a254849a5ff2)
)
(wire (pts (xy 81.28 139.7) (xy 81.28 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f2b0ebf-87a3-478e-b93e-b76461fb8f41)
)
(wire (pts (xy 143.51 77.47) (xy 147.32 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 583eedc9-76b1-469a-9133-d564a1c75592)
)
(wire (pts (xy 154.94 77.47) (xy 154.94 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 60e1770f-87dd-435a-b1b8-29477ef9dde0)
)
(wire (pts (xy 143.51 139.7) (xy 81.28 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6522b17c-da87-43f8-8dce-77de4416ac0e)
)
(wire (pts (xy 217.17 118.11) (xy 217.17 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6840f4ac-6b3e-4254-83c6-c16fba376491)
)
(wire (pts (xy 172.72 86.36) (xy 172.72 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 691de1d2-7a3e-4431-b1ba-57dcf7645f20)
)
(wire (pts (xy 132.08 86.36) (xy 132.08 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 696981ed-07da-43cd-be39-741751b47181)
)
(wire (pts (xy 48.26 139.7) (xy 48.26 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ad5e975-b432-4c6f-bd61-11ef17b2eefb)
)
(wire (pts (xy 143.51 62.23) (xy 143.51 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e916802-bbcf-4e1d-8a20-7c70b274ec18)
)
(wire (pts (xy 195.58 139.7) (xy 172.72 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f3b9b30-b8f2-427a-a6ef-a90e8c5ffdbe)
)
(wire (pts (xy 222.25 139.7) (xy 195.58 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7277406a-a18b-4791-afdb-a5f917c861e6)
)
(wire (pts (xy 172.72 93.98) (xy 172.72 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75b02c82-5d62-4cb1-8aea-cd3c360d20e2)
)
(wire (pts (xy 165.1 86.36) (xy 165.1 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a4db53f-264c-4513-adf9-7dc22e686ece)
)
(wire (pts (xy 222.25 111.76) (xy 227.33 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 807bd490-563a-44e7-99a9-3a342e7a6649)
)
(wire (pts (xy 172.72 97.79) (xy 180.34 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 873c5cfa-7159-4bfb-af05-46d580d67d4d)
)
(wire (pts (xy 200.66 104.14) (xy 200.66 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 895aafcd-62cd-47cc-b8fc-a408a704f4fd)
)
(wire (pts (xy 172.72 78.74) (xy 172.72 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e643592-7f1b-4f38-b494-95fe37d7af9f)
)
(wire (pts (xy 165.1 97.79) (xy 172.72 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90600a3f-1603-4ce4-8505-cc44d8dc629c)
)
(wire (pts (xy 143.51 90.17) (xy 143.51 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9223e02f-8d0a-425e-9116-30717d815ac8)
)
(wire (pts (xy 165.1 93.98) (xy 165.1 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97899744-26fe-42e7-a844-e8c59ab5897e)
)
(wire (pts (xy 172.72 97.79) (xy 172.72 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99a350c4-aa35-47f0-9316-54698550a3a4)
)
(wire (pts (xy 139.7 86.36) (xy 139.7 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a895c71-aeb5-4fac-98ac-d5b1790f1606)
)
(wire (pts (xy 222.25 111.76) (xy 217.17 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9cacff81-c41f-47e9-9000-1d138930b3ac)
)
(wire (pts (xy 195.58 114.3) (xy 200.66 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a7aacc73-ab17-4d36-8043-40d0e12af3b3)
)
(wire (pts (xy 172.72 83.82) (xy 172.72 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af9b5ea2-280a-41cd-8516-afe3aa7e7b04)
)
(wire (pts (xy 195.58 100.33) (xy 195.58 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b8d093f3-2944-45f5-b7d6-a9c4b057e6c6)
)
(wire (pts (xy 195.58 104.14) (xy 190.5 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b90909bf-8ddc-4e37-8d0b-1edb2fa812e3)
)
(wire (pts (xy 227.33 111.76) (xy 227.33 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c2e9dab1-fbf3-4e12-bcc1-d7b047e59384)
)
(wire (pts (xy 139.7 90.17) (xy 143.51 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c33ec51e-271c-4f86-9fd0-2039fad57da0)
)
(wire (pts (xy 143.51 77.47) (xy 139.7 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d3e36058-fe35-4e59-a181-58fbb5aa0c21)
)
(wire (pts (xy 190.5 110.49) (xy 190.5 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d5e44a39-9add-4f94-8c0d-2e82f461ffbd)
)
(wire (pts (xy 172.72 62.23) (xy 184.15 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d66eb21a-4706-4240-8ab1-8dc185c4ce60)
)
(wire (pts (xy 147.32 86.36) (xy 147.32 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d8366b21-b237-4c35-b932-a646e991b490)
)
(wire (pts (xy 222.25 121.92) (xy 227.33 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid db18c355-0413-4712-b619-c5133e8e7736)
)
(wire (pts (xy 48.26 83.82) (xy 48.26 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dc00f000-b6e3-4df2-9096-fd2ccc6ef5b1)
)
(wire (pts (xy 222.25 121.92) (xy 222.25 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid de38ae6b-2c82-4314-9b5b-99d74557e3b1)
)
(wire (pts (xy 143.51 71.12) (xy 143.51 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e0ce33dd-abc9-430c-b7bc-d293eef27e3e)
)
(wire (pts (xy 184.15 62.23) (xy 195.58 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5d48510-a1bf-41a2-ae92-eb2a48b8f27f)
)
(wire (pts (xy 147.32 77.47) (xy 154.94 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e8032277-ca10-4c0a-9e62-232da1f7db69)
)
(wire (pts (xy 195.58 62.23) (xy 195.58 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec4e7f9a-6bc1-40f3-b36f-78487cf17e8a)
)
(wire (pts (xy 48.26 139.7) (xy 81.28 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ede9cdb6-170f-4f08-a111-3e9308942fce)
)
(wire (pts (xy 190.5 104.14) (xy 190.5 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f5c1073f-d475-4492-a36d-fb0b7148e8a1)
)
(wire (pts (xy 180.34 86.36) (xy 180.34 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fce46f81-7603-49da-b7b3-7c6d967e4a37)
)
(wire (pts (xy 227.33 121.92) (xy 227.33 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fffbc7d3-c3f9-4be3-bd50-82cf0f59b80d)
)
(label "LED+" (at 165.1 48.26 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8f30de1f-87bd-4a9a-96e2-e4345d0af80e)
)
(symbol (lib_id "Alpenglow:RES") (at 143.51 68.58 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 162bcbf8-fe68-4c54-95da-92be290dc035)
(property "Reference" "R1" (id 0) (at 145.288 67.6715 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "499" (id 1) (at 145.288 70.4466 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 143.51 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 143.51 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 13ba72a6-52c8-4322-b357-fd7cde7063c2))
(pin "2" (uuid 4821d48f-381b-45fa-9a0a-5795caa11b7c))
)
(symbol (lib_id "Alpenglow:LED") (at 139.7 83.82 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 40af91af-d7de-4604-b635-32d1b77dec4d)
(property "Reference" "D2" (id 0) (at 141.478 83.483 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "RED" (id 1) (at 141.478 86.2581 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Alpenglow:LED_D3.0mm" (id 2) (at 139.7 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 139.7 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 480e9d57-6376-4860-9e07-808a59fac9eb))
(pin "2" (uuid 87ca00d0-8603-4f8a-ad47-a218287c69f2))
)
(symbol (lib_id "power:VCC") (at 87.63 50.8 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 6987c17b-5dcf-4be8-b04e-8ccfe9a69a1f)
(property "Reference" "#PWR0102" (id 0) (at 87.63 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 87.63 47.1955 0))
(property "Footprint" "" (id 2) (at 87.63 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 87.63 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5b92b8c6-b975-41b8-961d-bd8d956c0089))
)
(symbol (lib_id "Alpenglow:LED") (at 180.34 91.44 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 6d1ad53c-8cc9-414e-bf92-334800a78c0c)
(property "Reference" "D7" (id 0) (at 182.118 91.103 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "YEL" (id 1) (at 182.118 93.8781 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Alpenglow:LED_D3.0mm" (id 2) (at 180.34 91.44 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 180.34 91.44 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ebe2e492-3258-49fc-b1a8-48725dcffeb6))
(pin "2" (uuid 25dc1a21-cfa2-4eb9-bcf7-34af94c2f020))
)
(symbol (lib_id "Alpenglow:LED") (at 154.94 83.82 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 6ffddd55-c0b3-4e59-aeb4-385d508c1616)
(property "Reference" "D4" (id 0) (at 156.718 83.483 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "RED" (id 1) (at 156.718 86.2581 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Alpenglow:LED_D3.0mm" (id 2) (at 154.94 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 154.94 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 019b35ac-df44-439d-81bb-cecf77a69203))
(pin "2" (uuid 370f87b0-727d-463b-9b2a-93d49b3bd51d))
)
(symbol (lib_id "Alpenglow:LED") (at 132.08 83.82 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 772365c3-3d71-4baa-b7bd-21f00f05ab95)
(property "Reference" "D1" (id 0) (at 133.858 83.483 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "RED" (id 1) (at 133.858 86.2581 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Alpenglow:LED_D3.0mm" (id 2) (at 132.08 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.08 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a6a8f721-f5f3-4192-82f5-45dc167bce41))
(pin "2" (uuid 780df0fb-fd78-4688-8fbc-e6effea998e5))
)
(symbol (lib_id "Alpenglow:GND") (at 81.28 149.86 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 8a477bac-2bf7-435b-a0d9-7b6ed0c9abc0)
(property "Reference" "#PWR0101" (id 0) (at 81.28 156.21 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 81.28 154.4225 0))
(property "Footprint" "" (id 2) (at 81.28 149.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 81.28 149.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 38841810-ef1f-43b5-9ef6-cfb591079015))
)
(symbol (lib_id "Alpenglow:RES") (at 172.72 81.28 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 9096053c-3ff1-40be-a240-911e6956b077)
(property "Reference" "R2" (id 0) (at 174.498 80.3715 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "220" (id 1) (at 174.498 83.1466 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 172.72 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 172.72 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 762cadbe-7924-4c3a-8c11-987e572b72af))
(pin "2" (uuid ac8b5982-fc68-4537-9bf0-612d63951d91))
)
(symbol (lib_id "Alpenglow:LED") (at 172.72 91.44 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 91776046-cae3-445d-953a-ad6e50f06d7c)
(property "Reference" "D6" (id 0) (at 174.498 91.103 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "YEL" (id 1) (at 174.498 93.8781 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Alpenglow:LED_D3.0mm" (id 2) (at 172.72 91.44 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 172.72 91.44 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid be5d8680-ae4d-4997-9a7e-7e13616b6538))
(pin "2" (uuid 1c569c2b-8416-4ca4-aafb-a8a73032326d))
)
(symbol (lib_id "Alpenglow:LED") (at 200.66 107.95 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid a14a43c3-26f8-4262-9dee-dc1838e99e42)
(property "Reference" "D9" (id 0) (at 202.438 107.613 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "GRN" (id 1) (at 202.438 110.3881 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Alpenglow:LED_D3.0mm" (id 2) (at 200.66 107.95 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 200.66 107.95 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7d38a876-2962-4eee-8dd5-6bf459f07c44))
(pin "2" (uuid cf633350-7060-41da-a0e2-d8027ff70562))
)
(symbol (lib_id "Alpenglow:LED") (at 147.32 83.82 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid b64d5823-c7b2-4c2f-9b36-f4f30998d9a2)
(property "Reference" "D3" (id 0) (at 149.098 83.483 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "RED" (id 1) (at 149.098 86.2581 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Alpenglow:LED_D3.0mm" (id 2) (at 147.32 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 147.32 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7cd0a7ac-369a-4a56-bb53-9c7267da309e))
(pin "2" (uuid d025ee35-5eb3-47e8-82ea-2e514e17a919))
)
(symbol (lib_id "Alpenglow:LED") (at 227.33 115.57 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid bdfa7913-6634-4c2f-ba0c-04f6a3c2fc7f)
(property "Reference" "D11" (id 0) (at 229.108 115.233 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "BLU" (id 1) (at 229.108 118.0081 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Alpenglow:LED_D3.0mm" (id 2) (at 227.33 115.57 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 227.33 115.57 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9c6e03c7-2471-4e04-8a23-5115ffa95aab))
(pin "2" (uuid 7f5a5cdb-02ec-44ec-98ed-76e02d34361c))
)
(symbol (lib_id "Device:Battery_Cell") (at 48.26 88.9 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid bfae8c18-052d-40bd-a952-a8d5f199fb59)
(property "Reference" "BT1" (id 0) (at 51.181 85.9595 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Battery_Cell" (id 1) (at 51.181 88.7346 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Alpenglow:BatteryHolder_MPD_BK888_2032_THRU" (id 2) (at 48.26 87.376 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 48.26 87.376 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7e944544-4a87-49ca-8425-069d42aef37b))
(pin "2" (uuid f2cccd04-797a-46af-80b5-b40ffbbb5cd6))
)
(symbol (lib_id "Alpenglow:LED") (at 165.1 91.44 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid c4847619-8064-4bb4-9c60-0d9fae211def)
(property "Reference" "D5" (id 0) (at 166.878 91.103 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "YEL" (id 1) (at 166.878 93.8781 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Alpenglow:LED_D3.0mm" (id 2) (at 165.1 91.44 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 165.1 91.44 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0ef8cc28-c17f-459e-bad7-2411c943b922))
(pin "2" (uuid 35b5368f-efdd-4876-9992-e0a5aac5e03b))
)
(symbol (lib_id "Alpenglow:LED") (at 190.5 107.95 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid e59ee8d4-99a7-410d-a4da-17bd9e082370)
(property "Reference" "D8" (id 0) (at 192.278 107.613 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "GRN" (id 1) (at 192.278 110.3881 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Alpenglow:LED_D3.0mm" (id 2) (at 190.5 107.95 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 190.5 107.95 90)
(effects (font (size 1.27 1.27)) hide)