Skip to content

Commit ef76c80

Browse files
committed
Upgrade aquarium to support parallax port
1 parent 8c372ff commit ef76c80

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies = [
3535
"requests==2.32.5",
3636
"sensapex==1.400.4",
3737
"rich==14.2.0",
38-
"vbl-aquarium==1.0.1"
38+
"vbl-aquarium==1.1.0"
3939
]
4040

4141
[project.urls]

src/ephys_link/bindings/parallax_binding.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
"""Bindings for Parallax for New Scale platform.
2+
3+
Usage: Instantiate ParallaxBinding to interact with the Parallax for New Scale Pathfinder platform.
4+
"""
5+
16
from asyncio import get_running_loop, sleep
27
from json import dumps
38
from typing import Any, final, override
@@ -11,7 +16,7 @@
1116

1217
@final
1318
class ParallaxBinding(BaseBinding):
14-
"""Bindings for Parallax platform."""
19+
"""Bindings for Parallax for New Scale platform."""
1520

1621
# Server data update rate (30 FPS).
1722
SERVER_DATA_UPDATE_RATE = 1 / 30
@@ -39,7 +44,7 @@ def __init__(self, port: int = 8081) -> None:
3944
@staticmethod
4045
@override
4146
def get_display_name() -> str:
42-
return "Parallax"
47+
return "Parallax for New Scale"
4348

4449
@staticmethod
4550
@override

0 commit comments

Comments
 (0)