-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrasle.net
1169 lines (1169 loc) · 43.3 KB
/
rasle.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 /home/thomas/Projects/kicad/rasle/rasle.sch)
(date "fre 12 okt 2018 18:32:36 CEST")
(tool "Eeschema 5.0.0-fee4fd1~66~ubuntu18.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "NerdClub RPI Arcade Sound and Light Extension")
(company NerdClub)
(rev 1)
(date "15 nov 2012")
(source rasle.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref MK1)
(value M2.5)
(footprint MountingHole:MountingHole_2.7mm_M2.5)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5834FB2E))
(comp (ref MK3)
(value M2.5)
(footprint MountingHole:MountingHole_2.7mm_M2.5)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5834FBEF))
(comp (ref MK2)
(value M2.5)
(footprint MountingHole:MountingHole_2.7mm_M2.5)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5834FC19))
(comp (ref MK4)
(value M2.5)
(footprint MountingHole:MountingHole_2.7mm_M2.5)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5834FC4F))
(comp (ref P1)
(value Conn_02x20_Odd_Even)
(footprint Connector_PinSocket_2.54mm:PinSocket_2x20_P2.54mm_Vertical)
(libsource (lib Connector_Generic) (part Conn_02x20_Odd_Even) (description "Generic connector, double row, 02x20, 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 59AD464A))
(comp (ref U1)
(value ATmega328-AU)
(footprint Housings_QFP:TQFP-32_7x7mm_Pitch0.8mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/ATmega328_P%20AVR%20MCU%20with%20picoPower%20Technology%20Data%20Sheet%2040001984A.pdf)
(libsource (lib MCU_Microchip_ATmega) (part ATmega328-AU) (description "20MHz, 32kB Flash, 2kB SRAM, 1kB EEPROM, TQFP-32"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA3BD37))
(comp (ref J1)
(value Power)
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA451F1))
(comp (ref C3)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA48254))
(comp (ref C4)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA482F2))
(comp (ref C1)
(value 10uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarised capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA48395))
(comp (ref C2)
(value 10uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarised capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA4844F))
(comp (ref J2)
(value FAN)
(footprint Connectors_JST_PH:Connectors_JST_B2B-PH-K)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA4DF90))
(comp (ref LED1)
(value PWM)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA4F817))
(comp (ref LED2)
(value PWM)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA4F8A0))
(comp (ref LED3)
(value PWM)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA4F8F8))
(comp (ref J7)
(value BUTTON1)
(footprint Connectors_JST_PH:Connectors_JST_B2B-PH-K)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA4F995))
(comp (ref J9)
(value BUTTON3)
(footprint Connectors_JST_PH:Connectors_JST_B2B-PH-K)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA4F9F3))
(comp (ref J11)
(value BUTTON_PWR)
(footprint Connectors_JST_PH:Connectors_JST_B2B-PH-K)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA4FA8A))
(comp (ref J8)
(value BUTTON2)
(footprint Connectors_JST_PH:Connectors_JST_B2B-PH-K)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA4FB18))
(comp (ref J10)
(value BUTTON4)
(footprint Connectors_JST_PH:Connectors_JST_B2B-PH-K)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA4FBCD))
(comp (ref J4)
(value WS2812)
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA4FEDA))
(comp (ref J12)
(value "External relay")
(footprint Connectors_JST_PH:Connectors_JST_B3B-PH-K)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA56664))
(comp (ref Q1)
(value Q_NMOS_GDS)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet ~)
(fields
(field (name Manufacturer) "Diodes Inc")
(field (name "Manufacturer no") DMN2041L-7)
(field (name "Mouser No") '621-DMN2041L-7))
(libsource (lib Device) (part Q_NMOS_GSD) (description "Transistor N-MOSFETwith substrate diode (general)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA7A187))
(comp (ref Q2)
(value Q_NMOS_GDS)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet ~)
(fields
(field (name Manufacturer) "Diodes Inc")
(field (name "Manufacturer no") DMN2041L-7)
(field (name "Mouser No") '621-DMN2041L-7))
(libsource (lib Device) (part Q_NMOS_GSD) (description "Transistor N-MOSFETwith substrate diode (general)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA7A232))
(comp (ref R1)
(value 0R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BA97985))
(comp (ref R2)
(value 0R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BA97A09))
(comp (ref R3)
(value 0R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BA97AA0))
(comp (ref Q3)
(value Q_NMOS_GDS)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet ~)
(fields
(field (name Manufacturer) "Diodes Inc")
(field (name "Manufacturer no") DMN2041L-7)
(field (name "Mouser No") '621-DMN2041L-7))
(libsource (lib Device) (part Q_NMOS_GSD) (description "Transistor N-MOSFETwith substrate diode (general)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA7A2C8))
(comp (ref R4)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BA9D75B))
(comp (ref R5)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BA9D7F4))
(comp (ref R6)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BA9D884))
(comp (ref R10)
(value R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BABD0CD))
(comp (ref R9)
(value R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BABF089))
(comp (ref Q4)
(value Q_NMOS_GDS)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet ~)
(fields
(field (name Manufacturer) "Diodes Inc")
(field (name "Manufacturer no") DMN2041L-7)
(field (name "Mouser No") '621-DMN2041L-7))
(libsource (lib Device) (part Q_NMOS_GSD) (description "Transistor N-MOSFETwith substrate diode (general)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BAD5889))
(comp (ref R7)
(value 0R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BAD5898))
(comp (ref R8)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BAD58A0))
(comp (ref R11)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BAF2D13))
(comp (ref R13)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BAF2DD0))
(comp (ref R12)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BAF545C))
(comp (ref R14)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BAF5509))
(comp (ref C7)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA900A2))
(comp (ref C8)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BAACC9D))
(comp (ref C6)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BAC112B))
(comp (ref C5)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BA7F479))
(comp (ref C9)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BAD0957))
(comp (ref R15)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BADBFB5))
(comp (ref C12)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BAD1402))
(comp (ref C11)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BAD14F8))
(comp (ref R21)
(value 100k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BADE836))
(comp (ref TH1)
(value 100k)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(datasheet ~)
(libsource (lib Device) (part Thermistor_PTC) (description "temperature dependent resistor, positive temperature coefficient (PTC)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BADE961))
(comp (ref U4)
(value 74AUP1G34)
(footprint TO_SOT_Packages_SMD:SOT-23-5)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib 74xGxx) (part 74AUP1G34) (description "Single Buffef Gate, Low-Voltage CMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5BB09D4F))
(comp (ref Y1)
(value Crystal)
(footprint mysensors_obscurities:XTAL_3.2x1.5mm)
(datasheet ~)
(libsource (lib Device) (part Crystal) (description "Two pin crystal"))
(sheetpath (names /) (tstamps /))
(tstamp 5BAAE3A9))
(comp (ref C14)
(value 22pF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BAAE4E9))
(comp (ref C15)
(value 22pF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BAAE61A))
(comp (ref C10)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BABF6F6))
(comp (ref R18)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BABF5D8))
(comp (ref U2)
(value MAX98357)
(footprint Housings_DFN_QFN:QFN-16-1EP_3x3mm_Pitch0.5mm)
(libsource (lib gamehat2) (part MAX98357) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BB5DA08))
(comp (ref U3)
(value MAX98357)
(footprint Housings_DFN_QFN:QFN-16-1EP_3x3mm_Pitch0.5mm)
(libsource (lib gamehat2) (part MAX98357) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BB72B30))
(comp (ref J14)
(value Conn_01x02_Male)
(footprint Terminal_Blocks:TerminalBlock_Pheonix_MPT-2.54mm_2pol)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BC13CAD))
(comp (ref J15)
(value Conn_01x02_Male)
(footprint Terminal_Blocks:TerminalBlock_Pheonix_MPT-2.54mm_2pol)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BC13E52))
(comp (ref L1)
(value Ferrite_Bead_Small)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5BC372D7))
(comp (ref L3)
(value Ferrite_Bead_Small)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5BC374D3))
(comp (ref L2)
(value Ferrite_Bead_Small)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5BC497C7))
(comp (ref L4)
(value Ferrite_Bead_Small)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5BC49900))
(comp (ref C19)
(value 220nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BC62C4C))
(comp (ref C17)
(value 220nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BC630E1))
(comp (ref C18)
(value 220nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BC911D7))
(comp (ref C16)
(value 220nF)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BC912D6))
(comp (ref J13)
(value "Reset disable")
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BB825E5))
(comp (ref U5)
(value 24AA02-OT)
(footprint TO_SOT_Packages_SMD:SOT-23-5)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/21709J.pdf)
(libsource (lib Memory_EEPROM) (part 24AA02-OT) (description "I2C Serial EEPROM, 2Kb, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5BBB0892))
(comp (ref R16)
(value 4k7)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BB99C17))
(comp (ref R17)
(value 4k7)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BB99EE3))
(comp (ref D1)
(value LED)
(footprint LEDs:LED-0603)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names /) (tstamps /))
(tstamp 5BBE4395))
(comp (ref R19)
(value 220R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BBEBE13)))
(libparts
(libpart (lib 74xGxx) (part 74LVC1G34)
(aliases
(alias 74AUP1G34))
(description "Single Buffef Gate, Low-Voltage CMOS")
(docs http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(footprints
(fp SOT*)
(fp SG-*))
(fields
(field (name Reference) U)
(field (name Value) 74LVC1G34))
(pins
(pin (num 2) (name ~) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name ~) (type output))
(pin (num 5) (name VCC) (type power_in))))
(libpart (lib Connector) (part Conn_01x02_Male)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector) (part Conn_01x03_Male)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x20_Odd_Even)
(description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x20_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))
(pin (num 25) (name Pin_25) (type passive))
(pin (num 26) (name Pin_26) (type passive))
(pin (num 27) (name Pin_27) (type passive))
(pin (num 28) (name Pin_28) (type passive))
(pin (num 29) (name Pin_29) (type passive))
(pin (num 30) (name Pin_30) (type passive))
(pin (num 31) (name Pin_31) (type passive))
(pin (num 32) (name Pin_32) (type passive))
(pin (num 33) (name Pin_33) (type passive))
(pin (num 34) (name Pin_34) (type passive))
(pin (num 35) (name Pin_35) (type passive))
(pin (num 36) (name Pin_36) (type passive))
(pin (num 37) (name Pin_37) (type passive))
(pin (num 38) (name Pin_38) (type passive))
(pin (num 39) (name Pin_39) (type passive))
(pin (num 40) (name Pin_40) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part CP)
(description "Polarised capacitor")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Crystal)
(description "Two pin crystal")
(docs ~)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part Ferrite_Bead_Small)
(description "Ferrite bead, small symbol")
(docs ~)
(footprints
(fp Inductor_*)
(fp L_*)
(fp *Ferrite*))
(fields
(field (name Reference) L)
(field (name Value) Ferrite_Bead_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part LED)
(description "LED generic")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part Q_NMOS_GSD)
(description "Transistor N-MOSFETwith substrate diode (general)")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_NMOS_GSD))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Thermistor_PTC)
(description "temperature dependent resistor, positive temperature coefficient (PTC)")
(docs ~)
(footprints
(fp *PTC*)
(fp *Thermistor*)
(fp PIN?ARRAY*)
(fp bornier*)
(fp *Terminal?Block*))
(fields
(field (name Reference) TH)
(field (name Value) Thermistor_PTC))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib MCU_Microchip_ATmega) (part ATmega48A-AU)
(aliases
(alias ATmega48PA-AU)
(alias ATmega88A-AU)
(alias ATmega88PA-AU)
(alias ATmega168A-AU)
(alias ATmega168PA-AU)
(alias ATmega328-AU)
(alias ATmega328P-AU))
(description "20MHz, 4kB Flash, 512B SRAM, 256B EEPROM, TQFP-32")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/ATmega48A_88A_168A-Data-Sheet-40002007A.pdf)
(footprints
(fp TQFP*7x7mm*P0.8mm*))
(fields
(field (name Reference) U)
(field (name Value) ATmega48A-AU)
(field (name Footprint) Package_QFP:TQFP-32_7x7mm_P0.8mm))
(pins
(pin (num 1) (name PD3) (type BiDi))
(pin (num 2) (name PD4) (type BiDi))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name VCC) (type power_in))
(pin (num 5) (name GND) (type passive))
(pin (num 6) (name VCC) (type passive))
(pin (num 7) (name XTAL1/PB6) (type BiDi))
(pin (num 8) (name XTAL2/PB7) (type BiDi))
(pin (num 9) (name PD5) (type BiDi))
(pin (num 10) (name PD6) (type BiDi))
(pin (num 11) (name PD7) (type BiDi))
(pin (num 12) (name PB0) (type BiDi))
(pin (num 13) (name PB1) (type BiDi))
(pin (num 14) (name PB2) (type BiDi))
(pin (num 15) (name PB3) (type BiDi))
(pin (num 16) (name PB4) (type BiDi))
(pin (num 17) (name PB5) (type BiDi))
(pin (num 18) (name AVCC) (type power_in))
(pin (num 19) (name ADC6) (type input))
(pin (num 20) (name AREF) (type input))
(pin (num 21) (name GND) (type passive))
(pin (num 22) (name ADC7) (type input))
(pin (num 23) (name PC0) (type BiDi))
(pin (num 24) (name PC1) (type BiDi))
(pin (num 25) (name PC2) (type BiDi))
(pin (num 26) (name PC3) (type BiDi))
(pin (num 27) (name PC4) (type BiDi))
(pin (num 28) (name PC5) (type BiDi))
(pin (num 29) (name ~RESET~/PC6) (type BiDi))
(pin (num 30) (name PD0) (type BiDi))
(pin (num 31) (name PD1) (type BiDi))
(pin (num 32) (name PD2) (type BiDi))))
(libpart (lib Mechanical) (part MountingHole)
(description "Mounting Hole without connection")
(docs ~)
(footprints
(fp MountingHole*))
(fields
(field (name Reference) MH)
(field (name Value) MountingHole)))
(libpart (lib Memory_EEPROM) (part 24AA02-OT)
(description "I2C Serial EEPROM, 2Kb, SOT-23")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/21709J.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) 24AA02-OT)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-5))
(pins
(pin (num 1) (name SCL) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name SDA) (type BiDi))
(pin (num 4) (name VCC) (type power_in))
(pin (num 5) (name NC) (type NotConnected))))
(libpart (lib gamehat2) (part MAX98357)
(fields
(field (name Reference) U)
(field (name Value) MAX98357))
(pins
(pin (num 1) (name DIN) (type input))
(pin (num 2) (name GAIN_SLOT) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name SD_MODE) (type input))
(pin (num 5) (name NC) (type NotConnected))
(pin (num 6) (name NC) (type NotConnected))
(pin (num 7) (name VDD) (type power_in))
(pin (num 8) (name VDD) (type power_in))
(pin (num 9) (name OUTP) (type output))
(pin (num 10) (name OUTN) (type output))
(pin (num 11) (name GND) (type power_in))
(pin (num 12) (name NC) (type NotConnected))
(pin (num 13) (name NC) (type NotConnected))
(pin (num 14) (name LRCLK) (type input))
(pin (num 15) (name GND) (type power_in))
(pin (num 16) (name BCLK) (type input))
(pin (num 17) (name ~) (type NotConnected)))))
(libraries
(library (logical 74xGxx)
(uri /usr/share/kicad/library/74xGxx.lib))
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Connector_Generic)
(uri /usr/share/kicad/library/Connector_Generic.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical MCU_Microchip_ATmega)
(uri /usr/share/kicad/library/MCU_Microchip_ATmega.lib))
(library (logical Mechanical)
(uri /usr/share/kicad/library/Mechanical.lib))
(library (logical Memory_EEPROM)
(uri /usr/share/kicad/library/Memory_EEPROM.lib))
(library (logical gamehat2)
(uri /home/thomas/Projects/kicad/rasle/rasle.lib)))
(nets
(net (code 1) (name GND)
(node (ref C5) (pin 2))
(node (ref C9) (pin 2))
(node (ref Q3) (pin 2))
(node (ref Q1) (pin 2))
(node (ref Q2) (pin 2))
(node (ref C19) (pin 2))
(node (ref P1) (pin 14))
(node (ref P1) (pin 9))
(node (ref P1) (pin 6))
(node (ref P1) (pin 39))
(node (ref P1) (pin 34))
(node (ref P1) (pin 30))
(node (ref U5) (pin 5))
(node (ref U5) (pin 2))
(node (ref C17) (pin 2))
(node (ref U3) (pin 3))
(node (ref U3) (pin 15))
(node (ref U2) (pin 3))
(node (ref U3) (pin 11))
(node (ref P1) (pin 25))
(node (ref C18) (pin 2))
(node (ref U1) (pin 5))
(node (ref U1) (pin 3))
(node (ref C16) (pin 2))
(node (ref U1) (pin 21))
(node (ref D1) (pin 2))
(node (ref P1) (pin 20))
(node (ref R21) (pin 2))
(node (ref J10) (pin 2))
(node (ref J1) (pin 2))
(node (ref U2) (pin 11))
(node (ref U2) (pin 15))
(node (ref C14) (pin 1))
(node (ref C15) (pin 1))
(node (ref J8) (pin 2))
(node (ref J11) (pin 2))
(node (ref J9) (pin 2))
(node (ref J7) (pin 2))
(node (ref J12) (pin 3))
(node (ref U4) (pin 3))
(node (ref C10) (pin 2))
(node (ref C12) (pin 2))
(node (ref J4) (pin 3))
(node (ref C11) (pin 2))
(node (ref C3) (pin 2))
(node (ref C7) (pin 2))
(node (ref Q4) (pin 2))
(node (ref C8) (pin 2))
(node (ref C2) (pin 2))
(node (ref R6) (pin 1))
(node (ref C6) (pin 2))
(node (ref R5) (pin 1))
(node (ref R4) (pin 1))
(node (ref R8) (pin 1))
(node (ref C1) (pin 2))
(node (ref C4) (pin 2)))
(net (code 2) (name "Net-(J4-Pad2)")
(node (ref J4) (pin 2))
(node (ref U4) (pin 4)))
(net (code 3) (name +5V)
(node (ref U2) (pin 7))
(node (ref U2) (pin 8))
(node (ref J12) (pin 1))
(node (ref U4) (pin 5))
(node (ref C2) (pin 1))
(node (ref C3) (pin 1))
(node (ref J2) (pin 1))
(node (ref R9) (pin 1))
(node (ref U3) (pin 8))
(node (ref U3) (pin 7))
(node (ref C1) (pin 1))
(node (ref J4) (pin 1))
(node (ref J1) (pin 3))
(node (ref C4) (pin 1))
(node (ref P1) (pin 4))
(node (ref P1) (pin 2))
(node (ref R10) (pin 1)))
(net (code 4) (name "Net-(R21-Pad1)")
(node (ref U1) (pin 22))
(node (ref TH1) (pin 2))
(node (ref R21) (pin 1)))
(net (code 5) (name "Net-(L1-Pad2)")
(node (ref L1) (pin 2))
(node (ref U2) (pin 10)))
(net (code 6) (name "Net-(U2-Pad12)")
(node (ref U2) (pin 12)))
(net (code 7) (name "Net-(U2-Pad13)")
(node (ref U2) (pin 13)))
(net (code 8) (name "Net-(C14-Pad2)")
(node (ref U1) (pin 7))
(node (ref Y1) (pin 1))
(node (ref C14) (pin 2)))
(net (code 9) (name "Net-(C15-Pad2)")
(node (ref Y1) (pin 2))
(node (ref C15) (pin 2))
(node (ref U1) (pin 8)))
(net (code 10) (name /BUTTON4)
(node (ref P1) (pin 29))
(node (ref J10) (pin 1))
(node (ref U1) (pin 26))
(node (ref C8) (pin 1))
(node (ref R14) (pin 2)))
(net (code 11) (name /BTN_PWR)
(node (ref J11) (pin 1))
(node (ref C9) (pin 1))
(node (ref R15) (pin 2))
(node (ref U1) (pin 23)))
(net (code 12) (name /PWM3)
(node (ref R3) (pin 1))
(node (ref U1) (pin 10))
(node (ref R6) (pin 2)))
(net (code 13) (name /PWM1)
(node (ref R1) (pin 1))
(node (ref R4) (pin 2))
(node (ref U1) (pin 9)))
(net (code 14) (name /PWM2)
(node (ref R5) (pin 2))
(node (ref U1) (pin 1))
(node (ref R2) (pin 1)))
(net (code 15) (name "Net-(U2-Pad17)")
(node (ref U2) (pin 17)))
(net (code 16) (name "Net-(J2-Pad2)")
(node (ref Q4) (pin 3))
(node (ref J2) (pin 2)))
(net (code 17) (name /RESET_ATMEGA)
(node (ref J13) (pin 1))
(node (ref R18) (pin 1))
(node (ref C10) (pin 1))
(node (ref U1) (pin 29)))
(net (code 18) (name "Net-(L3-Pad2)")
(node (ref L3) (pin 2))
(node (ref U2) (pin 9)))
(net (code 19) (name "Net-(C18-Pad1)")
(node (ref J14) (pin 1))
(node (ref L3) (pin 1))
(node (ref C18) (pin 1)))
(net (code 20) (name "Net-(C16-Pad1)")
(node (ref C16) (pin 1))
(node (ref L1) (pin 1))
(node (ref J14) (pin 2)))
(net (code 22) (name "Net-(D1-Pad1)")
(node (ref D1) (pin 1))
(node (ref R19) (pin 2)))
(net (code 23) (name "Net-(R19-Pad1)")
(node (ref R19) (pin 1))
(node (ref U1) (pin 2)))
(net (code 24) (name "Net-(U3-Pad6)")
(node (ref U3) (pin 6)))
(net (code 25) (name "Net-(U3-Pad5)")
(node (ref U3) (pin 5)))
(net (code 26) (name "Net-(U2-Pad2)")
(node (ref U2) (pin 2)))
(net (code 27) (name "Net-(U2-Pad5)")
(node (ref U2) (pin 5)))
(net (code 28) (name "Net-(U2-Pad6)")
(node (ref U2) (pin 6)))
(net (code 29) (name /DIN)
(node (ref U2) (pin 1))