summaryrefslogtreecommitdiff
path: root/src/projManagement/openKicad.py
diff options
context:
space:
mode:
authorfahim2015-02-19 13:01:30 +0530
committerfahim2015-02-19 13:01:30 +0530
commitd7553c754ceb107042d75345e3c77115fdd735ab (patch)
tree2108924fe0d3b276df2021feac1ab37d1e88d8f0 /src/projManagement/openKicad.py
parent6e070b2fccfb9142ead325a9f437f28144e99ce8 (diff)
downloadeSim-d7553c754ceb107042d75345e3c77115fdd735ab.tar.gz
eSim-d7553c754ceb107042d75345e3c77115fdd735ab.tar.bz2
eSim-d7553c754ceb107042d75345e3c77115fdd735ab.zip
Subject: Modified newProject.py
Description: Created GUI for newProject Block. Also added new module for openKicad functionality (Implementation is remaining)
Diffstat (limited to 'src/projManagement/openKicad.py')
-rw-r--r--src/projManagement/openKicad.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/projManagement/openKicad.py b/src/projManagement/openKicad.py
new file mode 100644
index 00000000..9376589f
--- /dev/null
+++ b/src/projManagement/openKicad.py
@@ -0,0 +1,35 @@
+#===============================================================================
+#
+# FILE: openKicad.py
+#
+# USAGE: ---
+#
+# DESCRIPTION: It call kicad schematic
+#
+# OPTIONS: ---
+# REQUIREMENTS: ---
+# BUGS: ---
+# NOTES: ---
+# AUTHOR: Fahim Khan, fahim.elex@gmail.com
+# ORGANIZATION: ecSim team at FOSSEE, IIT Bombay.
+# CREATED: Tuesday 17 Feb 2015
+# REVISION: ---
+#===============================================================================
+
+class Kicad:
+ """
+ Class Kicad open Schematic,PCB and Layout
+ """
+ def __init__(self):
+ pass
+
+ def openSchematic(self):
+ print "Kicad Schematic is called"
+
+ def openFootprint(self):
+ print "Kicad Foot print Editor called"
+
+ def openLayout(self):
+ print "Kicad Layout is called"
+
+ \ No newline at end of file