-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow pin out to be numbered #138
Comments
You specify which of the 26 are used by connecting them to wires/cables. See
Perhaps not exactly what you want, but you could try using e.g. # contributed by @elliotmr
connectors:
X1:
type: TE 776164-1
subtype: female
hide_disconnected_pins: True
pincount: 35
pinout: [NC,-,-,-,AA,BB]
notes: Unconnected pins are not shown
X2:
type: D-Sub
subtype: female
pincount: 9
pinout: [NC,B,-,-,-,-,A]
hide_disconnected_pins: True
notes: Unconnected pins are not shown
cables:
C1:
wirecount: 2
gauge: 20 AWG
colors: [YE, GN]
length: 1
connecontis:
-
- X1: [5,6]
- C1: [1,2]
- X2: [7,2] Alternatively, you also can also rename the pin numbers to obtain the same result (without needing # contributed by @elliotmr
connectors:
X1:
type: TE 776164-1
subtype: female
pincount: 35
pinnumbers: [5,6]
pinout: [AA,BB]
notes: Unconnected pins are not shown
X2:
type: D-Sub
subtype: female
pincount: 9
pinnumbers: [2,7]
pinout: [B,A]
notes: Unconnected pins are not shown
cables:
C1:
wirecount: 2
gauge: 20 AWG
colors: [YE, GN]
length: 1
connections:
-
- X1: [5,6]
- C1: [1,2]
- X2: [7,2] |
Based on your your connector info (assuming which 4 pin numbers you are using other than pin 20) and the last alternative in my first comment above, I got this: connectors:
Molex1:
type: automotive
subtype: male
pincount: 26
pinnumbers: [19,20,21,22,23]
pinout: [GA-NET+, AMP, RCA+, GA-NET-, RCA-]
notes: GA-NET(BUS) has 68 ohm 1/2 watt resistor
cables:
Cable1:
wirecount: 5
color_code: DIN
connections:
-
- Molex1: [19-23]
- Cable1: [1-5] |
@kvid what branch are you using to generate the example above? |
@opolanco23 I'm sorry if these last comments might confuse you. The
I did use the
Are you sure? I just did that without any errors. I have also tried it in the |
Huh, I must have misremembered when this feature was introduced. You're right. |
@kvid thanks for the info, what is in the master branch now will work. Feel free to close this |
Hello,
If this is already a feature if you could point me in the right direction that would be awesome.
I have a 26 pin molex connector where only 5 pins are used, so I would like to show which pins of the 26 are actually used. If just describe the pin out its interpreted as there are only 5 pins if I manually add the pin count then I do not know how to specify which of the 26 are used.
could something like this be used
and any pins not mentioned are assumed blank? If there is already something like this then I apologize and please show me an example.
The text was updated successfully, but these errors were encountered: