Source code for utils.Wheels
from enum import Enum
[docs]
class Wheels(Enum):
    """
    This enumeration represents the list of possible values for the wheels of Robobo
    """
    R = "right"
    L = "left"
    BOTH = "both"
from enum import Enum
[docs]
class Wheels(Enum):
    """
    This enumeration represents the list of possible values for the wheels of Robobo
    """
    R = "right"
    L = "left"
    BOTH = "both"