etherlab/extension.py
author Laurent Bessard
Wed, 27 Feb 2013 22:40:45 +0100
changeset 2097 58d07e039896
parent 2086 8e4992e0f147
child 2111 f2cffda17d00
permissions -rw-r--r--
Added panel for managing ESI files from project and from database including module PDO alignment setting
import features

def GetEtherLabLibClass():
    from etherlab 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))