-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrs485.kicad_sch
615 lines (602 loc) · 20.7 KB
/
rs485.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
(kicad_sch (version 20230121) (generator eeschema)
(uuid 30f1cdf2-5c69-4923-b8de-1b86290c98f5)
(paper "A4")
(title_block
(title "RS485 interface")
(date "2024-11-02")
(rev "v1")
(company "plan44.ch")
(comment 1 "© 2024 by luz/plan44.ch")
)
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 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" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (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_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(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 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "plan44:ADM3485E" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -1.27 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ADM3485E" (at -1.27 3.81 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Vendor" "mouser" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "ADM3485EARZ" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "SKU" "584-ADM3485EARZ" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Vendor2" "distrelec" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "SKU2" "173-21-876" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ADM3485E_0_1"
(rectangle (start 7.62 10.16) (end -10.16 -13.97)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "ADM3485E_1_1"
(pin output line (at -15.24 0 0) (length 5.08)
(name "RX" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -15.24 -3.81 0) (length 5.08)
(name "/RX_EN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -7.62 0) (length 5.08)
(name "TX_EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -11.43 0) (length 5.08)
(name "TX" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -1.27 -19.05 90) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -7.62 180) (length 5.08)
(name "DATA+" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional inverted (at 12.7 -3.81 180) (length 5.08)
(name "DATA-" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -1.27 15.24 270) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "plan44:TermBlock-3P" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -3.81 3.81 0)
(effects (font (size 1.143 1.143)) (justify left bottom))
)
(property "Value" "TermBlock-3P" (at 0 0 0)
(effects (font (size 1.143 1.143)) (justify left bottom) hide)
)
(property "Footprint" "plan44:STELVIO-3P-508" (at 0.762 3.81 0)
(effects (font (size 0.508 0.508)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "ki_fp_filters" "*STELVIO-3P-508*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TermBlock-3P_1_0"
(polyline
(pts
(xy -2.54 -7.62)
(xy 2.54 -7.62)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.54)
(xy -2.54 -7.62)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -7.62)
(xy 2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy -2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TermBlock-3P_1_1"
(pin passive line (at -7.62 0 0) (length 5.08)
(name "1" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -7.62 -2.54 0) (length 5.08)
(name "2" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -7.62 -5.08 0) (length 5.08)
(name "3" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 0 3.556 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" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(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" "global power" (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 153.67 83.82) (diameter 0) (color 0 0 0 0)
(uuid 41dc6930-d873-43fa-a90c-d42654162a6b)
)
(junction (at 153.67 119.38) (diameter 0) (color 0 0 0 0)
(uuid 77acf7b4-3894-4159-b2cb-0271c2e3663d)
)
(wire (pts (xy 124.46 104.14) (xy 124.46 119.38))
(stroke (width 0) (type default))
(uuid 03585e57-9bfb-4304-b71e-25da9ed09869)
)
(wire (pts (xy 153.67 83.82) (xy 153.67 87.63))
(stroke (width 0) (type default))
(uuid 23e02da8-bca3-4108-bc73-273abfc27652)
)
(wire (pts (xy 142.24 99.06) (xy 114.3 99.06))
(stroke (width 0) (type default))
(uuid 278905d1-a61d-4eb1-98f6-9187ef9a48da)
)
(wire (pts (xy 140.97 101.6) (xy 140.97 107.95))
(stroke (width 0) (type default))
(uuid 304a56d5-fbdc-4465-9eea-d39c4553b8bd)
)
(wire (pts (xy 163.83 104.14) (xy 142.24 104.14))
(stroke (width 0) (type default))
(uuid 47556cb2-dbf4-4f05-8ade-af17ea62579f)
)
(wire (pts (xy 177.8 119.38) (xy 153.67 119.38))
(stroke (width 0) (type default))
(uuid 47a436fa-7ca0-4130-ad9a-a34326e524d7)
)
(wire (pts (xy 114.3 104.14) (xy 124.46 104.14))
(stroke (width 0) (type default))
(uuid 4addf28a-6e5f-4ea8-b0c8-0397e8972504)
)
(wire (pts (xy 140.97 107.95) (xy 163.83 107.95))
(stroke (width 0) (type default))
(uuid 54eae0a6-407f-4667-a744-c64c6f3be60c)
)
(wire (pts (xy 177.8 85.09) (xy 177.8 83.82))
(stroke (width 0) (type default))
(uuid 5f66263c-25bd-4d6c-8fa5-d9a142ad4e2e)
)
(wire (pts (xy 191.77 111.76) (xy 207.01 111.76))
(stroke (width 0) (type default))
(uuid 65dd5b46-f410-4a55-a54d-c4487ac21ca7)
)
(wire (pts (xy 114.3 101.6) (xy 140.97 101.6))
(stroke (width 0) (type default))
(uuid 876051e4-fe3d-41cb-937b-7c80fe37cfbf)
)
(wire (pts (xy 142.24 104.14) (xy 142.24 99.06))
(stroke (width 0) (type default))
(uuid b48ef5e8-6a77-40d6-85b7-08c3a05b8ee0)
)
(wire (pts (xy 124.46 119.38) (xy 153.67 119.38))
(stroke (width 0) (type default))
(uuid d4886ca3-9fa8-4a1a-9995-0f01f045bc24)
)
(wire (pts (xy 191.77 100.33) (xy 207.01 100.33))
(stroke (width 0) (type default))
(uuid d55ad25b-bf88-4069-99e0-2828328b0ef5)
)
(wire (pts (xy 191.77 104.14) (xy 207.01 104.14))
(stroke (width 0) (type default))
(uuid dcc7f8b4-1e22-433e-b1ad-5558b6168c5c)
)
(wire (pts (xy 191.77 107.95) (xy 207.01 107.95))
(stroke (width 0) (type default))
(uuid deb12c54-dbdc-4760-82b7-f475634888c9)
)
(wire (pts (xy 153.67 119.38) (xy 153.67 95.25))
(stroke (width 0) (type default))
(uuid e3c243b6-4243-4bea-a62d-b16289c35333)
)
(wire (pts (xy 153.67 119.38) (xy 153.67 121.92))
(stroke (width 0) (type default))
(uuid e4a1b9d2-00e3-45e7-8c19-a61b9ad86df4)
)
(wire (pts (xy 177.8 83.82) (xy 153.67 83.82))
(stroke (width 0) (type default))
(uuid ea3262c5-a476-4e35-861a-eb6c2fc909db)
)
(label "RS485_D+" (at 128.27 101.6 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8d8d1396-5515-46bd-a14f-2ae5383c6049)
)
(label "RS485_D-" (at 128.27 99.06 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 980ed58d-54aa-4694-bccf-426952b7b7fd)
)
(hierarchical_label "TX_EN" (shape input) (at 207.01 107.95 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5a367872-70ad-4a23-afc2-54b25c5fd51e)
)
(hierarchical_label "TX" (shape input) (at 207.01 111.76 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8103bd87-d8f7-4a8d-aea3-56c161f5d201)
)
(hierarchical_label "RX" (shape input) (at 207.01 100.33 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid af26bff4-a106-4776-ada9-2eeb5fd9a96f)
)
(hierarchical_label "RX_EN_N" (shape input) (at 207.01 104.14 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b21236d2-f7ba-4800-a48f-81db92b88022)
)
(symbol (lib_id "plan44:ADM3485E") (at 176.53 100.33 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005eb6bc94)
(property "Reference" "U8" (at 170.18 88.9 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ADM3485E" (at 177.8 97.79 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 176.53 100.33 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 176.53 100.33 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "MPN" "ADM3485EARZ" (at 176.53 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "SKU" "584-ADM3485EARZ" (at 176.53 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "SKU2" "173-21-876" (at 176.53 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Vendor" "mouser.ch" (at 176.53 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Vendor2" "distrelec.ch" (at 176.53 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Module" "RS485" (at 176.53 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Purpose" "Line Driver" (at 176.53 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 604aa941-5944-4f52-bf0a-3b2710d821cc))
(pin "2" (uuid ed4bf467-cbb5-4d56-af8d-b1d72893c94a))
(pin "3" (uuid 31c485fe-2483-4107-a6c4-1b9395935abc))
(pin "4" (uuid f8d150a7-6fc3-4163-ac08-d614c09e11d2))
(pin "5" (uuid c30e8ee2-ccf9-4c4d-ad84-eea62aeadc2a))
(pin "6" (uuid 30151d6c-b9fe-4090-979a-86cfb1595cca))
(pin "7" (uuid 98b1a1b7-33a5-40cc-b8b8-6a0bf42c2ad6))
(pin "8" (uuid 20736b93-520c-4666-8b64-e6c13e034e7b))
(instances
(project "p44ioshield2"
(path "/d21ef261-c94c-43bb-93a4-be79a9aee64a/3532f86d-10c9-438d-a2a2-9ba94e1b74c4"
(reference "U8") (unit 1)
)
)
(project "p44mini_lx"
(path "/e472dac4-5b65-4920-b8b2-6065d140a69d/58aeabe8-1d29-444c-9cf9-41243e7af90a"
(reference "U8") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 153.67 91.44 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005eb948d6)
(property "Reference" "C?" (at 154.305 88.9 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 154.305 93.98 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (at 154.6352 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 153.67 91.44 0)
(effects (font (size 1.27 1.27)))
)
(property "SKU" "300-86-868" (at 153.67 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Vendor" "distrelec.ch" (at 153.67 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Module" "RS485" (at 153.67 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Purpose" "ADM3485E bulk cap" (at 153.67 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 674236db-6c93-4fa1-863e-338c88d0d8af))
(pin "2" (uuid b78dd52a-34dc-475e-a826-620bf7561647))
(instances
(project "p44ioshield2"
(path "/d21ef261-c94c-43bb-93a4-be79a9aee64a"
(reference "C?") (unit 1)
)
(path "/d21ef261-c94c-43bb-93a4-be79a9aee64a/3532f86d-10c9-438d-a2a2-9ba94e1b74c4"
(reference "C17") (unit 1)
)
)
(project "p44mini_lx"
(path "/e472dac4-5b65-4920-b8b2-6065d140a69d/58aeabe8-1d29-444c-9cf9-41243e7af90a"
(reference "C7") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 153.67 121.92 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005eb948dc)
(property "Reference" "#PWR?" (at 153.67 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 153.67 125.73 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 153.67 121.92 0)
(effects (font (size 1.27 1.27)))
)
(property "Datasheet" "" (at 153.67 121.92 0)
(effects (font (size 1.27 1.27)))
)
(pin "1" (uuid 8851c576-cf9b-40d2-8fa6-1f8c7e15d8ce))
(instances
(project "p44ioshield2"
(path "/d21ef261-c94c-43bb-93a4-be79a9aee64a"
(reference "#PWR?") (unit 1)
)
(path "/d21ef261-c94c-43bb-93a4-be79a9aee64a/3532f86d-10c9-438d-a2a2-9ba94e1b74c4"
(reference "#PWR029") (unit 1)
)
)
(project "p44mini_lx"
(path "/e472dac4-5b65-4920-b8b2-6065d140a69d/58aeabe8-1d29-444c-9cf9-41243e7af90a"
(reference "#PWR0104") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3.3V") (at 153.67 83.82 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005eb948e2)
(property "Reference" "#PWR?" (at 153.67 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 153.67 80.264 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 153.67 83.82 0)
(effects (font (size 1.27 1.27)))
)
(property "Datasheet" "" (at 153.67 83.82 0)
(effects (font (size 1.27 1.27)))
)
(pin "1" (uuid 8657a50e-c93a-444c-aa3e-74c903376a99))
(instances
(project "p44ioshield2"
(path "/d21ef261-c94c-43bb-93a4-be79a9aee64a"
(reference "#PWR?") (unit 1)
)
(path "/d21ef261-c94c-43bb-93a4-be79a9aee64a/3532f86d-10c9-438d-a2a2-9ba94e1b74c4"
(reference "#PWR011") (unit 1)
)
)
(project "p44mini_lx"
(path "/e472dac4-5b65-4920-b8b2-6065d140a69d/58aeabe8-1d29-444c-9cf9-41243e7af90a"
(reference "#PWR0103") (unit 1)
)
)
)
)
(symbol (lib_id "plan44:TermBlock-3P") (at 106.68 104.14 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000060895e0a)
(property "Reference" "J17" (at 109.4232 94.742 0)
(effects (font (size 1.143 1.143)))
)
(property "Value" "TermBlock-3P-381" (at 106.68 104.14 0)
(effects (font (size 1.143 1.143)) (justify left bottom) hide)
)
(property "Footprint" "Connector_Phoenix_MC:PhoenixContact_MC_1,5_3-G-3.81_1x03_P3.81mm_Horizontal" (at 105.918 107.95 0)
(effects (font (size 0.508 0.508)) hide)
)
(property "Datasheet" "" (at 106.68 104.14 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "SKU" "300-43-026" (at 106.68 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Vendor" "distrelec.ch" (at 106.68 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Module" "RS485" (at 106.68 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 00b4e695-88d6-44bb-832a-6c1b0fa8c3bb))
(pin "2" (uuid 5ea46753-76f0-48be-be9f-b5b94f0a7cd8))
(pin "3" (uuid c0acdb37-0e22-424c-872f-e562bb68725b))
(instances
(project "p44ioshield2"
(path "/d21ef261-c94c-43bb-93a4-be79a9aee64a/3532f86d-10c9-438d-a2a2-9ba94e1b74c4"
(reference "J17") (unit 1)
)
)
(project "p44mini_lx"
(path "/e472dac4-5b65-4920-b8b2-6065d140a69d/58aeabe8-1d29-444c-9cf9-41243e7af90a"
(reference "J17") (unit 1)
)
)
)
)
)