def isBrownedOut(self):
        """
        Check if the system is browned out.

        :returns: True if the system is browned out.
        """
        return hal.getBrownedOut()
예제 #2
0
    def isBrownedOut(self):
        """
        Check if the system is browned out.

        :returns: True if the system is browned out.
        """
        return hal.getBrownedOut()
예제 #3
0
    def isBrownedOut(self):
        """
        Check if the system is browned out.

        .. deprecated:: 2018.0.0
            Use :meth:`.RobotController.isBrownedOut`

        :returns: True if the system is browned out.
        """
        return hal.getBrownedOut()
예제 #4
0
    def isBrownedOut(self) -> bool:
        """
        Check if the system is browned out.

        .. deprecated:: 2018.0.0
            Use :meth:`.RobotController.isBrownedOut`

        :returns: True if the system is browned out.
        """
        return hal.getBrownedOut()
예제 #5
0
 def isBrownedOut() -> bool:
     """Check if the system is browned out.
     
     :returns: True if the system is browned out
     """
     return hal.getBrownedOut()