Skip to content

Commit

Permalink
Merge pull request #150 from Julislz/enum_pr
Browse files Browse the repository at this point in the history
[Enums] added Enums from robocup branch
  • Loading branch information
sunava authored Oct 26, 2024
2 parents 09b634d + a66e9d1 commit e71d5ff
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/pycram/datastructures/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,14 @@ class GripperType(Enum):
CUSTOM = auto()


class FilterConfig(Enum):
"""
Declare existing filter methods.
Currently supported: Butterworth
"""
butterworth = 1


class PerceptionTechniques(Enum):
"""
Enum for techniques for perception tasks.
Expand All @@ -138,9 +146,11 @@ class PerceptionTechniques(Enum):
TYPES = auto()



class ImageEnum(Enum):
"""
Enum for image switch view on hsrb display.
"""
HI = 0
TALK = 1
Expand Down

0 comments on commit e71d5ff

Please sign in to comment.