Skip to content

Commit

Permalink
test: Added simple SVG test example.
Browse files Browse the repository at this point in the history
  • Loading branch information
devbisme committed Jul 8, 2024
1 parent 13ec5c5 commit 4e34f77
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tests/examples/svg/simple.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import svg_setup
from skidl import *

q = Part(lib="Device", name="Q_PNP_CBE", symtx="")
e = Net("E")
q.E += e
q.C += e
# q.C += q.E

c = Part("Device", "C_Polarized")
l = Part("Device", "L")
c | l

fc = Part("Device", "FrequencyCounter")
fc[1] += fc[2]

generate_svg()

0 comments on commit 4e34f77

Please sign in to comment.