Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-45744 Implement ATBuilding CSC +790-148 #3

Merged
merged 15 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from 12 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
4 changes: 2 additions & 2 deletions python/lsst/ts/vent/controller/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.

try:
from .version import * # Generated by sconsUtils
from .version import __version__ # Generated by sconsUtils
except ImportError:
__version__ = "?"

from .config import Config
from .controller import Controller, VentGateState
from .controller import Controller
from .dispatcher import Dispatcher
4 changes: 2 additions & 2 deletions python/lsst/ts/vent/controller/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ class Config:
port = 502
"""The default TCP port to connect to via modbus-TCP."""

slave = 1
"""The default modbus slave ID for the variable frequency drive."""
device_id = 1
"""The default modbus device ID for the variable frequency drive."""

max_freq = 50.0
"""Default maximum frequency for the dome fans."""
Expand Down
Loading
Loading