forked from ufan/charybdis-pmw3610-breakout
-
Notifications
You must be signed in to change notification settings - Fork 12
/
sensor.kicad_sch
1394 lines (1359 loc) · 49.5 KB
/
sensor.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230121) (generator eeschema)
(uuid 53450cca-0496-4005-a7ef-5b1ae88fa402)
(paper "A4")
(title_block
(company "bastard keyboards")
(comment 4 "Copyright Quentin Lebastard")
)
(lib_symbols
(symbol "Connector_Generic:Conn_01x06" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x06" (at 0 -10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x06_1_1"
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 6.35) (end 1.27 -8.89)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (at 0 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_0_1"
(circle (center 0 0) (radius 1.27)
(stroke (width 1.27) (type default))
(fill (type none))
)
)
)
(symbol "Regulator_Linear:TLV70218_SOT23-5" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -3.81 5.715 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TLV70218_SOT23-5" (at 0 5.715 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (at 0 8.255 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/tlv702.pdf" (at 0 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "300mA LDO Regulator Fixed Positive" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "300mA Low Dropout Voltage Regulator, Fixed Output 1.8V, SOT-23-5" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TLV70218_SOT23-5_0_1"
(rectangle (start -5.08 4.445) (end 5.08 -5.08)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "TLV70218_SOT23-5_1_1"
(pin power_in line (at -7.62 2.54 0) (length 2.54)
(name "IN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 5.08 0 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 7.62 2.54 180) (length 2.54)
(name "OUT" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "mysymbol:PMW3610" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U?" (at -1.27 17.78 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "PMW3610" (at 10.16 -12.7 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "mylib:PMW3610" (at 0 13.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 13.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "optical mouse sensor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "https://www.pixart.com/products-detail/21/PMW3610DM-SUDU" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PMW3610_0_0"
(pin input line (at -12.7 10.16 0) (length 2.54)
(name "+VCSEL" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 12.7 -5.08 180) (length 2.54)
(name "PASS_T" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -2.54 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 12.7 0 180) (length 2.54)
(name "CP" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 12.7 2.54 180) (length 2.54)
(name "CN" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 12.7 5.08 180) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 7.62 180) (length 2.54)
(name "XYLASER" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 12.7 10.16 180) (length 2.54)
(name "-VCSEL" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 7.62 0) (length 2.54)
(name "SDIO" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 2.54)
(name "SCLK" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -12.7 2.54 0) (length 2.54)
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 2.54)
(name "NCS" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 2.54)
(name "VDDIO" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 2.54)
(name "NRESET" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin output line (at -12.7 -7.62 0) (length 2.54)
(name "MOTION" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 12.7 -7.62 180) (length 2.54)
(name "VCP" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "PMW3610_0_1"
(rectangle (start -10.16 12.7) (end 10.16 -10.16)
(stroke (width 0) (type default))
(fill (type background))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 64.008 63.246) (diameter 0) (color 0 0 0 0)
(uuid 10d0e8f3-fddb-4eac-917f-4364013d5539)
)
(junction (at 100.838 60.706) (diameter 0) (color 0 0 0 0)
(uuid 352dc180-8bd9-4be0-b361-da65028f8321)
)
(junction (at 168.148 65.786) (diameter 0) (color 0 0 0 0)
(uuid 4c2296af-32ad-43f5-a2a0-7acff7a8cb73)
)
(junction (at 52.578 51.816) (diameter 0) (color 0 0 0 0)
(uuid 6182facb-9838-4626-8330-5d06c1a16807)
)
(junction (at 171.958 72.136) (diameter 0) (color 0 0 0 0)
(uuid 764e9b26-4057-4449-8217-56505e0f3401)
)
(junction (at 177.038 49.276) (diameter 0) (color 0 0 0 0)
(uuid 7aa052d0-9b16-4032-98c4-1554e6486510)
)
(junction (at 56.388 51.816) (diameter 0) (color 0 0 0 0)
(uuid 9ba4c7ff-e95d-44f3-9130-7648a30c506e)
)
(junction (at 180.848 55.626) (diameter 0) (color 0 0 0 0)
(uuid b30de638-2fd9-4098-99da-1162e6d2e91d)
)
(junction (at 104.648 60.706) (diameter 0) (color 0 0 0 0)
(uuid b4c08003-7d1e-480f-b89a-36b9dac27931)
)
(junction (at 160.528 40.386) (diameter 0) (color 0 0 0 0)
(uuid bfd87b05-4ebc-4172-9869-55843457474c)
)
(junction (at 75.438 51.816) (diameter 0) (color 0 0 0 0)
(uuid e60135aa-f13b-4d7f-a02d-9f5e9a476e7c)
)
(wire (pts (xy 156.718 58.166) (xy 156.718 59.436))
(stroke (width 0) (type default))
(uuid 005f7bba-a8a9-4e07-ad6d-de2e5146ff30)
)
(wire (pts (xy 150.368 63.246) (xy 168.148 63.246))
(stroke (width 0) (type default))
(uuid 01a1e18e-1544-4b7c-930a-f0329542b117)
)
(wire (pts (xy 150.368 65.786) (xy 168.148 65.786))
(stroke (width 0) (type default))
(uuid 028ac1b4-e1ed-461b-997d-aadb6b1ef972)
)
(wire (pts (xy 177.038 55.626) (xy 180.848 55.626))
(stroke (width 0) (type default))
(uuid 06279e58-47a9-4b33-bb57-83d7a618b3cc)
)
(wire (pts (xy 209.55 63.5) (xy 205.74 63.5))
(stroke (width 0) (type default))
(uuid 08f81d2f-dd1b-4b09-991a-a8ece5b7a441)
)
(wire (pts (xy 177.038 46.736) (xy 177.038 49.276))
(stroke (width 0) (type default))
(uuid 0a152b35-cee2-4ae5-98f7-8023305fb425)
)
(wire (pts (xy 168.148 65.786) (xy 168.148 67.056))
(stroke (width 0) (type default))
(uuid 0a607643-7cbe-40aa-8963-65165d337d58)
)
(wire (pts (xy 106.426 75.438) (xy 100.838 75.438))
(stroke (width 0) (type default))
(uuid 0b647b86-005e-4f63-b51b-07b3ea357ac3)
)
(wire (pts (xy 168.148 65.786) (xy 175.768 65.786))
(stroke (width 0) (type default))
(uuid 0c3504f3-b1ac-4d16-89e8-22bd078339b8)
)
(wire (pts (xy 150.368 53.086) (xy 170.688 53.086))
(stroke (width 0) (type default))
(uuid 0d86b945-64e9-4651-9ea5-c62eab42eae7)
)
(polyline (pts (xy 20.828 13.716) (xy 20.828 79.756))
(stroke (width 0) (type default))
(uuid 0da1fa1b-42c1-4d2b-a998-dadd3810d15b)
)
(wire (pts (xy 168.148 72.136) (xy 171.958 72.136))
(stroke (width 0) (type default))
(uuid 11e5ad7c-b3cd-4d0a-b629-21b4d9115b6f)
)
(wire (pts (xy 180.848 55.626) (xy 184.658 55.626))
(stroke (width 0) (type default))
(uuid 1809bff9-7d40-4a06-bcd7-279ae832f60e)
)
(wire (pts (xy 170.688 53.086) (xy 170.688 49.276))
(stroke (width 0) (type default))
(uuid 1e19bf05-b5da-4f98-a090-ff9ce77e27ae)
)
(wire (pts (xy 100.838 60.706) (xy 100.838 75.438))
(stroke (width 0) (type default))
(uuid 2244cd89-7196-4a98-b77f-98e577dbd538)
)
(wire (pts (xy 75.438 63.246) (xy 64.008 63.246))
(stroke (width 0) (type default))
(uuid 28524fc6-37a9-43e6-ad36-677957a0532a)
)
(wire (pts (xy 122.428 48.006) (xy 124.968 48.006))
(stroke (width 0) (type default))
(uuid 2d804580-45d8-4d5b-af99-e9291a298cf1)
)
(wire (pts (xy 52.578 51.816) (xy 56.388 51.816))
(stroke (width 0) (type default))
(uuid 2e074f39-f341-4958-bef7-3b1a944c481f)
)
(wire (pts (xy 175.768 65.786) (xy 175.768 67.056))
(stroke (width 0) (type default))
(uuid 2e0dabf9-9d03-4ae2-a692-3c4816b0e21f)
)
(wire (pts (xy 171.958 72.136) (xy 175.768 72.136))
(stroke (width 0) (type default))
(uuid 3a0a9998-2cda-4da2-9cf5-e90d754bd38f)
)
(wire (pts (xy 64.008 61.976) (xy 64.008 63.246))
(stroke (width 0) (type default))
(uuid 3b85451a-6e12-45fc-96a1-77360bc18215)
)
(wire (pts (xy 109.982 63.246) (xy 124.968 63.246))
(stroke (width 0) (type default))
(uuid 44e3e545-67b4-4f0f-bef3-d33b192ed48d)
)
(wire (pts (xy 52.578 56.896) (xy 52.578 63.246))
(stroke (width 0) (type default))
(uuid 4ee0ea3c-39fa-4305-9302-2ee36fb0816a)
)
(polyline (pts (xy 22.098 13.716) (xy 281.178 13.716))
(stroke (width 0) (type default))
(uuid 5a10a771-39a7-44fa-a5c7-5eb4da2ba051)
)
(wire (pts (xy 150.368 48.006) (xy 152.908 48.006))
(stroke (width 0) (type default))
(uuid 5b6f374d-8259-4c2b-b68d-008e47d1c5ca)
)
(wire (pts (xy 56.388 54.356) (xy 56.388 51.816))
(stroke (width 0) (type default))
(uuid 6a7769c3-c80d-4f67-890e-9d198d478ddd)
)
(wire (pts (xy 160.528 40.386) (xy 122.428 40.386))
(stroke (width 0) (type default))
(uuid 6ab74b71-198a-4d67-b9ed-53d2613a5b5e)
)
(wire (pts (xy 114.046 68.58) (xy 109.982 68.58))
(stroke (width 0) (type default))
(uuid 6feb52a3-94e6-47ab-b036-fbd4f58bff86)
)
(wire (pts (xy 156.718 59.436) (xy 160.528 59.436))
(stroke (width 0) (type default))
(uuid 6ffa4a0b-131d-4bfe-aa83-11979c841713)
)
(wire (pts (xy 52.578 63.246) (xy 64.008 63.246))
(stroke (width 0) (type default))
(uuid 731de235-0a1b-4129-aca9-586f376a2413)
)
(wire (pts (xy 100.838 58.166) (xy 100.838 60.706))
(stroke (width 0) (type default))
(uuid 78516991-6fde-4cb5-a03e-6a16e2b8674c)
)
(wire (pts (xy 71.628 51.816) (xy 75.438 51.816))
(stroke (width 0) (type default))
(uuid 7bb94872-8dbb-49c9-ba04-f5628db9fbfd)
)
(wire (pts (xy 156.718 55.626) (xy 156.718 54.356))
(stroke (width 0) (type default))
(uuid 7d7c0909-b3f4-402e-a872-2a12bf0901e1)
)
(wire (pts (xy 150.368 50.546) (xy 152.908 50.546))
(stroke (width 0) (type default))
(uuid 81918f47-d111-4fbd-b94f-dab2f828be4c)
)
(polyline (pts (xy 281.178 13.716) (xy 281.178 79.756))
(stroke (width 0) (type default))
(uuid 933bdaf9-bdfa-49e6-9976-af82252c335b)
)
(wire (pts (xy 150.368 60.706) (xy 154.178 60.706))
(stroke (width 0) (type default))
(uuid b7ec94eb-e377-4843-a9d4-6c4661f41afb)
)
(wire (pts (xy 177.038 49.276) (xy 184.658 49.276))
(stroke (width 0) (type default))
(uuid b7f80015-e90a-4fbe-b601-45518e1720d7)
)
(wire (pts (xy 64.008 63.246) (xy 64.008 68.326))
(stroke (width 0) (type default))
(uuid b80307a9-b810-4fc6-81ab-e2a116bf8242)
)
(wire (pts (xy 168.148 40.386) (xy 160.528 40.386))
(stroke (width 0) (type default))
(uuid b8413942-d6c5-419c-abde-ad0808ce4040)
)
(wire (pts (xy 104.648 60.706) (xy 124.968 60.706))
(stroke (width 0) (type default))
(uuid b8af3bc1-3a02-4fd1-af9a-dcb440758d52)
)
(wire (pts (xy 156.718 54.356) (xy 160.528 54.356))
(stroke (width 0) (type default))
(uuid ba546f3f-9f91-45b7-b7e2-ee37445d0461)
)
(wire (pts (xy 177.038 49.276) (xy 177.038 50.546))
(stroke (width 0) (type default))
(uuid bd70cb30-fb80-4819-8695-036c532484ae)
)
(wire (pts (xy 109.982 68.58) (xy 109.982 63.246))
(stroke (width 0) (type default))
(uuid c3c11dfc-23c9-4c73-ab98-5972c49d4c48)
)
(polyline (pts (xy 281.178 79.756) (xy 20.828 79.756))
(stroke (width 0) (type default))
(uuid c719e44a-a7cf-4402-b739-a46a404f89a2)
)
(wire (pts (xy 122.428 40.386) (xy 122.428 48.006))
(stroke (width 0) (type default))
(uuid cb848295-591b-4fc5-a51a-bce8a59b5c70)
)
(wire (pts (xy 150.368 58.166) (xy 156.718 58.166))
(stroke (width 0) (type default))
(uuid cf2ca2b8-c110-4ac7-9be4-383392984644)
)
(wire (pts (xy 170.688 49.276) (xy 177.038 49.276))
(stroke (width 0) (type default))
(uuid d326ebbf-79b6-48d2-a6a7-ad8abb56bf3d)
)
(wire (pts (xy 152.908 48.006) (xy 152.908 50.546))
(stroke (width 0) (type default))
(uuid dc90f27a-0582-4841-9940-0576394bdc04)
)
(wire (pts (xy 154.178 60.706) (xy 154.178 72.136))
(stroke (width 0) (type default))
(uuid e84c1345-f09e-4367-a88c-c0057c80e52f)
)
(wire (pts (xy 75.438 56.896) (xy 75.438 63.246))
(stroke (width 0) (type default))
(uuid e8954351-c94d-4870-9463-71cfee4378c5)
)
(wire (pts (xy 150.368 55.626) (xy 156.718 55.626))
(stroke (width 0) (type default))
(uuid ee217293-ddc6-462b-afed-e924309e0558)
)
(wire (pts (xy 100.838 60.706) (xy 104.648 60.706))
(stroke (width 0) (type default))
(uuid efbb107e-c155-45b9-a022-6056017c473f)
)
(wire (pts (xy 83.058 51.816) (xy 75.438 51.816))
(stroke (width 0) (type default))
(uuid f241e0ee-d3d0-4acb-927b-10754037fbc9)
)
(wire (pts (xy 44.958 51.816) (xy 52.578 51.816))
(stroke (width 0) (type default))
(uuid f37f4fd2-2740-4984-ac7f-f80065bd2757)
)
(wire (pts (xy 168.148 63.246) (xy 168.148 40.386))
(stroke (width 0) (type default))
(uuid f5606098-a4b5-4eeb-9fa5-f9d99a2e7a01)
)
(wire (pts (xy 114.046 68.58) (xy 114.046 75.438))
(stroke (width 0) (type default))
(uuid f67ec8d5-4fdb-4d3c-8eba-db9fddd171dd)
)
(wire (pts (xy 184.658 49.276) (xy 184.658 50.546))
(stroke (width 0) (type default))
(uuid ffa3077b-4b8f-4457-b85f-2611ac6fe647)
)
(text "This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License."
(at 282.575 164.465 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 06612ebf-2b9e-4f35-bf50-a0e34017f031)
)
(text "sensor" (at 141.478 35.306 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0a21e7d0-6c69-4634-b2b6-f0d0223d8049)
)
(text "PMW3610" (at 24.638 20.066 0)
(effects (font (size 2 2) (thickness 0.4) bold) (justify left bottom))
(uuid 9a2c90c4-d108-490c-a4ef-f90839b42fec)
)
(text "power regulating" (at 69.088 35.306 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid afe0cfde-94cc-4693-91a4-31be17812179)
)
(text "mounting holes" (at 243.84 39.37 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c876f26c-541d-4944-82c5-b4c5397e2c3c)
)
(text "connector" (at 212.598 39.116 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid fce99f12-458b-4b11-8764-608b1da370db)
)
(global_label "SCLK_2" (shape input) (at 124.968 53.086 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0ccdb2ff-af2a-433c-990e-e25fac040a27)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 115.6001 53.0066 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VCC" (shape input) (at 209.55 50.8 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1eeb0606-5706-4f15-ad72-431a5cf75e3b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 203.5083 50.8794 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "+1V9" (shape input) (at 83.058 51.816 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 22b0c7f9-c0ec-4168-8739-32e2106e4f72)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 82.9786 44.3229 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SDIO_2" (shape input) (at 209.55 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3d4658a3-bf31-43aa-afb4-c3103500cd86)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 200.545 55.8006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SDIO_2" (shape input) (at 124.968 50.546 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 439e57fb-3fda-43db-b0fd-ac5b4eacc4c0)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 115.963 50.4666 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "MOTION_2" (shape input) (at 209.55 60.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 57c755df-1357-44b8-a9f4-6372da9d0598)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 197.9445 60.8806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VCC" (shape input) (at 100.838 58.166 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a4a8cafe-8ceb-47fb-895b-66d60129db29)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 100.7586 51.9338 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "MOTION_2" (shape input) (at 124.968 65.786 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ae4b48d1-169e-45bb-b19f-58bcb008b5b3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 113.3625 65.7066 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VCC" (shape input) (at 44.958 51.816 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid aed52a1c-d78d-4328-9a5b-0dae9cca9894)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 44.8786 45.5838 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SCLK_2" (shape input) (at 209.55 58.42 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid bb275550-882a-425f-ade7-cf4837ce6c1c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 200.1821 58.3406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "NCS_2" (shape input) (at 124.968 58.166 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c4d5ae6d-ad32-41a7-bb77-33891f4910d2)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 116.5678 58.0866 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "NCS_2" (shape input) (at 209.55 53.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c6fb5e98-25ac-44c0-970a-5ce0436c0638)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 201.1498 53.2606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "+1V9" (shape input) (at 177.038 46.736 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e95bc7e1-afa8-4e79-944d-b78ff54851e4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.9586 39.2429 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(symbol (lib_id "Device:C_Small") (at 104.648 63.246 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 082217f1-4379-4503-b728-55106d6bf1c7)
(property "Reference" "C7" (at 106.9848 62.0776 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (at 106.9848 64.389 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 104.648 63.246 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.648 63.246 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C19666" (at 104.648 63.246 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c8fcd968-155f-44aa-a800-8cf269c9dcc4))
(pin "2" (uuid a0640d39-d3f5-4c67-8446-2d0c8eeedef9))
(instances
(project "sensor"
(path "/53450cca-0496-4005-a7ef-5b1ae88fa402"
(reference "C7") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 229.87 60.96 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0e48f17d-cf7a-402a-9d0d-4d2923c4fec1)
(property "Reference" "H2" (at 232.41 59.055 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (at 232.41 62.865 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_3.2mm_M3_ISO7380_Pad" (at 229.87 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 229.87 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "sensor"
(path "/53450cca-0496-4005-a7ef-5b1ae88fa402"
(reference "H2") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 104.648 65.786 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0fe9e525-e3a8-46cc-800f-899dfab6f8e4)
(property "Reference" "#PWR0103" (at 104.648 72.136 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 104.775 70.1802 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 104.648 65.786 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 104.648 65.786 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b5e2b85f-37c3-47bf-a6ce-5070daaefef1))
(instances
(project "sensor"
(path "/53450cca-0496-4005-a7ef-5b1ae88fa402"
(reference "#PWR0103") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 205.74 63.5 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1b2a5054-5170-4922-9e69-844182ba2a44)
(property "Reference" "#PWR01" (at 205.74 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 205.867 67.8942 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 205.74 63.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 205.74 63.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 27421b59-d5fb-44b9-8643-67c10c37f5ef))
(instances
(project "sensor"
(path "/53450cca-0496-4005-a7ef-5b1ae88fa402"
(reference "#PWR01") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 180.848 55.626 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 27f37be1-f41b-4f91-9608-f709ea51242b)
(property "Reference" "#PWR0101" (at 180.848 61.976 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 180.848 59.436 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 180.848 55.626 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 180.848 55.626 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0aa4d9f2-137f-407a-ab80-92e4471b52a7))
(instances
(project "sensor"
(path "/53450cca-0496-4005-a7ef-5b1ae88fa402"
(reference "#PWR0101") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 75.438 54.356 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2d596433-9303-455a-b481-8baffdc68f31)
(property "Reference" "C5" (at 77.7748 53.1876 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1u" (at 77.7748 55.499 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 75.438 54.356 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 75.438 54.356 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C15849" (at 75.438 54.356 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ee16771b-aed3-4080-b343-6e728660dc9f))
(pin "2" (uuid a9b08520-ec44-45e0-b0f2-0f856e397d94))
(instances
(project "sensor"
(path "/53450cca-0496-4005-a7ef-5b1ae88fa402"
(reference "C5") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 160.528 56.896 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 463ef955-df04-4e3f-a3b0-531d202b4f5e)
(property "Reference" "C6" (at 162.8648 55.7276 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" " 100n (X7R)" (at 161.798 58.166 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 160.528 56.896 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 160.528 56.896 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C19666" (at 160.528 56.896 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 74d268c9-25be-4958-a09c-af7914daec91))
(pin "2" (uuid 89e7c424-2927-41ed-9462-887c20f01298))
(instances
(project "sensor"
(path "/53450cca-0496-4005-a7ef-5b1ae88fa402"
(reference "C6") (unit 1)
)
)
)
)
(symbol (lib_id "mysymbol:PMW3610") (at 137.668 58.166 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 5d8ede79-525a-4699-a26f-2f9fda21b037)
(property "Reference" "U2" (at 136.398 44.196 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "PMW3610" (at 142.748 70.866 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "mylib:PMW3610" (at 137.668 44.196 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 137.668 44.196 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f09b019e-77fc-4bdf-929e-199e22d4cb41))
(pin "10" (uuid e2b3c15f-d02f-4b2f-9280-cfb1bf389e80))
(pin "11" (uuid e956ff4d-e455-4edd-96aa-f86004139587))
(pin "12" (uuid 471eb4c1-1fb6-4731-b769-cc81195874cc))
(pin "13" (uuid 29da739d-c2ca-49f2-9ee2-ee6636ae1dea))
(pin "14" (uuid a8caaf32-6833-4065-a1df-1481de0313ff))
(pin "15" (uuid 6a625978-850a-45fd-8737-a5233c233ebd))
(pin "16" (uuid ca75c077-f24e-4105-bb17-e07a86a020b8))
(pin "2" (uuid 2902cb0a-8f42-4c95-9ea3-5e179bfad9e8))
(pin "3" (uuid c36f8251-808c-4f72-8a4b-d0fe3ef6d78f))
(pin "4" (uuid 26c54d9e-426a-46a2-8f80-7ac178df51ff))
(pin "5" (uuid 54ecaf46-4bb4-4ad0-885c-b288908b184a))
(pin "6" (uuid 0a2fc805-5bca-434a-b0c2-d0d22d640cec))
(pin "7" (uuid 8e2bb03d-9e85-4adc-9962-f0a6d5e6180c))
(pin "8" (uuid 575a00a1-dec2-49af-ab3a-df281627a881))
(pin "9" (uuid ad88d1c1-a355-41d5-9f44-f354b8bdcfb9))
(instances
(project "sensor"
(path "/53450cca-0496-4005-a7ef-5b1ae88fa402"
(reference "U2") (unit 1)
)