kicad/pcbnew/swig/tests/test2.py

9 lines
217 B
Python

import pcbnew
pcb = pcbnew.GetBoard()
for m in pcb.GetModules():
print m.GetReference(),"(",m.GetValue(),") at ", m.GetPosition()
for p in m.Pads():
print " pad",p.GetName(), "at",p.GetPosition()