def getEnabled5V() -> bool:
     """Get the enabled state of the 5V rail. The rail may be disabled due to a controller brownout, a
     short circuit on the rail, or controller over-voltage.
     
     :returns: The controller 5V rail enabled value
     """
     return hal.getUserActive5V()
    def getEnabled5V() -> bool:
        """
            Get the enabled state of the 5V rail. The rail may be disabled
            due to a controller brownout, a short circuit on the rail, or
            controller over-voltage

            :returns: True if enabled, False otherwise
        """
        return hal.getUserActive5V()
Example #3
0
    def getEnabled5V() -> bool:
        """
            Get the enabled state of the 5V rail. The rail may be disabled
            due to a controller brownout, a short circuit on the rail, or
            controller over-voltage

            :returns: True if enabled, False otherwise
        """
        return hal.getUserActive5V()