예제 #1
0
 def configure(self, config):
     ARMNode.configure(self, config)
예제 #2
0
 def configure(self, config):
     ARMNode.configure(self, config)
     set_attribute(self, 'mode', 'volts', config, str)
     set_attribute(self, 'ttl', 10.0, config, int)
예제 #3
0
파일: ao.py 프로젝트: mcruse/monotone
 def configure(self, cd):
     ARMNode.configure(self, cd)
     if self.id < 1 or self.id > 3:
         self.id = None
         raise EInvalidValue('AO channel must be between 1 and 3.  %d is invalid' % self.id)
예제 #4
0
파일: ai.py 프로젝트: mcruse/monotone
 def configure(self, config):
     ARMNode.configure(self, config)
     set_attribute(self, 'mode', 'volts', config, str)
     set_attribute(self, 'ttl', 10.0, config, int)
예제 #5
0
파일: canbus.py 프로젝트: mcruse/monotone
 def configure(self,config):
     ARMNode.configure(self,config)
예제 #6
0
 def configure(self, cd):
     ARMNode.configure(self, cd)
     if self.id < 1 or self.id > 3:
         self.id = None
         raise EInvalidValue(
             'AO channel must be between 1 and 3.  %d is invalid' % self.id)