Skip to content

Commit

Permalink
Add intake skeleton (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
outsidermm authored Jan 13, 2024
1 parent 9110384 commit 8d27172
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions components/intake.py
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

0 comments on commit 8d27172

Please sign in to comment.