-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9110384
commit 8d27172
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
from magicbot import tunable, feedback | ||
|
||
|
||
class Intake: | ||
intake_speed = tunable(1.0) | ||
|
||
def __init__(self) -> None: | ||
pass | ||
|
||
def deploy(self) -> None: | ||
pass | ||
|
||
def retract(self) -> None: | ||
pass | ||
|
||
def run_backwards(self) -> None: | ||
pass | ||
|
||
@feedback | ||
def is_note_present(self) -> bool: | ||
return True | ||
|
||
@feedback | ||
def is_fully_retracted(self) -> bool: | ||
return True | ||
|
||
@feedback | ||
def is_fully_deployed(self) -> bool: | ||
return True | ||
|
||
def execute(self) -> None: | ||
pass |