Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions examples/server/v1/components.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,9 @@ async def model_attributes(self) -> Board.Attributes:
async def set_power_mode(self, **kwargs):
raise NotImplementedError()

async def write_analog(self, pin: str, value: int, *, timeout: float | None = None, **kwargs):
raise NotImplementedError()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[q] how is this related to the mode change? just a drive-by?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup -- docs tests were failing because of a missed update to the example server. My bad, should've noted [flyby]


async def get_geometries(self, extra: Optional[Dict[str, Any]] = None, **kwargs) -> List[Geometry]:
return GEOMETRIES

Expand Down
Loading