42 lines
850 B
YAML
42 lines
850 B
YAML
connectors:
|
|
X1: &template1 # define a template for later use
|
|
type: Molex KK 254
|
|
pincount: 4
|
|
subtype: female
|
|
manufacturer: Molex
|
|
manufacturer_part_number: 22013047
|
|
X2:
|
|
<<: *template1 # reuse template
|
|
internal_part_number: CON4
|
|
X3:
|
|
<<: *template1 # reuse template
|
|
|
|
cables:
|
|
W1:
|
|
wirecount: 4
|
|
length: 1
|
|
gauge: 0.25 mm2
|
|
color_code: IEC
|
|
manufacturer: CablesCo
|
|
manufacturer_part_number: ABC123
|
|
internal_part_number: CAB1
|
|
W2:
|
|
category: bundle
|
|
length: 1
|
|
gauge: 0.25 mm2
|
|
colors: [YE, BK, BK, RD]
|
|
manufacturer: [WiresCo,WiresCo,WiresCo,WiresCo]
|
|
manufacturer_part_number: [W1-YE,W1-BK,W1-BK,W1-RD]
|
|
internal_part_number: [WIRE1,WIRE2,WIRE2,WIRE3]
|
|
|
|
|
|
connections:
|
|
-
|
|
- X1: [1-4]
|
|
- W1: [1-4]
|
|
- X2: [1-4]
|
|
-
|
|
- X1: [1-4]
|
|
- W2: [1-4]
|
|
- X3: [1-4]
|