We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce3c119 commit e39579aCopy full SHA for e39579a
external_samples/component.py
@@ -45,13 +45,14 @@ def stop(self) -> None:
45
def reset(self) -> None:
46
pass
47
48
- # This returns a list (can be empty, one, or multipe) of the ports this connects to
+ # This returns a list (can be empty, one, or multiple) of the ports this connects to
49
# of the PortType enumeration
50
@abstractmethod
51
def get_connection_port_type(self) -> list[PortType]:
52
53
54
- # This is called periodically when an opmode is running
+ # This is called periodically when an opmode is running. The component might use this
55
+ # to talk to hardware and then call callbacks
56
57
def periodic(self) -> None:
58
0 commit comments