[query] CHASSIS GROUND (MAIN)
Hello, Is there a way to show the chassis ground (main) in Wireviz ? Can it be shown using splice?
Thank you and Best Regards,
Try creating a connector with style: simple and type: GROUND attributes. It is a bit counter-intuitive that type describes the label that is displayed. Effectively, this kind of connector is also what can be used as a splice.
Try creating a connector with
style: simpleandtype: GROUNDattributes.
That will work, and a "Connector, GROUND" entry will be added to the BOM unless you also add connector attribute ignore_in_bom: true.
It is a bit counter-intuitive that type describes the label that is displayed. Effectively, this kind of connector is also what can be used as a splice.
The type describes the type of connector (not label) and is also used in the BOM entry. The name of a simple connector is hidden by default unless you also add connector attribute show_name: true.
It's also possible not providing a type, but with an empty type, the connector node becomes very tiny unless also adding the name or e.g. an image like this:
It's also possible not providing a
type, but with an emptytype, the connector node becomes very tiny unless also adding the name or e.g. an image like this:
Defining the type as Unicode Ground Symbol U+23EA might work as well. See this table for other symbols.
Source: Wikipedia
Chassis ground is not necessarily the same as earth ground (U+23DA), and I didn't find the chassis ground symbol as a unicode character.
Thank you @kvid @martinrieder !