New username: @17o2

Results 183 comments of New username: @17o2

> One way [a mate between two connectors] could be specified, is to use `` instead of a cable/wire between two connectors in a `connections` entry to indicate a direct...

> If I understand you correctly, you suggest ` Personally, I find it more intuitively to swap them, to associate the thinner ` > The issue will be that currently,...

I realize this reply took a while, but better late than never ;-) Indeed, you can run: ```python from wireviz import wireviz yaml_data = """ metadata: title: Test connectors: X1:...

> for mating connectors I guess this is not BOM relevant (since the mating connector isn't part of the harness itself) but just a hint for the reader, to have...

Thanks for the heads up on this project! Sounds interesting. Once I have a bit more time, I'll look into it in more detail, and will link to it in...

Have you tried using the `pins` attribute of the connector? Here's a minimal example. ```yaml X1: pins: [1,9,2,10] pinlabels: [sig1+, sig1-, sig2+, sig2-] ``` This way, you can force the...

Perhaps @n42 can explain the need for adding the `..` in [line 13 in `wireviz.py`](https://github.com/formatc1702/WireViz/blame/master/src/wireviz/wireviz.py#L13)? Isn't it enough to insert `os.path.dirname(__file__)` to find the WireViz modules? Would the `Pathlib` equivalent...

Here's some sample code to generate a DIN 6771 title block in code... ``` python import svgwrite white = svgwrite.rgb(255,255,255) black = svgwrite.rgb(0,0,0) thick = 0.35 thin = 0.18 #...

Started some work in the [`feature-pdf`](https://github.com/formatc1702/WireViz/tree/feature-pdf/src/wireviz/titleblock) branch. [`html2pdf.py`](https://github.com/formatc1702/WireViz/blob/feature-pdf/src/wireviz/titleblock/html2pdf.py) reads [`template.html`](https://github.com/formatc1702/WireViz/blob/feature-pdf/src/wireviz/titleblock/template.html) and replaces some placeholders with the data from [`metadata.yml`](https://github.com/formatc1702/WireViz/blob/feature-pdf/src/wireviz/titleblock/metadata.yml) and creates [`output.html`](https://github.com/formatc1702/WireViz/blob/feature-pdf/src/wireviz/titleblock/output.html), which includes the image `harness.svg`. This could subsequently...

If anyone proficient in HTML/CSS wants to help me improve the output of the technical drawing, please check out the [`feature-pdf`](https://github.com/formatc1702/WireViz/tree/feature/technical-drw) branch and contact me! Main issues: - making the...