etherlab/extension.py
author Laurent Bessard
Sat, 13 Apr 2013 12:27:49 +0200
changeset 2125 f62eb0b2e57c
parent 2111 f2cffda17d00
permissions -rw-r--r--
Fixed CIA402 node template for working with MC_Power modification removing implicit set position
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))