-
Notifications
You must be signed in to change notification settings - Fork 232
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
Add a way to add a loopback wire, add example of it #439
Comments
What you described here in pink would not be a loop back wire since it goes from one connector to the other. A way to short and loop wires inside one connector is worked on, #412 To do what you want, I would create its own wire/cable. |
@tobiasfalk wrote:
What @tobiasfalk is trying to explain, is that this feature request cannot be solved with the existing optional
A quick and dirty work-around to obtain what @DeflateAwning asks for, is to append these connections: -
- CN2 (DC Output): [8]
- Pigtail Loopback
-
- CN901 (Standby): [2]
- Pigtail Loopback However, the rendering is not very pretty. It looks almost like two wires are spliced: Another work-around requires more know-how about how WireViz generates the Graphviz input: # The connectors are unchanged
cables:
# The other cables are unchanged
Pigtail Loopback:
colors: [PK, PK]
show_wirecount: false
show_wirenumbers: false
connections:
# The other connections are unchanged
-
- CN2 (DC Output): [8]
- Pigtail Loopback: [1]
-
- CN901 (Standby): [2]
- Pigtail Loopback: [2]
tweak:
append: |
"Pigtail Loopback":w1:e -- "Pigtail Loopback":w2:e [label=" " color="#000000:#ff66cc:#000000"] And it looks a bit better: |
|
I want to add a tiny loopback wire as shown in the following diagram (pink jagged line).
The rest of the diagram is below.
This would be great to add as an example if it's currently possible; otherwise, it'd be a great feature to add!
The text was updated successfully, but these errors were encountered: