-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsensorGridPcb.net
1235 lines (1235 loc) · 44.3 KB
/
sensorGridPcb.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/martijn/Documenten/school/fontys/P5/OI/sensorGridPcb/sensorGridPcb.sch)
(date "do 13 apr 2017 10:56:43 CEST")
(tool "Eeschema no-vcs-found-02abf18~58~ubuntu14.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Ellie Proximity Sensor Grid-node")
(company FHICT)
(rev 4)
(date 2016-11-18)
(source sensorGridPcb.sch)
(comment (number 1) (value "Design by Martijn Stommels"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /sensors/) (tstamps /5838A1EC/)
(title_block
(title)
(company)
(rev)
(date)
(source sensors.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /Microcontroller/) (tstamps /582DAA6C/)
(title_block
(title "Ellie Proximity Sensor Grid-node")
(company FHICT)
(rev 2)
(date 2016-11-18)
(source Microcontroller.sch)
(comment (number 1) (value "Design by Martijn Stommels"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J1)
(value RJ45_A)
(footprint Connect:RJ45_8)
(libsource (lib conn) (part RJ45))
(sheetpath (names /) (tstamps /))
(tstamp 582D8E7A))
(comp (ref R9)
(value 120)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 582DA5EF))
(comp (ref C1)
(value 100n)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 582F036E))
(comp (ref P1)
(value CONN_SWD)
(footprint Pin_Headers:Pin_Header_Straight_1x05)
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /) (tstamps /))
(tstamp 582F0E71))
(comp (ref P2)
(value CONN_DEBUG)
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 582F1622))
(comp (ref R3)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 582F5B1D))
(comp (ref R17)
(value 4.7k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 582FFFB6))
(comp (ref R18)
(value 4.7k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 583000F3))
(comp (ref D2)
(value STAT)
(footprint LEDs:LED_0805)
(libsource (lib sensorGridPcb-rescue) (part LED-RESCUE-sensorGridPcb))
(sheetpath (names /) (tstamps /))
(tstamp 583034A9))
(comp (ref D3)
(value RX)
(footprint LEDs:LED_0805)
(libsource (lib sensorGridPcb-rescue) (part LED-RESCUE-sensorGridPcb))
(sheetpath (names /) (tstamps /))
(tstamp 58303618))
(comp (ref D4)
(value TX)
(footprint LEDs:LED_0805)
(libsource (lib sensorGridPcb-rescue) (part LED-RESCUE-sensorGridPcb))
(sheetpath (names /) (tstamps /))
(tstamp 58303793))
(comp (ref R14)
(value 470)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 583045AD))
(comp (ref R15)
(value 470)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5830498C))
(comp (ref R16)
(value 470)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58304DD4))
(comp (ref U6)
(value LD1117S33CTR)
(footprint TO_SOT_Packages_SMD:SOT-223)
(libsource (lib regul) (part LD1117S33CTR))
(sheetpath (names /) (tstamps /))
(tstamp 58308563))
(comp (ref C3)
(value 100n)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 583091F8))
(comp (ref C4)
(value 10u)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 583092D0))
(comp (ref R6)
(value NM)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5830F081))
(comp (ref R11)
(value NM)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5830F32F))
(comp (ref R4)
(value 220)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 583282FE))
(comp (ref U1)
(value LTV-207)
(footprint modlib:SOP8)
(libsource (lib opto) (part PC827))
(sheetpath (names /) (tstamps /))
(tstamp 58361EA7))
(comp (ref R1)
(value 470)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58369DAC))
(comp (ref R2)
(value NM)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5836B069))
(comp (ref U4)
(value CPC1017N)
(footprint modlib:CPC1017N)
(libsource (lib analog_switches) (part CPC1017N))
(sheetpath (names /) (tstamps /))
(tstamp 58384251))
(comp (ref R12)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5838AB90))
(comp (ref R10)
(value 220)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 583A1CA7))
(comp (ref U2)
(value LTV-207)
(footprint modlib:SOP8)
(libsource (lib opto) (part PC827))
(sheetpath (names /) (tstamps /))
(tstamp 583A1CAD))
(comp (ref R5)
(value 470)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 583A1CC3))
(comp (ref R7)
(value NM)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 583A1CC9))
(comp (ref U5)
(value CRE1S1205SC)
(footprint CRE1S:CRE1S)
(libsource (lib CRE1) (part CRE1))
(sheetpath (names /) (tstamps /))
(tstamp 583A84E0))
(comp (ref C2)
(value 100n)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 583B21F1))
(comp (ref D1)
(value TERM)
(footprint LEDs:LED_0805)
(libsource (lib sensorGridPcb-rescue) (part LED-RESCUE-sensorGridPcb))
(sheetpath (names /) (tstamps /))
(tstamp 583B589B))
(comp (ref R13)
(value 470)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 583B5A0C))
(comp (ref J2)
(value RJ45_B)
(footprint Connect:RJ45_8)
(libsource (lib conn) (part RJ45))
(sheetpath (names /) (tstamps /))
(tstamp 5840BC80))
(comp (ref R8)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5840BC95))
(comp (ref TP5)
(value TP_UART1_DE)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5898B7A2))
(comp (ref TP8)
(value TP_3.3v)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5898CBF9))
(comp (ref TP1)
(value TP_ADDRESS_IN_A)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5898E9C5))
(comp (ref TP2)
(value TP_ADDRESS_OUT_A)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5898FA04))
(comp (ref TP4)
(value TP_ADDRESS_IN_B)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 589904DC))
(comp (ref TP6)
(value TP_ADDRESS_OUT_B)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 589909AD))
(comp (ref SW1)
(value SW_RESET)
(footprint Buttons_Switches_ThroughHole:SW_PUSH_SMALL)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 589932EE))
(comp (ref SW2)
(value SW_USER)
(footprint Buttons_Switches_ThroughHole:SW_PUSH_SMALL)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 58993CFA))
(comp (ref TP3)
(value TP_ADDRESS_A)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 58999462))
(comp (ref TP7)
(value TP_ADDRESS_B)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 58999A7B))
(comp (ref J4)
(value CONN_A)
(footprint Socket_Strips:Socket_Strip_Straight_1x05_Pitch2.54mm)
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /) (tstamps /))
(tstamp 589B299F))
(comp (ref J5)
(value CONN_B)
(footprint Socket_Strips:Socket_Strip_Straight_1x05_Pitch2.54mm)
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /) (tstamps /))
(tstamp 589CA057))
(comp (ref R32)
(value 220)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58E82362))
(comp (ref C20)
(value NM)
(footprint Capacitors_SMD:CP_Elec_5x5.7)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 58E84703))
(comp (ref C21)
(value 100n)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58E97D11))
(comp (ref TP9)
(value TP_UART1_RE)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 58EA69C8))
(comp (ref J3)
(value CONN_UART1)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 58EABC98))
(comp (ref TP10)
(value TP_VSS)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 58EAB789))
(comp (ref U3)
(value MAX3075E)
(footprint Housings_DIP:DIP-8_W7.62mm_Socket)
(libsource (lib interface) (part MAX3075E))
(sheetpath (names /) (tstamps /))
(tstamp 58EBC1D0))
(comp (ref C14)
(value 100n)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838AE8E))
(comp (ref C15)
(value 4.7u)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838AE95))
(comp (ref R20)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838AEA0))
(comp (ref R21)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838AEA7))
(comp (ref U8)
(value VL53L0X_A)
(footprint VL53L0X:VL53L0X)
(libsource (lib VL53L0X) (part VL53L0X))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838AEB4))
(comp (ref C18)
(value 100n)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838B6E0))
(comp (ref C19)
(value 4.7u)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838B6E6))
(comp (ref R24)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838B6F0))
(comp (ref R25)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838B6F6))
(comp (ref U10)
(value VL53L0X_C)
(footprint VL53L0X:VL53L0X)
(libsource (lib VL53L0X) (part VL53L0X))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838B702))
(comp (ref C16)
(value 100n)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838C950))
(comp (ref C17)
(value 4.7u)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838C956))
(comp (ref R22)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838C960))
(comp (ref R23)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838C966))
(comp (ref U9)
(value VL53L0X_B)
(footprint VL53L0X:VL53L0X)
(libsource (lib VL53L0X) (part VL53L0X))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 5838C972))
(comp (ref J6)
(value CONN_SAT_A)
(footprint Pin_Headers:Pin_Header_Straight_2x05_Pitch2.54mm)
(libsource (lib conn) (part CONN_02X05))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 58E794E0))
(comp (ref J7)
(value CONN_SAT_B)
(footprint Pin_Headers:Pin_Header_Straight_2x05_Pitch2.54mm)
(libsource (lib conn) (part CONN_02X05))
(sheetpath (names /sensors/) (tstamps /5838A1EC/))
(tstamp 58E807B9))
(comp (ref U7)
(value STM32F100C8Tx)
(footprint Housings_QFP:LQFP-48_7x7mm_Pitch0.5mm)
(libsource (lib stm32) (part STM32F100C8Tx))
(sheetpath (names /Microcontroller/) (tstamps /582DAA6C/))
(tstamp 582DAACC))
(comp (ref C10)
(value 100n)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Microcontroller/) (tstamps /582DAA6C/))
(tstamp 582DAD06))
(comp (ref C13)
(value 100n)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Microcontroller/) (tstamps /582DAA6C/))
(tstamp 582DADA8))
(comp (ref C12)
(value 100n)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Microcontroller/) (tstamps /582DAA6C/))
(tstamp 582DAD74))
(comp (ref C9)
(value 1u)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Microcontroller/) (tstamps /582DAA6C/))
(tstamp 582DB78F))
(comp (ref C5)
(value 1u)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Microcontroller/) (tstamps /582DAA6C/))
(tstamp 582DBA7B))
(comp (ref Y1)
(value CRYSTAL_8MHz)
(footprint Crystals:Crystal_HC49-U_Vertical)
(libsource (lib sensorGridPcb-cache) (part CRYSTAL_Small))
(sheetpath (names /Microcontroller/) (tstamps /582DAA6C/))
(tstamp 582DBD40))
(comp (ref R19)
(value 220)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Microcontroller/) (tstamps /582DAA6C/))
(tstamp 582DBEA4))
(comp (ref C7)
(value 18p)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Microcontroller/) (tstamps /582DAA6C/))
(tstamp 582DC003))
(comp (ref C8)
(value 18p)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Microcontroller/) (tstamps /582DAA6C/))
(tstamp 582DC101))
(comp (ref C6)
(value 100n)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Microcontroller/) (tstamps /582DAA6C/))
(tstamp 582EBEC0))
(comp (ref C11)
(value 100n)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Microcontroller/) (tstamps /582DAA6C/))
(tstamp 582DAD3A)))
(libparts
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(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 conn) (part CONN_01X03)
(description "Connector, single row, 01x03, pin header")
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib conn) (part CONN_01X05)
(description "Connector, single row, 01x05, pin header")
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X05))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))))
(libpart (lib conn) (part CONN_02X05)
(description "Connector, double row, 02x05, pin header")
(footprints
(fp Pin_Header_Straight_2X*)
(fp Pin_Header_Angled_2X*)
(fp Socket_Strip_Straight_2X*)
(fp Socket_Strip_Angled_2X*)
(fp IDC_Header_Straight_*))
(fields
(field (name Reference) J)
(field (name Value) CONN_02X05))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))))
(libpart (lib device) (part CP1)
(description "Polarised capacitor")
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP1))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib analog_switches) (part CPC1017N)
(description "opto mos")
(docs opto/cpc1017n.pdf)
(fields
(field (name Reference) U)
(field (name Value) CPC1017N))
(pins
(pin (num 1) (name ANOD) (type input))
(pin (num 2) (name CATH) (type input))
(pin (num 3) (name INOUT2) (type passive))
(pin (num 4) (name INOUT1) (type passive))))
(libpart (lib CRE1) (part CRE1)
(fields
(field (name Reference) U)
(field (name Value) CRE1))
(pins
(pin (num 1) (name Vin-) (type power_in))
(pin (num 2) (name Vin+) (type power_in))
(pin (num 3) (name Vout-) (type power_out))
(pin (num 4) (name Vout+) (type power_out))))
(libpart (lib sensorGridPcb-cache) (part CRYSTAL_Small)
(footprints
(fp Crystal_))
(fields
(field (name Reference) Y)
(field (name Value) CRYSTAL_Small))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part C_Small)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib regul) (part LD1117S33TR)
(aliases
(alias LD1117S33CTR)
(alias LD1117S12TR)
(alias LD1117S12CTR)
(alias LD1117S18TR)
(alias LD1117S18CTR)
(alias LD1117S25TR)
(alias LD1117S25CTR)
(alias LD1117S50TR)
(alias LD1117S50CTR))
(description "800mA Fixed Low Drop Positive Voltage Regulator, Fixed Output 3.3V, SOT223")
(docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000544.pdf)
(footprints
(fp SOT223))
(fields
(field (name Reference) U)
(field (name Value) LD1117S33TR)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-223))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VO) (type power_out))
(pin (num 3) (name VI) (type power_in))))
(libpart (lib sensorGridPcb-rescue) (part LED-RESCUE-sensorGridPcb)
(footprints
(fp LED-*)
(fp LED_*))
(fields
(field (name Reference) D)
(field (name Value) LED-RESCUE-sensorGridPcb))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib opto) (part PC827)
(description "DC Dual Optocoupler, Vce 35V, CTR 50-300%, DIP8")
(docs http://www.soselectronic.cz/a_info/resource/d/pc817.pdf)
(footprints
(fp DIP*W7.62mm*))
(fields
(field (name Reference) U)
(field (name Value) PC827)
(field (name Footprint) Housings_DIP:DIP-8_W7.62mm))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))
(pin (num 7) (name ~) (type passive))
(pin (num 8) (name ~) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(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 conn) (part RJ45)
(description "RJ45 connector with shield")
(fields
(field (name Reference) J)
(field (name Value) RJ45))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))
(pin (num 7) (name ~) (type passive))
(pin (num 8) (name ~) (type passive))
(pin (num 9) (name SHIELD) (type passive))))
(libpart (lib interface) (part SP3481CN)
(aliases
(alias MAX3072E)
(alias MAX3075E)
(alias MAX3078E)
(alias SP3481EN)
(alias SP3485CN)
(alias SP3485EN))
(description "3.3V Low Power Half-Duplex RS-485 Transceiver 10Mbps, SO8")
(docs http://www.icbase.com/pdf/SPX/SPX00480106.pdf)
(footprints
(fp SOIC*3.9x4.9mm*Pitch1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) SP3481CN)
(field (name Footprint) Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm))
(pins
(pin (num 1) (name RO) (type output))
(pin (num 2) (name ~RE~) (type input))
(pin (num 3) (name DE) (type input))
(pin (num 4) (name DI) (type input))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name A) (type BiDi))
(pin (num 7) (name B) (type BiDi))
(pin (num 8) (name VCC) (type power_in))))
(libpart (lib stm32) (part STM32F100C8Tx)
(aliases
(alias STM32F100CBTx))
(description "Core: ARM Cortex-M3 Package: LQFP48 Flash: 64KB Ram: 8KB Frequency: 24MHz Voltage: 2..3.6V IO-pins: 37")
(docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00251732.pdf)
(fields
(field (name Reference) U)
(field (name Value) STM32F100C8Tx)
(field (name Footprint) Housings_QFP:LQFP-48_7x7mm_Pitch0.5mm))
(pins
(pin (num 1) (name VBAT) (type power_in))
(pin (num 2) (name PC13/RTC_OUT/RTC_TAMPER) (type BiDi))
(pin (num 3) (name PC14/RCC_OSC32_IN) (type BiDi))
(pin (num 4) (name PC15/ADC1_EXTI15/RCC_OSC32_OUT) (type BiDi))
(pin (num 5) (name PD0/RCC_OSC_IN) (type input))
(pin (num 6) (name PD1/RCC_OSC_OUT) (type input))
(pin (num 7) (name NRST) (type input))
(pin (num 8) (name VSSA) (type power_in))
(pin (num 9) (name VDDA) (type power_in))
(pin (num 10) (name ADC1_IN0/SYS_WKUP/TIM2_CH1/TIM2_ETR/USART2_CTS/PA0) (type BiDi))
(pin (num 11) (name ADC1_IN1/TIM2_CH2/USART2_RTS/PA1) (type BiDi))
(pin (num 12) (name ADC1_IN2/TIM15_CH1/TIM2_CH3/USART2_TX/PA2) (type BiDi))
(pin (num 13) (name ADC1_IN3/TIM15_CH2/TIM2_CH4/USART2_RX/PA3) (type BiDi))
(pin (num 14) (name ADC1_IN4/DAC_OUT1/SPI1_NSS/USART2_CK/PA4) (type BiDi))
(pin (num 15) (name ADC1_IN5/DAC_OUT2/SPI1_SCK/PA5) (type BiDi))
(pin (num 16) (name ADC1_IN6/SPI1_MISO/TIM16_CH1/TIM1_BKIN/TIM3_CH1/PA6) (type BiDi))
(pin (num 17) (name ADC1_IN7/SPI1_MOSI/TIM17_CH1/TIM1_CH1N/TIM3_CH2/PA7) (type BiDi))
(pin (num 18) (name PB0/ADC1_IN8/TIM1_CH2N/TIM3_CH3) (type BiDi))
(pin (num 19) (name PB1/ADC1_IN9/TIM1_CH3N/TIM3_CH4) (type BiDi))
(pin (num 20) (name PB2/BOOT1) (type BiDi))
(pin (num 21) (name PB10/CEC/I2C2_SCL/TIM2_CH3/USART3_TX) (type BiDi))
(pin (num 22) (name PB11/ADC1_EXTI11/I2C2_SDA/TIM2_CH4/USART3_RX) (type BiDi))
(pin (num 23) (name VSS) (type power_in))
(pin (num 24) (name VDD) (type power_in))
(pin (num 25) (name PB12/I2C2_SMBA/SPI2_NSS/TIM1_BKIN/USART3_CK) (type BiDi))
(pin (num 26) (name PB13/SPI2_SCK/TIM1_CH1N/USART3_CTS) (type BiDi))
(pin (num 27) (name PB14/SPI2_MISO/TIM15_CH1/TIM1_CH2N/USART3_RTS) (type BiDi))
(pin (num 28) (name PB15/ADC1_EXTI15/SPI2_MOSI/TIM15_CH1N/TIM15_CH2/TIM1_CH3N) (type BiDi))
(pin (num 29) (name RCC_MCO/TIM1_CH1/USART1_CK/PA8) (type BiDi))
(pin (num 30) (name DAC_EXTI9/TIM15_BKIN/TIM1_CH2/USART1_TX/PA9) (type BiDi))
(pin (num 31) (name TIM17_BKIN/TIM1_CH3/USART1_RX/PA10) (type BiDi))
(pin (num 32) (name ADC1_EXTI11/TIM1_CH4/USART1_CTS/PA11) (type BiDi))
(pin (num 33) (name TIM1_ETR/USART1_RTS/PA12) (type BiDi))
(pin (num 34) (name SYS_JTMS-SWDIO/PA13) (type BiDi))
(pin (num 35) (name VSS) (type power_in))
(pin (num 36) (name VDD) (type power_in))
(pin (num 37) (name SYS_JTCK-SWCLK/PA14) (type BiDi))
(pin (num 38) (name ADC1_EXTI15/SPI1_NSS/SYS_JTDI/TIM2_CH1/TIM2_ETR/PA15) (type BiDi))
(pin (num 39) (name PB3/SPI1_SCK/SYS_JTDO-TRACESWO/TIM2_CH2) (type BiDi))
(pin (num 40) (name PB4/SPI1_MISO/SYS_NJTRST/TIM3_CH1) (type BiDi))
(pin (num 41) (name PB5/I2C1_SMBA/SPI1_MOSI/TIM16_BKIN/TIM3_CH2) (type BiDi))
(pin (num 42) (name PB6/I2C1_SCL/TIM16_CH1N/TIM4_CH1/USART1_TX) (type BiDi))
(pin (num 43) (name PB7/I2C1_SDA/TIM17_CH1N/TIM4_CH2/USART1_RX) (type BiDi))
(pin (num 44) (name BOOT0) (type input))
(pin (num 45) (name PB8/CEC/I2C1_SCL/TIM16_CH1/TIM4_CH3) (type BiDi))
(pin (num 46) (name PB9/DAC_EXTI9/I2C1_SDA/TIM17_CH1/TIM4_CH4) (type BiDi))
(pin (num 47) (name VSS) (type power_in))
(pin (num 48) (name VDD) (type power_in))))
(libpart (lib switches) (part SW_Push)
(description "Push button switch, generic, two pins")
(fields
(field (name Reference) SW)
(field (name Value) SW_Push))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part TEST)
(description "Testpoint, connection for test equipment")
(fields
(field (name Reference) TP)
(field (name Value) TEST))
(pins
(pin (num 1) (name ~) (type passive))))
(libpart (lib VL53L0X) (part VL53L0X)
(fields
(field (name Reference) U)
(field (name Value) VL53L0X))
(pins
(pin (num 1) (name AVDDVCSEL) (type input))
(pin (num 2) (name AVSSVCSEL) (type input))
(pin (num 3) (name GND) (type input))
(pin (num 4) (name GND) (type input))
(pin (num 5) (name XSHUT) (type input))
(pin (num 6) (name GND) (type input))
(pin (num 7) (name GPIO1) (type input))
(pin (num 8) (name DNC) (type input))
(pin (num 9) (name SDA) (type input))
(pin (num 10) (name SCL) (type input))
(pin (num 11) (name AVDD) (type input))
(pin (num 12) (name GND) (type input)))))
(libraries
(library (logical conn)
(uri /usr/share/kicad/library/conn.lib))
(library (logical sensorGridPcb-rescue)
(uri /home/martijn/Documenten/school/fontys/P5/OI/sensorGridPcb/sensorGridPcb-rescue.lib))
(library (logical CRE1)
(uri /home/martijn/Documenten/school/fontys/P5/OI/sensorGridPcb/simlib/CRE1.lib))
(library (logical device)
(uri /usr/share/kicad/library/device.lib))
(library (logical regul)
(uri /usr/share/kicad/library/regul.lib))
(library (logical analog_switches)
(uri /usr/share/kicad/library/analog_switches.lib))
(library (logical interface)
(uri /usr/share/kicad/library/interface.lib))
(library (logical VL53L0X)
(uri /home/martijn/Documenten/school/fontys/P5/OI/sensorGridPcb/simlib/VL53L0X.lib))
(library (logical opto)
(uri /usr/share/kicad/library/opto.lib))
(library (logical stm32)
(uri /usr/share/kicad/library/stm32.lib))
(library (logical sensorGridPcb-cache)
(uri /home/martijn/Documenten/school/fontys/P5/OI/sensorGridPcb/sensorGridPcb-cache.lib))
(library (logical switches)
(uri /usr/share/kicad/library/switches.lib)))
(nets
(net (code 1) (name /Microcontroller/VL53L0X_B_GPIO1)
(node (ref U7) (pin 39))
(node (ref U9) (pin 7))
(node (ref R23) (pin 2)))
(net (code 2) (name /Microcontroller/VL53L0X_B_XSHUT)
(node (ref R22) (pin 2))
(node (ref U9) (pin 5))
(node (ref U7) (pin 40)))
(net (code 3) (name /Microcontroller/VL53L0X_A_GPIO1)
(node (ref J6) (pin 1))
(node (ref U8) (pin 7))
(node (ref R21) (pin 2))
(node (ref U7) (pin 18)))
(net (code 4) (name /Microcontroller/VL53L0X_A_XSHUT)
(node (ref U7) (pin 19))
(node (ref J6) (pin 3))
(node (ref U8) (pin 5))
(node (ref R20) (pin 2)))
(net (code 5) (name GND)
(node (ref J1) (pin 8))
(node (ref J1) (pin 7))
(node (ref J1) (pin 6))
(node (ref J2) (pin 8))
(node (ref J2) (pin 7))
(node (ref J2) (pin 6))
(node (ref U1) (pin 5))
(node (ref U1) (pin 2))
(node (ref U2) (pin 5))
(node (ref C20) (pin 2))
(node (ref U2) (pin 2))
(node (ref J5) (pin 5))
(node (ref J4) (pin 5))
(node (ref C2) (pin 1))
(node (ref U5) (pin 1)))
(net (code 6) (name "Net-(R4-Pad2)")
(node (ref R4) (pin 2))
(node (ref U1) (pin 3)))
(net (code 7) (name /Microcontroller/VL53L0X_C_GPIO1)
(node (ref U7) (pin 41))
(node (ref U10) (pin 7))
(node (ref R25) (pin 2))
(node (ref J7) (pin 1)))
(net (code 8) (name "Net-(R1-Pad2)")
(node (ref U1) (pin 1))
(node (ref R1) (pin 2)))
(net (code 9) (name /Microcontroller/VL53L0X_C_XSHUT)
(node (ref U10) (pin 5))
(node (ref U7) (pin 21))
(node (ref J7) (pin 3))
(node (ref R24) (pin 2)))
(net (code 10) (name /sensors/I2C_CLK)
(node (ref R18) (pin 2))
(node (ref U8) (pin 10))
(node (ref J6) (pin 2))
(node (ref U9) (pin 10))
(node (ref J7) (pin 2))
(node (ref U7) (pin 42))
(node (ref U10) (pin 10)))
(net (code 11) (name /Microcontroller/I2C_SDA)
(node (ref U8) (pin 9))
(node (ref R17) (pin 2))
(node (ref U9) (pin 9))
(node (ref J7) (pin 4))
(node (ref U10) (pin 9))
(node (ref J6) (pin 4))
(node (ref U7) (pin 43)))
(net (code 12) (name "Net-(R12-Pad1)")
(node (ref U4) (pin 1))
(node (ref R12) (pin 1)))
(net (code 13) (name /RS485_TERM_ENABLE)
(node (ref R12) (pin 2))
(node (ref R13) (pin 2))
(node (ref U7) (pin 32)))
(net (code 14) (name VSS)
(node (ref U10) (pin 12))
(node (ref C11) (pin 2))
(node (ref P1) (pin 2))
(node (ref C1) (pin 1))
(node (ref C16) (pin 2))
(node (ref D4) (pin 1))
(node (ref D3) (pin 1))
(node (ref D2) (pin 1))
(node (ref U6) (pin 1))
(node (ref U10) (pin 2))
(node (ref P2) (pin 3))
(node (ref SW2) (pin 2))
(node (ref U10) (pin 3))
(node (ref U10) (pin 4))
(node (ref C3) (pin 2))
(node (ref U10) (pin 6))
(node (ref SW1) (pin 2))
(node (ref TP10) (pin 1))
(node (ref C13) (pin 2))
(node (ref C12) (pin 2))
(node (ref C9) (pin 2))
(node (ref C5) (pin 2))
(node (ref C10) (pin 2))
(node (ref J6) (pin 6))
(node (ref C8) (pin 1))
(node (ref C7) (pin 1))
(node (ref C19) (pin 2))
(node (ref U9) (pin 6))
(node (ref U7) (pin 23))
(node (ref U7) (pin 8))
(node (ref C18) (pin 2))
(node (ref C6) (pin 2))
(node (ref U9) (pin 2))
(node (ref U9) (pin 3))
(node (ref U9) (pin 4))
(node (ref U7) (pin 47))
(node (ref C14) (pin 2))
(node (ref U9) (pin 12))
(node (ref U5) (pin 3))
(node (ref U7) (pin 35))
(node (ref U7) (pin 44))
(node (ref C15) (pin 2))
(node (ref J3) (pin 3))
(node (ref C21) (pin 2))
(node (ref U3) (pin 5))
(node (ref R7) (pin 2))
(node (ref U8) (pin 12))
(node (ref U8) (pin 6))
(node (ref U8) (pin 4))
(node (ref U8) (pin 3))
(node (ref U8) (pin 2))
(node (ref C17) (pin 2))
(node (ref D1) (pin 1))
(node (ref R2) (pin 2))
(node (ref U4) (pin 2))
(node (ref U1) (pin 4))
(node (ref R11) (pin 2))
(node (ref J7) (pin 6))
(node (ref C4) (pin 2))