rect == rectangle
Note that simple graphic shapes have a “no net” property and can’t be assigned to a net. So a graphic shape produces always a clearance conflict with a track. (exceptions are custom shaped pads which are build from graphic shapes, and maybe nettie pads).
Note also that you should always mention the used kicad version. I have assumed you work with v7. The answer above is not 100% true anymore in upcoming v8.
It is found in the standard KiCad symbol library under the name “TestPoint”
The associated footprint I use can be found in the standard KiCad footprint library under the name “TestPoint_Bridge_Pitch2.0mm_Drill0.7mm”
3D view shows the loop of wire as the installed component:
Assuming this is the desired result.
Additionally, if there is room, I put a second test point nearby connected to common/ground/return (whatever is appropriate) for the return path from the test probe.
That’s a nice looking TP clip. If I place the schematic symbol on the circuit with the pins defined as (1,1) and then associate that with a footprint with pins defined as (1,1) surely that should work, assuming no other errors (I can’t see any)?
. If I place the schematic symbol on the circuit with the pins defined as (1,1) and then associate that with a footprint with pins defined as (1,1) surely that should work
No, that will not work.
For all schematic symbol the restriction is “all pins must have different pinnumbers”. So it’s forbidden to have a symbol with two pins with pinnumber==1.
After creating/modifying a symbol always run the symnol editor–>Inspect–>Symbol Checker command. This will report such easy mistakes.
For symbols /footprints there is the rule: all pads with the same padnumber are connected together and connected to the pin (from the symbol) with the corresponding pinnumber. You can have multiple pads with same padnumber (as in “TestPoint_Bridge_Pitch2.0mm_Drill0.7mm” shown by the @tryitagain ), but only one pin with that pinnumber.
Look and examine the shown examples (symbol “testpoint”, footprint “TestPoint_Bridge_Pitch2.0mm_Drill0.7mm”). The symbol has only one pin, numbered as Pin==1. The footprint on the other hand has two pads, but both pads are also numbered as pad==1. In the resulting schematic/board both pads are connected together.
Maybe copy both (symbol+FP) in your own library, play with them, try to modify them and gain experience.
Copy the “Test Point” footprint into a personal library.
Open the Test point in that personal library in your Symbol Editor…
Add the graphic rectangle on the bottom layer to join the two pads, as you have done in the PCB editor.
Right click one of the pads in the symbol editor.
Select “Edit Pad as Graphic Shape”.
Select “Edit pad as Graphic Shape” again, to close the function.
Now you have a new footprint consisting of two pads connected with a graphic rectangle all in the one footprint, so DRC will not complain.