etherlab/extension.py
author Laurent Bessard
Thu, 25 Oct 2012 19:55:02 +0200
changeset 2086 8e4992e0f147
parent 2048 5726f2bbdace
child 2111 f2cffda17d00
permissions -rw-r--r--
Adding block library for SDO download and SDO upload
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))