-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAG_HARVEST_LED.kicad_sch
More file actions
3527 lines (3432 loc) · 121 KB
/
AG_HARVEST_LED.kicad_sch
File metadata and controls
3527 lines (3432 loc) · 121 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 20230121) (generator eeschema)
(uuid 7a5e79f0-47d2-4ebf-840d-837f9bf0439d)
(paper "A4")
(lib_symbols
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (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))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default))
(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))
(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))
(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))
(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 "Labels:DUCK" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "QAK" (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "DUCK" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "DUCK_0_0"
(text "lemonade stand..." (at -7.62 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(text "Walked up to the" (at -7.62 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
)
(symbol "DUCK_0_1"
(rectangle (start -8.89 6.35) (end 10.16 -1.27)
(stroke (width 0) (type default))
(fill (type background))
)
)
)
(symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (at 0 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_0_1"
(circle (center 0 0) (radius 1.27)
(stroke (width 1.27) (type default))
(fill (type none))
)
)
)
)
(junction (at 140.97 46.99) (diameter 0) (color 0 0 0 0)
(uuid 06d3bf6b-d11a-4e53-923b-2af5cced59e9)
)
(junction (at 191.77 143.51) (diameter 0) (color 0 0 0 0)
(uuid 170e80ac-8ec7-4c22-8f98-4c10a59ec567)
)
(junction (at 90.17 143.51) (diameter 0) (color 0 0 0 0)
(uuid 1e502714-135b-47d1-a365-d4a30df4ef16)
)
(junction (at 153.67 143.51) (diameter 0) (color 0 0 0 0)
(uuid 222c3aaf-57fc-4539-8ebf-4297a36ee4cb)
)
(junction (at 102.87 46.99) (diameter 0) (color 0 0 0 0)
(uuid 331eae9b-6618-4286-a842-7af5395ffa81)
)
(junction (at 115.57 46.99) (diameter 0) (color 0 0 0 0)
(uuid 33d50286-bf0a-491d-a4bd-e696f1d09148)
)
(junction (at 115.57 143.51) (diameter 0) (color 0 0 0 0)
(uuid 541d1d51-383a-4b5e-bc8b-2e5462b7b7c0)
)
(junction (at 179.07 46.99) (diameter 0) (color 0 0 0 0)
(uuid 56e859cb-e29a-4764-9e7d-445cf7eecf30)
)
(junction (at 128.27 143.51) (diameter 0) (color 0 0 0 0)
(uuid 57da6e2b-fba8-406b-a742-de300944537c)
)
(junction (at 191.77 46.99) (diameter 0) (color 0 0 0 0)
(uuid 65c538da-3ddf-43d2-9921-d11447fc943c)
)
(junction (at 102.87 143.51) (diameter 0) (color 0 0 0 0)
(uuid 763384d5-cdb4-46f7-ab27-01ab3a7ea4d2)
)
(junction (at 166.37 46.99) (diameter 0) (color 0 0 0 0)
(uuid 7e6f1e83-cf09-4b52-98ed-014a0b5a6f76)
)
(junction (at 179.07 143.51) (diameter 0) (color 0 0 0 0)
(uuid 8828e8f9-fbd8-4d40-b5fc-b39a90e61a7b)
)
(junction (at 153.67 46.99) (diameter 0) (color 0 0 0 0)
(uuid 905c790d-fe5b-4fdc-834c-bacc0f7bfe6d)
)
(junction (at 166.37 143.51) (diameter 0) (color 0 0 0 0)
(uuid d3efbd2f-a452-4b0c-8247-864b66454b74)
)
(junction (at 90.17 46.99) (diameter 0) (color 0 0 0 0)
(uuid d71966cf-ae33-427b-a97f-ab3c5f05036f)
)
(junction (at 128.27 46.99) (diameter 0) (color 0 0 0 0)
(uuid d755a2fc-605f-4c7f-9acb-8aa389573cf7)
)
(junction (at 140.97 143.51) (diameter 0) (color 0 0 0 0)
(uuid da495ae7-4ce4-4c16-8fb4-5e0cf1669c50)
)
(wire (pts (xy 115.57 78.74) (xy 115.57 81.28))
(stroke (width 0) (type default))
(uuid 006b1b5b-4f54-44d9-b3f9-aaafdfdc3ba3)
)
(wire (pts (xy 102.87 46.99) (xy 115.57 46.99))
(stroke (width 0) (type default))
(uuid 036387c4-0378-4afb-8be2-2c7cc286af00)
)
(wire (pts (xy 204.47 88.9) (xy 204.47 91.44))
(stroke (width 0) (type default))
(uuid 036b861f-3425-4c45-bd84-b5ee1ea5af65)
)
(wire (pts (xy 128.27 58.42) (xy 128.27 60.96))
(stroke (width 0) (type default))
(uuid 03dfb93c-03f2-4579-8832-565b05a0755a)
)
(wire (pts (xy 179.07 140.97) (xy 179.07 143.51))
(stroke (width 0) (type default))
(uuid 0955ca86-7067-4e48-9731-00a374bdf83e)
)
(wire (pts (xy 102.87 46.99) (xy 102.87 50.8))
(stroke (width 0) (type default))
(uuid 0b7ffa2d-5112-4219-b31d-0b7e7b104b72)
)
(wire (pts (xy 179.07 109.22) (xy 179.07 111.76))
(stroke (width 0) (type default))
(uuid 0cd6a60c-25b1-4d3f-9bf0-3e67cb9f387a)
)
(wire (pts (xy 115.57 143.51) (xy 128.27 143.51))
(stroke (width 0) (type default))
(uuid 0d908e17-e845-476d-8542-5bbf7259788e)
)
(wire (pts (xy 179.07 78.74) (xy 179.07 81.28))
(stroke (width 0) (type default))
(uuid 0fae9682-6b21-46b8-87bb-bc97079b466a)
)
(wire (pts (xy 78.74 143.51) (xy 90.17 143.51))
(stroke (width 0) (type default))
(uuid 126026f4-ff49-41f9-af5f-acbee500bd75)
)
(wire (pts (xy 140.97 88.9) (xy 140.97 91.44))
(stroke (width 0) (type default))
(uuid 194bc230-1547-464c-9a1d-a26cbf996317)
)
(wire (pts (xy 140.97 68.58) (xy 140.97 71.12))
(stroke (width 0) (type default))
(uuid 1ad51a3f-30d6-475d-9965-5949de93b9ec)
)
(wire (pts (xy 153.67 68.58) (xy 153.67 71.12))
(stroke (width 0) (type default))
(uuid 1f4e04f5-f913-4c8c-8808-c2259f5e8e53)
)
(wire (pts (xy 128.27 78.74) (xy 128.27 81.28))
(stroke (width 0) (type default))
(uuid 201228f3-a7a9-4598-956b-a48d020b4d1e)
)
(wire (pts (xy 90.17 88.9) (xy 90.17 91.44))
(stroke (width 0) (type default))
(uuid 213bb65c-6d57-4ed8-8e63-af41c0478a5f)
)
(wire (pts (xy 153.67 46.99) (xy 166.37 46.99))
(stroke (width 0) (type default))
(uuid 25b5d2b6-e947-4fd1-ac54-31588ce87f37)
)
(wire (pts (xy 102.87 129.54) (xy 102.87 143.51))
(stroke (width 0) (type default))
(uuid 2b2d8a1e-fa1c-49c5-9454-10ebdbeaff68)
)
(wire (pts (xy 90.17 50.8) (xy 90.17 46.99))
(stroke (width 0) (type default))
(uuid 2c0fe375-41d3-4e4e-8e3c-4fb21f6ef6aa)
)
(wire (pts (xy 115.57 119.38) (xy 115.57 121.92))
(stroke (width 0) (type default))
(uuid 2cdadeed-24dc-43f9-8006-38a81af9cb1a)
)
(wire (pts (xy 90.17 109.22) (xy 90.17 111.76))
(stroke (width 0) (type default))
(uuid 2e53effe-1d36-4958-9868-ec430660d198)
)
(wire (pts (xy 166.37 109.22) (xy 166.37 111.76))
(stroke (width 0) (type default))
(uuid 32940e8a-3724-43ec-b389-a18ff3bb3656)
)
(wire (pts (xy 166.37 88.9) (xy 166.37 91.44))
(stroke (width 0) (type default))
(uuid 32e1beff-a1c3-410e-9087-5bbd991bec6e)
)
(wire (pts (xy 204.47 99.06) (xy 204.47 101.6))
(stroke (width 0) (type default))
(uuid 33743e09-c862-4423-9dbe-c4f8d3d6c961)
)
(wire (pts (xy 204.47 129.54) (xy 204.47 143.51))
(stroke (width 0) (type default))
(uuid 3438215f-35af-4653-a48e-00f59b066207)
)
(wire (pts (xy 102.87 99.06) (xy 102.87 101.6))
(stroke (width 0) (type default))
(uuid 38322049-c220-47ac-b4b3-11e53c3692e4)
)
(wire (pts (xy 166.37 58.42) (xy 166.37 60.96))
(stroke (width 0) (type default))
(uuid 38de6386-14c9-443e-858e-1dd1dc2dacc0)
)
(wire (pts (xy 191.77 99.06) (xy 191.77 101.6))
(stroke (width 0) (type default))
(uuid 3f1f647c-4c78-4bff-b208-60e76b257a44)
)
(wire (pts (xy 128.27 46.99) (xy 128.27 50.8))
(stroke (width 0) (type default))
(uuid 3fab6025-31ba-4949-b9de-3491020a7058)
)
(wire (pts (xy 191.77 143.51) (xy 204.47 143.51))
(stroke (width 0) (type default))
(uuid 419be57e-33ae-4b97-ae2f-ada2d80c141d)
)
(wire (pts (xy 102.87 78.74) (xy 102.87 81.28))
(stroke (width 0) (type default))
(uuid 4570c145-e84a-44e0-85a5-9a1a490321ec)
)
(wire (pts (xy 90.17 58.42) (xy 90.17 60.96))
(stroke (width 0) (type default))
(uuid 4587aac4-b2cb-4273-8364-ea2f019346c7)
)
(wire (pts (xy 166.37 46.99) (xy 179.07 46.99))
(stroke (width 0) (type default))
(uuid 45ee766e-f089-45fc-9f95-d1d0d1daedca)
)
(wire (pts (xy 140.97 143.51) (xy 153.67 143.51))
(stroke (width 0) (type default))
(uuid 47fe3b85-084e-4bd8-8643-3ec4702c6307)
)
(wire (pts (xy 191.77 119.38) (xy 191.77 121.92))
(stroke (width 0) (type default))
(uuid 48ca603d-8adb-4a7e-b069-2e85e254fb9d)
)
(wire (pts (xy 204.47 109.22) (xy 204.47 111.76))
(stroke (width 0) (type default))
(uuid 4c58e454-c8c9-4e8e-addd-294141ce912f)
)
(wire (pts (xy 166.37 99.06) (xy 166.37 101.6))
(stroke (width 0) (type default))
(uuid 4d98e0e6-62e6-4da4-ac7e-3d7838799d3c)
)
(wire (pts (xy 166.37 129.54) (xy 166.37 143.51))
(stroke (width 0) (type default))
(uuid 50bb7693-93b4-409e-bdb7-d2d8a3bb1134)
)
(wire (pts (xy 140.97 129.54) (xy 140.97 143.51))
(stroke (width 0) (type default))
(uuid 5463fbea-3b21-487c-9225-ce6c434d2597)
)
(wire (pts (xy 191.77 46.99) (xy 191.77 50.8))
(stroke (width 0) (type default))
(uuid 55b92e2e-2d2c-49dd-b79b-16218c3a2894)
)
(wire (pts (xy 102.87 88.9) (xy 102.87 91.44))
(stroke (width 0) (type default))
(uuid 59daadcf-4604-4a99-b298-21a1e21ffc30)
)
(wire (pts (xy 102.87 58.42) (xy 102.87 60.96))
(stroke (width 0) (type default))
(uuid 5c474f3c-3b3f-490c-93dd-6f59986fd9c4)
)
(wire (pts (xy 204.47 46.99) (xy 204.47 50.8))
(stroke (width 0) (type default))
(uuid 5c83d5e5-4d34-453a-af2b-5db12cdf7167)
)
(wire (pts (xy 140.97 46.99) (xy 153.67 46.99))
(stroke (width 0) (type default))
(uuid 6020a445-63b6-4833-b4e1-dc38705bf8df)
)
(wire (pts (xy 204.47 78.74) (xy 204.47 81.28))
(stroke (width 0) (type default))
(uuid 6664402c-a2f2-47c4-85c6-5328315bc25e)
)
(wire (pts (xy 140.97 78.74) (xy 140.97 81.28))
(stroke (width 0) (type default))
(uuid 66fe41d6-85d5-4115-96c2-a2189f15b2df)
)
(wire (pts (xy 115.57 46.99) (xy 128.27 46.99))
(stroke (width 0) (type default))
(uuid 682e59c9-aebe-489b-a535-26c709716f5b)
)
(wire (pts (xy 153.67 88.9) (xy 153.67 91.44))
(stroke (width 0) (type default))
(uuid 70884979-27bb-46f2-ad30-ac8a808d849d)
)
(wire (pts (xy 115.57 46.99) (xy 115.57 50.8))
(stroke (width 0) (type default))
(uuid 7637d2f6-503e-4548-b4c8-4807f7c1a16d)
)
(wire (pts (xy 128.27 88.9) (xy 128.27 91.44))
(stroke (width 0) (type default))
(uuid 78a19e9b-24ab-481d-bffa-a817aae6acc2)
)
(wire (pts (xy 78.74 49.53) (xy 78.74 143.51))
(stroke (width 0) (type default))
(uuid 7ab2d478-13a1-4966-8fec-42fc943c9cb6)
)
(wire (pts (xy 204.47 119.38) (xy 204.47 121.92))
(stroke (width 0) (type default))
(uuid 7ad748fb-336f-4efc-8d8b-cefdc34528ce)
)
(wire (pts (xy 115.57 99.06) (xy 115.57 101.6))
(stroke (width 0) (type default))
(uuid 7b944431-335f-40ce-8124-6a4d6f3bd955)
)
(wire (pts (xy 179.07 46.99) (xy 191.77 46.99))
(stroke (width 0) (type default))
(uuid 7df0f39f-e181-45c7-af6d-b7668fda336c)
)
(wire (pts (xy 128.27 109.22) (xy 128.27 111.76))
(stroke (width 0) (type default))
(uuid 7e6c7552-20c7-4ce8-8667-ac9517dc1814)
)
(wire (pts (xy 191.77 129.54) (xy 191.77 143.51))
(stroke (width 0) (type default))
(uuid 7eda0f6d-ba7c-41f6-b4a5-36c7740f7757)
)
(wire (pts (xy 128.27 129.54) (xy 128.27 133.35))
(stroke (width 0) (type default))
(uuid 84da7311-1f18-429b-86fe-543abcfc5c23)
)
(wire (pts (xy 204.47 68.58) (xy 204.47 71.12))
(stroke (width 0) (type default))
(uuid 86c4a959-b507-4d44-81f7-1d49cf79b83f)
)
(wire (pts (xy 153.67 109.22) (xy 153.67 111.76))
(stroke (width 0) (type default))
(uuid 89ca8277-7afe-4145-9592-a82f14e334bc)
)
(wire (pts (xy 128.27 99.06) (xy 128.27 101.6))
(stroke (width 0) (type default))
(uuid 8aaba06e-5e1c-4c15-9ca2-95f57ffed9ce)
)
(wire (pts (xy 191.77 46.99) (xy 204.47 46.99))
(stroke (width 0) (type default))
(uuid 8e28f5e0-3d57-4e0e-ba45-d4cef2d06f7a)
)
(wire (pts (xy 191.77 88.9) (xy 191.77 91.44))
(stroke (width 0) (type default))
(uuid 8fc53ae3-7288-42de-b75e-52a1a369f3b0)
)
(wire (pts (xy 179.07 58.42) (xy 179.07 60.96))
(stroke (width 0) (type default))
(uuid 9912b4da-3eae-46d9-b3ec-f8e83d4ce049)
)
(wire (pts (xy 140.97 109.22) (xy 140.97 111.76))
(stroke (width 0) (type default))
(uuid 99291923-2f43-4fe6-be61-d281a80a88ab)
)
(wire (pts (xy 153.67 143.51) (xy 166.37 143.51))
(stroke (width 0) (type default))
(uuid 9e1ef6de-4aad-407a-a8ba-2377333c1c77)
)
(wire (pts (xy 153.67 46.99) (xy 153.67 50.8))
(stroke (width 0) (type default))
(uuid 9e1fcf72-92fc-48a4-ab8a-e47b804ae7cd)
)
(wire (pts (xy 166.37 46.99) (xy 166.37 50.8))
(stroke (width 0) (type default))
(uuid 9e7b268c-d2dd-4098-9713-77fa20c592ec)
)
(wire (pts (xy 128.27 68.58) (xy 128.27 71.12))
(stroke (width 0) (type default))
(uuid a1962693-a799-498c-b697-111858644e42)
)
(wire (pts (xy 166.37 68.58) (xy 166.37 71.12))
(stroke (width 0) (type default))
(uuid a318a8fc-a760-4043-8657-18f93a12c48a)
)
(wire (pts (xy 90.17 143.51) (xy 102.87 143.51))
(stroke (width 0) (type default))
(uuid a3d53fcb-b83a-4588-858f-a00763c870ac)
)
(wire (pts (xy 153.67 99.06) (xy 153.67 101.6))
(stroke (width 0) (type default))
(uuid a419fe2c-915b-4ae3-ab5a-3ef126873624)
)
(wire (pts (xy 153.67 119.38) (xy 153.67 121.92))
(stroke (width 0) (type default))
(uuid a43dd046-4ddd-4419-a107-1f4fc7b2fb7e)
)
(wire (pts (xy 140.97 46.99) (xy 140.97 50.8))
(stroke (width 0) (type default))
(uuid a4a013e0-db3c-4664-9f67-073f1594ce8a)
)
(wire (pts (xy 191.77 109.22) (xy 191.77 111.76))
(stroke (width 0) (type default))
(uuid a536a252-b016-4f3c-bc79-6c6cfb41367c)
)
(wire (pts (xy 76.2 49.53) (xy 78.74 49.53))
(stroke (width 0) (type default))
(uuid a7c03829-cb5e-4482-ab37-26a3a82cdbda)
)
(wire (pts (xy 115.57 88.9) (xy 115.57 91.44))
(stroke (width 0) (type default))
(uuid a9980e16-c306-4cdf-b43a-475d56598175)
)
(wire (pts (xy 90.17 78.74) (xy 90.17 81.28))
(stroke (width 0) (type default))
(uuid aa6699c5-dd45-4809-9e6a-335af2f720ee)
)
(wire (pts (xy 153.67 129.54) (xy 153.67 143.51))
(stroke (width 0) (type default))
(uuid ac2187b0-2515-4c6e-8bbb-560aa9c48f69)
)
(wire (pts (xy 166.37 78.74) (xy 166.37 81.28))
(stroke (width 0) (type default))
(uuid aeb76cdb-80f6-49a2-81ae-90126e3573c1)
)
(wire (pts (xy 179.07 88.9) (xy 179.07 91.44))
(stroke (width 0) (type default))
(uuid b41d54cc-bf60-4d7e-b4c8-9ec208169ce8)
)
(wire (pts (xy 102.87 68.58) (xy 102.87 71.12))
(stroke (width 0) (type default))
(uuid b4dafd3d-1591-4a05-b657-eee12829f492)
)
(wire (pts (xy 153.67 58.42) (xy 153.67 60.96))
(stroke (width 0) (type default))
(uuid b7d6e1d0-2f65-4d5b-b3f3-c598cf900bd8)
)
(wire (pts (xy 179.07 68.58) (xy 179.07 71.12))
(stroke (width 0) (type default))
(uuid ba13eded-b86a-480e-b459-62fa44f9b002)
)
(wire (pts (xy 191.77 78.74) (xy 191.77 81.28))
(stroke (width 0) (type default))
(uuid bcdc73f5-024a-494c-92ca-fdada8116023)
)
(wire (pts (xy 179.07 99.06) (xy 179.07 101.6))
(stroke (width 0) (type default))
(uuid bd7f7d00-7aad-4e0f-8a88-ce41428d488b)
)
(wire (pts (xy 115.57 68.58) (xy 115.57 71.12))
(stroke (width 0) (type default))
(uuid be2f6ee3-35fd-46f4-bb44-351cad031288)
)
(wire (pts (xy 90.17 99.06) (xy 90.17 101.6))
(stroke (width 0) (type default))
(uuid c141166b-c1ca-43c3-9018-2e0ff4dbec5c)
)
(wire (pts (xy 128.27 46.99) (xy 140.97 46.99))
(stroke (width 0) (type default))
(uuid c5104fd0-7cd2-4f8b-961e-380a517ece62)
)
(wire (pts (xy 179.07 119.38) (xy 179.07 121.92))
(stroke (width 0) (type default))
(uuid c784fc9b-17c2-4ed3-b84b-be2d904eef53)
)
(wire (pts (xy 128.27 143.51) (xy 140.97 143.51))
(stroke (width 0) (type default))
(uuid cb390b45-2b4d-43bb-b364-d40501a648b2)
)
(wire (pts (xy 179.07 46.99) (xy 179.07 50.8))
(stroke (width 0) (type default))
(uuid cd60bee8-98b8-4ec2-9b60-de850cd6c5b6)
)
(wire (pts (xy 90.17 129.54) (xy 90.17 143.51))
(stroke (width 0) (type default))
(uuid ce893ef8-3ec4-46fd-98e1-ac7451eb5b74)
)
(wire (pts (xy 76.2 46.99) (xy 90.17 46.99))
(stroke (width 0) (type default))
(uuid ceefa776-6109-4106-9baa-2fb6d2f40d44)
)
(wire (pts (xy 140.97 99.06) (xy 140.97 101.6))
(stroke (width 0) (type default))
(uuid cfe5f011-1e8f-48d1-a079-898aa4925cdd)
)
(wire (pts (xy 140.97 58.42) (xy 140.97 60.96))
(stroke (width 0) (type default))
(uuid d25723d8-4610-450d-8aa2-f23d36ca07ba)
)
(wire (pts (xy 191.77 58.42) (xy 191.77 60.96))
(stroke (width 0) (type default))
(uuid d2b02e5f-cdfb-47da-89c2-82174a69de35)
)
(wire (pts (xy 115.57 58.42) (xy 115.57 60.96))
(stroke (width 0) (type default))
(uuid d30fb923-8dd1-4a92-965b-726ab13c94ae)
)
(wire (pts (xy 166.37 119.38) (xy 166.37 121.92))
(stroke (width 0) (type default))
(uuid d38ff8b4-fb72-4577-a425-64593c32f5f7)
)
(wire (pts (xy 102.87 109.22) (xy 102.87 111.76))
(stroke (width 0) (type default))
(uuid d7d5d70e-f2c8-4369-9023-821016af975a)
)
(wire (pts (xy 140.97 119.38) (xy 140.97 121.92))
(stroke (width 0) (type default))
(uuid d86ca2f0-0e0a-4189-a307-aeebf5ffbf12)
)
(wire (pts (xy 90.17 46.99) (xy 102.87 46.99))
(stroke (width 0) (type default))
(uuid e00cc776-5783-4b17-8ff2-392d67562220)
)
(wire (pts (xy 102.87 119.38) (xy 102.87 121.92))
(stroke (width 0) (type default))
(uuid e59af1c4-2c95-465a-bc1a-c1c4ac02b4d1)
)
(wire (pts (xy 191.77 68.58) (xy 191.77 71.12))
(stroke (width 0) (type default))
(uuid e5adc01e-e3a2-4bf4-b641-4742ea0465a9)
)
(wire (pts (xy 204.47 58.42) (xy 204.47 60.96))
(stroke (width 0) (type default))
(uuid e84b3f02-a372-4a06-b9d7-2e847784f024)
)
(wire (pts (xy 128.27 119.38) (xy 128.27 121.92))
(stroke (width 0) (type default))
(uuid e98a1d0d-5c58-4e1c-abba-97e822b7ad32)
)
(wire (pts (xy 90.17 68.58) (xy 90.17 71.12))
(stroke (width 0) (type default))
(uuid ec494729-8947-4520-b9e2-94da48e4fed2)
)
(wire (pts (xy 128.27 143.51) (xy 128.27 140.97))
(stroke (width 0) (type default))
(uuid ef263bba-6f8d-4aac-a4a9-b4e2dbd4fd44)
)
(wire (pts (xy 115.57 129.54) (xy 115.57 143.51))
(stroke (width 0) (type default))
(uuid f36e69e5-5540-4159-97fa-1facab275adc)
)
(wire (pts (xy 166.37 143.51) (xy 179.07 143.51))
(stroke (width 0) (type default))
(uuid f68d11e1-691e-4436-9eaa-63588f75ac60)
)
(wire (pts (xy 115.57 109.22) (xy 115.57 111.76))
(stroke (width 0) (type default))
(uuid f7e99bb3-01a7-48f2-a0d9-8165f9722107)
)
(wire (pts (xy 179.07 129.54) (xy 179.07 133.35))
(stroke (width 0) (type default))
(uuid f9575bf6-eb45-429b-8c62-71c471fd3183)
)
(wire (pts (xy 90.17 119.38) (xy 90.17 121.92))
(stroke (width 0) (type default))
(uuid fe58ece2-bac5-4da0-8e80-fc5bac5543d0)
)
(wire (pts (xy 153.67 78.74) (xy 153.67 81.28))
(stroke (width 0) (type default))
(uuid fe79d590-5659-4b5a-8c47-0a6c8e016576)
)
(wire (pts (xy 102.87 143.51) (xy 115.57 143.51))
(stroke (width 0) (type default))
(uuid fea9dcfc-2c8d-4d92-9709-aba7bcbe3baa)
)
(wire (pts (xy 179.07 143.51) (xy 191.77 143.51))
(stroke (width 0) (type default))
(uuid ffbb18e9-d91e-450d-bd8a-dd1515409d8c)
)
(text "OEM LED Measurements:\nI=731mA@23.3V total\n73.1mA per LED\n"
(at 69.85 39.37 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2990c0b6-6e01-4ce1-884e-6a9f467dbfad)
)
(text "LEDs Used (All 2835 size)\nK* = 5000K - Samsung LM281B+ 5000K SPMWH1228MD5WARMVL\nW*= 6500K - Samsung LM281B+ 6500K SPMWH1228MD5WAPMVL\nB* = BLUE - Lumileds Sunplus 2835 Royal Blue L1SP-DRD0002800000\nR* = RED - Lumileds Sunplus 2835 Deep Red L1SP-RYL0002800000\nNote BLUE and RED leds are reverse polarity (large pad is annode)"
(at 78.74 158.75 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b49edc1c-2ac5-424f-b1b1-e26cbf512e81)
)
(symbol (lib_id "Device:LED") (at 166.37 85.09 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 022400f6-0430-4922-ace6-3771a991b93e)
(property "Reference" "K10" (at 169.291 85.4654 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "WARM" (at 169.291 87.8896 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "PCB Libraries:LM281B+" (at 166.37 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 166.37 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr" "Samsung" (at 166.37 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr. P/N" "SPMWH1228MD5WARMVL" (at 166.37 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 218d316f-3fce-496b-8954-1eb59d301b9e))
(pin "2" (uuid 342e29de-8854-4b30-872a-4ccea071ff67))
(instances
(project "AG_HARVEST_LED"
(path "/7a5e79f0-47d2-4ebf-840d-837f9bf0439d"
(reference "K10") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 140.97 54.61 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 02a03383-a0c5-4ab5-8282-542a5cdaeb38)
(property "Reference" "W21" (at 143.891 54.9854 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "COOL" (at 143.891 57.4096 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "PCB Libraries:LM281B+" (at 140.97 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 140.97 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr" "Samsung" (at 140.97 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr. P/N" "SPMWH1228MD5WAPMVL" (at 140.97 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dce9585f-5331-4300-9cd2-3dff8db02ba2))
(pin "2" (uuid b32f3591-082f-493a-b1ba-749b1d54018a))
(instances
(project "AG_HARVEST_LED"
(path "/7a5e79f0-47d2-4ebf-840d-837f9bf0439d"
(reference "W21") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 90.17 125.73 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0485ea0a-6b87-40d0-8ef4-018cc34da0ef)
(property "Reference" "W2" (at 93.091 126.1054 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "COOL" (at 93.091 128.5296 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "PCB Libraries:LM281B+" (at 90.17 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 90.17 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr" "Samsung" (at 90.17 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr. P/N" "SPMWH1228MD5WAPMVL" (at 90.17 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 37e02d14-f30d-4b0d-8940-62af305e1867))
(pin "2" (uuid 64a6c2a5-2ba3-4232-a4dd-3353afda0808))
(instances
(project "AG_HARVEST_LED"
(path "/7a5e79f0-47d2-4ebf-840d-837f9bf0439d"
(reference "W2") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 140.97 115.57 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 085f97cd-21fe-4425-92ae-598531bdfd7e)
(property "Reference" "K20" (at 143.891 115.9454 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "WARM" (at 143.891 118.3696 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "PCB Libraries:LM281B+" (at 140.97 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 140.97 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr" "Samsung" (at 140.97 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr. P/N" "SPMWH1228MD5WARMVL" (at 140.97 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d5dff6be-1018-40e1-b0fa-e1816524559f))
(pin "2" (uuid 0621fa4a-d8a5-4cb7-bac3-44a3eeb9bddf))
(instances
(project "AG_HARVEST_LED"
(path "/7a5e79f0-47d2-4ebf-840d-837f9bf0439d"
(reference "K20") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 166.37 64.77 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 08f08035-2405-411f-9c3a-83143764478c)
(property "Reference" "K34" (at 169.291 65.1454 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "WARM" (at 169.291 67.5696 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "PCB Libraries:LM281B+" (at 166.37 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 166.37 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr" "Samsung" (at 166.37 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr. P/N" "SPMWH1228MD5WARMVL" (at 166.37 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e24691c6-6744-43e7-a2cf-778082e54ab3))
(pin "2" (uuid 6e823ed5-5c53-4aa0-a390-737fc7a40144))
(instances
(project "AG_HARVEST_LED"
(path "/7a5e79f0-47d2-4ebf-840d-837f9bf0439d"
(reference "K34") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 204.47 54.61 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0bcc639b-7ef7-42b4-8019-d619a7745207)
(property "Reference" "W7" (at 207.391 54.9854 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "COOL" (at 207.391 57.4096 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "PCB Libraries:LM281B+" (at 204.47 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 204.47 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr" "Samsung" (at 204.47 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr. P/N" "SPMWH1228MD5WAPMVL" (at 204.47 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b27dafcf-6765-4c5c-b0b8-141b6f210390))
(pin "2" (uuid cd003e84-ddbe-4a4a-bc98-552f9c8bef55))
(instances
(project "AG_HARVEST_LED"
(path "/7a5e79f0-47d2-4ebf-840d-837f9bf0439d"
(reference "W7") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 90.17 64.77 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0cfe55af-6f98-48fe-9368-e1ee79edb3a8)
(property "Reference" "W16" (at 93.091 65.1454 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "COOL" (at 93.091 67.5696 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "PCB Libraries:LM281B+" (at 90.17 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 90.17 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr" "Samsung" (at 90.17 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr. P/N" "SPMWH1228MD5WAPMVL" (at 90.17 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b9d35202-d787-4f2a-bf1c-e3d505c4ab9f))
(pin "2" (uuid 19010e21-bbd7-4c0c-9e0b-ace66bcf7cf3))
(instances
(project "AG_HARVEST_LED"
(path "/7a5e79f0-47d2-4ebf-840d-837f9bf0439d"
(reference "W16") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 115.57 74.93 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0e3d4b86-a626-4d04-8371-6929fec7f7db)
(property "Reference" "K26" (at 118.491 75.3054 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "WARM" (at 118.491 77.7296 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "PCB Libraries:LM281B+" (at 115.57 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 115.57 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr" "Samsung" (at 115.57 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr. P/N" "SPMWH1228MD5WARMVL" (at 115.57 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4ef8734f-8d65-4ccc-8b7b-4547ca2eeaee))
(pin "2" (uuid a456cd53-3339-4146-b8a5-cfa357460d05))
(instances
(project "AG_HARVEST_LED"
(path "/7a5e79f0-47d2-4ebf-840d-837f9bf0439d"
(reference "K26") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 128.27 137.16 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0e4cfdb4-7e43-41ce-b937-d6a57bcd3fbb)
(property "Reference" "W5" (at 131.191 137.5354 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "COOL" (at 131.191 139.9596 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "PCB Libraries:LM281B+" (at 128.27 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 128.27 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr" "Samsung" (at 128.27 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfr. P/N" "SPMWH1228MD5WAPMVL" (at 128.27 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fc5869fa-48e0-40ea-8ab4-2f0bffca5059))
(pin "2" (uuid 530b2381-2e9a-4b0d-8aa1-4cb416480ade))
(instances
(project "AG_HARVEST_LED"
(path "/7a5e79f0-47d2-4ebf-840d-837f9bf0439d"
(reference "W5") (unit 1)