chnages in build
This commit is contained in:
parent
24817dcc32
commit
327f87ca34
5 changed files with 37 additions and 2 deletions
|
@ -13,6 +13,9 @@ API_URL_SIMON_SAYS = API_URL + "simonSays"
|
|||
|
||||
|
||||
class Seeding:
|
||||
"""Class used for communicating with seeding api
|
||||
"""
|
||||
|
||||
@staticmethod
|
||||
def get_park() -> int:
|
||||
"""Get a parkingsapce from the api.
|
||||
|
@ -36,6 +39,8 @@ class Seeding:
|
|||
|
||||
|
||||
class Position:
|
||||
"""Datastructure for holding a position
|
||||
"""
|
||||
def __init__(self, x, y, degrees):
|
||||
self.x = x
|
||||
self.y = y
|
||||
|
@ -43,6 +48,8 @@ class Position:
|
|||
|
||||
|
||||
class DoubleElim:
|
||||
"""Class used for communicating with double elimination api
|
||||
"""
|
||||
@staticmethod
|
||||
def get_position() -> Position:
|
||||
"""Get position of the robot
|
||||
|
|
Reference in a new issue