2012-08-10 21:53:50 +00:00
|
|
|
import pcbnew
|
2012-03-10 21:40:41 +00:00
|
|
|
|
2012-08-10 21:53:50 +00:00
|
|
|
pcb = pcbnew.GetBoard()
|
2012-03-10 21:40:41 +00:00
|
|
|
|
2012-08-10 21:53:50 +00:00
|
|
|
for m in pcb.GetModules():
|
2014-10-02 17:09:32 +00:00
|
|
|
print m.GetReference(),"(",m.GetValue(),") at ", m.GetPosition()
|
|
|
|
for p in m.Pads():
|
|
|
|
print " pad",p.GetPadName(), "at",p.GetPosition()
|