Beispiel #1
0
    def initialize(self):
        '''
        '''
        self.scheduler = Scheduler()

        addProperty(self, "property")
        return
 def initialize(self):
     '''
     '''
     self.scheduler = Scheduler()
     
     addProperty(self, "property")
     return
 def initialize(self):
     '''
     '''
     self.scheduler = Scheduler()
     
     addProperty(self, "property01")
     addProperty(self, "property02")
     addProperty(self, "property03")
     addProperty(self, "property04")
     addProperty(self, "property05")
     addProperty(self, "property06")
     addProperty(self, "property07")
     addProperty(self, "property08")
     addProperty(self, "property09")
     addProperty(self, "property10")
     addProperty(self, "property11")
     addProperty(self, "property12")
     addProperty(self, "property13")
     addProperty(self, "property14")
     addProperty(self, "property15")
     addProperty(self, "property16")
     return
Beispiel #4
0
    def initialize(self):
        '''
        '''
        addProperty(self, "stringROProp")
        addProperty(self, "stringRWProp")

        addProperty(self, "doubleROProp")
        addProperty(self, "doubleRWProp")

        addProperty(self, "longROProp")
        addProperty(self, "longRWProp")

        addProperty(self, "longLongROProp")
        addProperty(self, "longLongRWProp")

        addProperty(self, "uLongLongROProp")
        addProperty(self, "uLongLongRWProp")

        addProperty(self, "patternROProp")
        addProperty(self, "patternRWProp")

        addProperty(self, "doubleSeqROProp")
        addProperty(self, "doubleSeqRWProp")

        addProperty(self, "longSeqROProp")
        addProperty(self, "longSeqRWProp")

        addProperty(self, "strSeqProp")

        addProperty(self, "blarROProp")
        addProperty(self, "blarRWProp")

        addProperty(self, "timestampROProp", self.timestampIO)
        
        return
Beispiel #5
0
    def initialize(self):
        '''
        '''
        addProperty(self, "stringROProp")
        addProperty(self, "stringRWProp")

        addProperty(self, "doubleROProp")
        addProperty(self, "doubleRWProp")

        addProperty(self, "longROProp")
        addProperty(self, "longRWProp")

        addProperty(self, "longLongROProp")
        addProperty(self, "longLongRWProp")

        addProperty(self, "uLongLongROProp")
        addProperty(self, "uLongLongRWProp")

        addProperty(self, "patternROProp")
        addProperty(self, "patternRWProp")

        addProperty(self, "doubleSeqROProp")
        addProperty(self, "doubleSeqRWProp")

        addProperty(self, "longSeqROProp")
        addProperty(self, "longSeqRWProp")

        addProperty(self, "strSeqProp")

        addProperty(self, "blarROProp")
        addProperty(self, "blarRWProp")

        addProperty(self, "timestampROProp", self.timestampIO)

        return
Beispiel #6
0
 def initialize(self):
     '''
     '''
     addProperty(self, "brightness")
     return
Beispiel #7
0
 def initialize(self):
     addProperty(self, 'status', devio_ref=GenericDevIO())
     addProperty(self, 'position', devio_ref=PositionDevIO(self))
     addProperty(self, 'current', devio_ref=GenericDevIO())
     addProperty(self, 'seq', devio_ref=SequenceDevIO(self))
     print('Component initialized')
Beispiel #8
0
 def initialize(self):
     '''
     '''
     addProperty(self, "brightness")
     return