-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrosaline-ortho.net
1700 lines (1700 loc) · 64.2 KB
/
rosaline-ortho.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/pauljames/Projects/keyboard/juliet-keyboard/juliet-ortho.sch)
(date "2021 August 11, Wednesday 22:08:08")
(tool "Eeschema (5.1.10-1-10_14)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Juliet Ortholinear PCB")
(company)
(rev)
(date)
(source juliet-ortho.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref D1)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C075018))
(comp (ref 1u_MX2)
(value Esc)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C09DA38))
(comp (ref D2)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C09DA3E))
(comp (ref 1u_MX3)
(value LShift)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C0A07D3))
(comp (ref D3)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C0A07D9))
(comp (ref 1u_MX4)
(value LCtrl)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C0A089E))
(comp (ref D4)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C0A08A4))
(comp (ref 1u_MX9)
(value W)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149111))
(comp (ref D9)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149117))
(comp (ref 1u_MX10)
(value S)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14911F))
(comp (ref D10)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149125))
(comp (ref 1u_MX11)
(value X)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14912D))
(comp (ref D11)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149133))
(comp (ref 1u_MX12)
(value LAlt)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14913B))
(comp (ref D12)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149141))
(comp (ref 1u_MX17)
(value R)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14948A))
(comp (ref D17)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149490))
(comp (ref 1u_MX18)
(value F)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149498))
(comp (ref D18)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14949E))
(comp (ref 1u_MX19)
(value V)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1494A6))
(comp (ref D19)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1494AC))
(comp (ref 1u_MX20)
(value Lower)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1494B4))
(comp (ref D20)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1494BA))
(comp (ref 1u_MX25)
(value 1)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1494C9))
(comp (ref D25)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1494CF))
(comp (ref 1u_MX26)
(value 4)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1494D7))
(comp (ref D26)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1494DD))
(comp (ref 1u_MX27)
(value 7)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1494E5))
(comp (ref D27)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1494EB))
(comp (ref 1u_MX28)
(value 0)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1494F3))
(comp (ref D28)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1494F9))
(comp (ref D33)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149F5A))
(comp (ref 1u_MX34)
(value 6)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149F62))
(comp (ref D34)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149F68))
(comp (ref 1u_MX35)
(value 9)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149F70))
(comp (ref D35)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149F76))
(comp (ref 1u_MX36)
(value .)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149F7E))
(comp (ref D36)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149F84))
(comp (ref 1u_MX41)
(value U)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149F93))
(comp (ref D41)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149F99))
(comp (ref 1u_MX42)
(value J)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149FA1))
(comp (ref D42)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149FA7))
(comp (ref 1u_MX43)
(value M)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149FAF))
(comp (ref D43)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149FB5))
(comp (ref 1u_MX44)
(value Raise)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149FBD))
(comp (ref D44)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149FC3))
(comp (ref 1u_MX49)
(value O)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149FE4))
(comp (ref D49)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149FEA))
(comp (ref 1u_MX50)
(value L)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149FF2))
(comp (ref D50)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149FF8))
(comp (ref 1u_MX51)
(value .)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14A000))
(comp (ref D51)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14A006))
(comp (ref D54)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14A01B))
(comp (ref D55)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14A029))
(comp (ref 1u_MX57)
(value Back)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14A031))
(comp (ref D57)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14A037))
(comp (ref 1u_MX58)
(value ')
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14A03F))
(comp (ref D58)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14A045))
(comp (ref R4)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C33D4AF))
(comp (ref SW1)
(value RESET)
(footprint Button_Switch_THT:SW_PUSH_6mm)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C315059))
(comp (ref SW2)
(value BOOT)
(footprint Button_Switch_THT:SW_PUSH_6mm)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C466A7F))
(comp (ref C3)
(value 4.7u)
(footprint Capacitor_THT:CP_Radial_D4.0mm_P1.50mm)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C16F9AA))
(comp (ref R1)
(value 1.5k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C23318D))
(comp (ref F1)
(value 100mA)
(footprint Fuse:Fuse_Bourns_MF-RHT100)
(datasheet ~)
(libsource (lib Device) (part Polyfuse_Small) (description "Resettable fuse, polymeric positive temperature coefficient, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C24FB09))
(comp (ref C4)
(value 100n)
(footprint Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C281433))
(comp (ref R3)
(value 75R)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C295A9E))
(comp (ref R2)
(value 75R)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C2E8873))
(comp (ref C5)
(value 100n)
(footprint Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C2EA162))
(comp (ref Y1)
(value 16MHz)
(footprint Crystal:Crystal_HC49-4H_Vertical)
(datasheet ~)
(libsource (lib Device) (part Crystal_Small) (description "Two pin crystal, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C3232F3))
(comp (ref C1)
(value 22p)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C379723))
(comp (ref C2)
(value 22p)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C390332))
(comp (ref H1)
(value M2)
(footprint juliet:MountingHole_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C122533))
(comp (ref H4)
(value M2)
(footprint juliet:MountingHole_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C12253A))
(comp (ref H7)
(value M2)
(footprint juliet:MountingHole_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C122541))
(comp (ref H2)
(value M2)
(footprint juliet:MountingSlot_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C13CC58))
(comp (ref U1)
(value ATMEGA328-PU)
(footprint Package_DIP:DIP-28_W7.62mm)
(datasheet http://www.atmel.com/images/atmel-8271-8-bit-avr-microcontroller-atmega48a-48pa-88a-88pa-168a-168pa-328-328p_datasheet.pdf)
(libsource (lib MCU_Microchip_ATmega) (part ATmega328P-PU) (description "20MHz, 32kB Flash, 2kB SRAM, 1kB EEPROM, DIP-28"))
(sheetpath (names /) (tstamps /))
(tstamp 5C16FB14))
(comp (ref 1u_MX5)
(value Q)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C0271))
(comp (ref D5)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C0277))
(comp (ref 1u_MX13)
(value E)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C02A0))
(comp (ref D13)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C02A6))
(comp (ref 1u_MX21)
(value T)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C02D2))
(comp (ref D21)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C02D8))
(comp (ref 1u_MX29)
(value 2)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C0301))
(comp (ref D29)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C0307))
(comp (ref 1u_MX45)
(value I)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C0365))
(comp (ref D45)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C036B))
(comp (ref 1u_MX52)
(value Down)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C0395))
(comp (ref D52)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C039B))
(comp (ref 1u_MX59)
(value Enter)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C03C4))
(comp (ref D59)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C03CA))
(comp (ref LED1)
(value GREEN)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C0E986B))
(comp (ref R7)
(value 1.5k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C155613))
(comp (ref 1u_MX1)
(value Tab)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C075012))
(comp (ref 1u_MX6)
(value A)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C027F))
(comp (ref D6)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C0285))
(comp (ref 1u_MX14)
(value D)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C02AE))
(comp (ref D14)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C02B4))
(comp (ref 1u_MX22)
(value G)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C02E0))
(comp (ref D22)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C02E6))
(comp (ref 1u_MX30)
(value 5)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C030F))
(comp (ref D30)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C0315))
(comp (ref 1u_MX46)
(value K)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C0373))
(comp (ref D46)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C0379))
(comp (ref 1u_MX53)
(value P)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C03A3))
(comp (ref D53)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C03A9))
(comp (ref 1u_MX60)
(value Right)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 600C03D2))
(comp (ref J2)
(value AVR_ISP_6)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x03_Odd_Even) (description "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C3F2FD0))
(comp (ref H3)
(value M2)
(footprint juliet:MountingFlex_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 608A2ADF))
(comp (ref H5)
(value M2)
(footprint juliet:MountingFlex_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 608A2ED7))
(comp (ref LED2)
(value RED)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED_Small_ALT) (description "Light emitting diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD371C3))
(comp (ref R8)
(value 1.5k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD371D8))
(comp (ref 1u_MX37)
(value Y)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 609DE1CD))
(comp (ref D37)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 609DE1D7))
(comp (ref 1u_MX38)
(value H)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 609F4962))
(comp (ref D38)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 609F496C))
(comp (ref H6)
(value M2)
(footprint juliet:MountingFlex_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61287EB7))
(comp (ref J3)
(value JST)
(footprint Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 600CB1E1))
(comp (ref D61)
(value 3.6V)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small_ALT) (description "Schottky diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1ED964))
(comp (ref D62)
(value 3.6V)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small_ALT) (description "Schottky diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1EE1C2))
(comp (ref J1)
(value USB)
(footprint juliet:USB_Hybrid_THT)
(datasheet https://www.usb.org/sites/default/files/documents/usb_type-c.zip)
(libsource (lib usb_hybrid) (part USB_Hybrid) (description "USB 2.0-only Type-C Receptacle connector"))
(sheetpath (names /) (tstamps /))
(tstamp 601E2E5D))
(comp (ref R5)
(value 5.1k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6092B761))
(comp (ref R6)
(value 5.1k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 609C8566))
(comp (ref 1u_MX33)
(value 3)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C149F54))
(comp (ref 1u_MX55)
(value /)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14A023))
(comp (ref H8)
(value M2)
(footprint juliet:MountingFlex_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 616C2B26))
(comp (ref H9)
(value M2)
(footprint juliet:MountingSlot_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 616D1A19))
(comp (ref 1u_MX54)
(value ;)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C14A015))
(comp (ref 1u_MX47)
(value ,)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 61EBA202))
(comp (ref D47)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 61ED0BA2))
(comp (ref D60)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 600C03D8))
(comp (ref 1u_MX7)
(value Z)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60FB8392))
(comp (ref D7)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 60FB8398))
(comp (ref 1u_MX15)
(value C)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60FB83A0))
(comp (ref D15)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 60FB83A6))
(comp (ref D23)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 60FB83B5))
(comp (ref 1u_MX31)
(value 8)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60FB83BC))
(comp (ref D31)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 60FB83C2))
(comp (ref 1u_MX39)
(value N)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60FB83D3))
(comp (ref D39)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 60FB83D9))
(comp (ref D56)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 60FE2482))
(comp (ref 1u_MX56)
(value Up)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60FE2497))
(comp (ref 1u_MX48)
(value Left)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60FE249F))
(comp (ref D48)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 60FE24A5))
(comp (ref 1u_MX8)
(value Fn)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60FE24B0))
(comp (ref D8)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 60FE24B6))
(comp (ref 1u_MX16)
(value LGui)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60FE24BD))
(comp (ref D16)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))
(tstamp 60FE24C3))
(comp (ref 1u_MX24)
(value LSpace)
(footprint juliet:MX)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60FE24CA))
(comp (ref D24)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small_ALT) (description "Diode, small symbol, filled shape"))
(sheetpath (names /) (tstamps /))