summaryrefslogtreecommitdiff
path: root/src/projManagement/openKicad.py
blob: 9376589f0d1da346b5b491d628b22e6ae392e1e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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"