diff options
| author | Christian Kolset <ckolset@colostate.edu> | 2026-07-29 15:44:24 -0600 |
|---|---|---|
| committer | Christian Kolset <ckolset@colostate.edu> | 2026-07-29 15:44:24 -0600 |
| commit | 767f1b013dffb8124a389997a2dbf2f06937a1d4 (patch) | |
| tree | 06f20f442ed0e810eb544b740e47089ebb8d8a41 /devices/base_device.py | |
| parent | 34c8b0950398c07e84777479f3534615907f4f58 (diff) | |
| parent | 9360dea6e6327004b905eb6d7c782cc7c0d3ba13 (diff) | |
Merge branch 'fix/control-channel-direction-filter'
# Conflicts:
# ui/control_editor.py
Diffstat (limited to 'devices/base_device.py')
| -rw-r--r-- | devices/base_device.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devices/base_device.py b/devices/base_device.py index 32fe787..83b8536 100644 --- a/devices/base_device.py +++ b/devices/base_device.py @@ -29,6 +29,7 @@ class ChannelConfig: max_value: float = 100.0 enabled: bool = True color: str = "#00d4ff" + writable: bool = False # True if this channel accepts write_channel() calls extra: Dict[str, Any] = field(default_factory=dict) |
