etherlab/extension.py
author Laurent Bessard
Mon, 03 Jun 2013 08:24:08 +0200
changeset 2151 015dab6a915f
parent 2111 f2cffda17d00
permissions -rw-r--r--
Fixed bug when drag'n dropping variable in master startup command grid
import features

def GetEtherLabLibClass():
    from EthercatMaster import EtherlabLibrary
    return EtherlabLibrary

features.libraries.append(
    ('Etherlab', GetEtherLabLibClass))

def GetEtherLabClass():
    from etherlab import RootClass
    return RootClass

features.catalog.append(
    ('etherlab', _('EtherCat Master'), _('Map located variables over EtherCat'), GetEtherLabClass))