You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
263 B
10 lines
263 B
from __future__ import print_function
|
|
|
|
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())
|