Esempio n. 1
0
    def __init__(self, powerswitchNode):
        """\brief Initializes the class
            \param powerswitchNode (\c PowerswitchNode) A PowerswitchNode object containing information to instantiate the class with
        """
        Powerswitch.__init__(self, powerswitchNode)

        #self.__theURL = "http://"+str(self.getUsername())+":"+str(self.getPassword())+"@"+str(self.getIPAddress())+"/Set.cmd?CMD="
        self.__theURL = "http://" + str(self.getIPAddress())
Esempio n. 2
0
    def __init__(self, powerswitchNode):
        """\brief Initializes the class
            \param powerswitchNode (\c PowerswitchNode) A PowerswitchNode object containing information to instantiate the class with
        """
        Powerswitch.__init__(self, powerswitchNode)
        
	
        #self.__theURL = "http://"+str(self.getUsername())+":"+str(self.getPassword())+"@"+str(self.getIPAddress())+"/Set.cmd?CMD="
	self.__theURL = "http://"+str(self.getIPAddress())
Esempio n. 3
0
    def __init__(self, powerswitchNode):
        """\brief Initializes the class
        \param powerswitchNode (\c PowerswitchNode) A PowerswitchNode object containing information to instantiate the class with
        """
        Powerswitch.__init__(self, powerswitchNode)

        self.__theURL = "http://" + str(self.getIPAddress()) + "/"
        self.__postURL = "http://" + str(self.getIPAddress()) + "/rack.html"
        # Slave id of 1 is the master device.
        self.slaveID = 1
Esempio n. 4
0
    def __init__(self, powerswitchNode):
        """\brief Initializes the class
        \param powerswitchNode (\c PowerswitchNode) A PowerswitchNode object containing information to instantiate the class with
        """
        Powerswitch.__init__(self, powerswitchNode)

	self.__theURL = "http://" + str(self.getIPAddress()) + "/"
	self.__postURL = "http://" + str(self.getIPAddress()) + "/rack.html"
        # Slave id of 1 is the master device.
        self.slaveID = 1
Esempio n. 5
0
File: apc.py Progetto: benroeder/HEN
 def __init__(self, powerswitchNode):
     """\brief Initializes the class
     \param powerswitchNode (\c PowerswitchNode) A PowerswitchNode object containing information to instantiate the class with
     """
     Powerswitch.__init__(self, powerswitchNode)