1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
|
"""
devices/nidaqmx_device.py
Combined NI-DAQmx physical device β analog inputs + digital I/O on one NI board.
"""
from typing import Any, Dict
from PyQt6.QtWidgets import (
QWidget, QVBoxLayout, QHBoxLayout, QFormLayout, QGroupBox,
QDoubleSpinBox, QCheckBox, QLineEdit, QLabel, QPushButton,
QListWidget, QListWidgetItem,
)
from PyQt6.QtCore import Qt, QThread, pyqtSignal
from devices.base_device import BaseDevice, ChannelConfig, DeviceInfo, DeviceStatus
from api_layers.nidaqmx_layer import NidaqmxLayer
_ANALOG_COLORS = [
"#00d4ff", "#ff6b35", "#7fff6e", "#ffcc00",
"#c77dff", "#ff4d6d", "#4cc9f0", "#f72585",
"#38b000", "#e9c46a", "#a8dadc", "#e63946",
"#90e0ef", "#fb8500", "#b5e48c", "#d62828",
]
_DI_COLORS = ["#4cc9f0", "#90e0ef", "#caf0f8", "#0077b6", "#023e8a", "#48cae4", "#ade8f4", "#00b4d8"]
_DO_COLORS = ["#ff6b35", "#ffcc00", "#f77f00", "#fcbf49", "#d62828", "#e63946", "#fb8500", "#ffd166"]
class NidaqmxDevice(BaseDevice):
DEVICE_TYPE = "nidaqmx"
ICON = "π¬"
def __init__(
self,
device_id: str = "ni_0",
num_analog: int = 4,
min_v: float = -10.0,
max_v: float = 10.0,
num_di: int = 2,
num_do: int = 4,
simulate: bool = True,
ni_device: str = "Dev1",
):
self.simulate = simulate
self.backend = "nidaqmx"
self._ni_device = ni_device
self._num_analog = num_analog
self._min_v = min_v
self._max_v = max_v
self._num_di = num_di
self._num_do = num_do
self._last_error = ""
channels = []
for i in range(num_analog):
channels.append(ChannelConfig(
channel_id=f"ai{i}", name=f"AI{i}", unit="V",
min_value=min_v, max_value=max_v,
color=_ANALOG_COLORS[i % len(_ANALOG_COLORS)],
))
for i in range(num_di):
channels.append(ChannelConfig(
channel_id=f"di{i}", name=f"DI {i}", unit="",
min_value=0.0, max_value=1.0,
color=_DI_COLORS[i % len(_DI_COLORS)],
))
for i in range(num_do):
channels.append(ChannelConfig(
channel_id=f"do{i}", name=f"DO {i}", unit="",
min_value=0.0, max_value=1.0,
color=_DO_COLORS[i % len(_DO_COLORS)],
))
info = DeviceInfo(
device_id=device_id,
name=f"NI-DAQmx ({ni_device})",
device_type=self.DEVICE_TYPE,
description=f"NI-DAQmx β {num_analog} AI, {num_di} DI, {num_do} DO",
manufacturer="National Instruments",
icon=self.ICON,
channels=channels,
)
super().__init__(info)
self._output_state: Dict[str, int] = {f"do{i}": 0 for i in range(num_do)}
self._ai_layer = None
self._ni_in_task = None
self._ni_out_task = None
# ββ BaseDevice ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def connect(self) -> bool:
self._last_error = ""
if self.simulate:
self.status = DeviceStatus.SIMULATED
return True
ok = True
try:
if self._num_analog > 0:
ai_ids = [ch.channel_id for ch in self.info.channels
if ch.channel_id.startswith("ai")]
self._ai_layer = NidaqmxLayer(
device_name=self._ni_device,
channels=ai_ids,
min_val=self._min_v,
max_val=self._max_v,
simulate=False,
)
ok = ok and self._ai_layer.start()
if self._num_di > 0 or self._num_do > 0:
ok = ok and self._ni_digital_connect()
except Exception as e:
self._last_error = str(e)
ok = False
self.status = DeviceStatus.CONNECTED if ok else DeviceStatus.ERROR
return ok
def _ni_digital_connect(self) -> bool:
try:
import nidaqmx # type: ignore
from nidaqmx.constants import LineGrouping # type: ignore
if self._num_di > 0:
self._ni_in_task = nidaqmx.Task()
for i in range(self._num_di):
self._ni_in_task.di_channels.add_di_chan(
f"{self._ni_device}/port0/line{i}",
line_grouping=LineGrouping.CHAN_PER_LINE,
)
self._ni_in_task.start()
if self._num_do > 0:
self._ni_out_task = nidaqmx.Task()
for i in range(self._num_do):
self._ni_out_task.do_channels.add_do_chan(
f"{self._ni_device}/port1/line{i}",
line_grouping=LineGrouping.CHAN_PER_LINE,
)
self._ni_out_task.start()
return True
except Exception as e:
self._last_error = str(e)
return False
def disconnect(self) -> None:
if self._ai_layer:
try:
self._ai_layer.stop()
except Exception:
pass
self._ai_layer = None
for task in (self._ni_in_task, self._ni_out_task):
if task:
try:
task.stop()
task.close()
except Exception:
pass
self._ni_in_task = None
self._ni_out_task = None
self.status = DeviceStatus.DISCONNECTED
def read_channels(self) -> Dict[str, float]:
if self.simulate:
return self._sim_read()
result = {}
if self._ai_layer:
try:
result.update(self._ai_layer.read())
except Exception:
pass
try:
if self._ni_in_task:
vals = self._ni_in_task.read()
di_chs = [c for c in self.info.channels if c.channel_id.startswith("di")]
for i, ch in enumerate(di_chs):
result[ch.channel_id] = float(vals[i] if isinstance(vals, list) else vals)
except Exception:
pass
for ch in (c for c in self.info.channels if c.channel_id.startswith("do")):
result[ch.channel_id] = float(self._output_state.get(ch.channel_id, 0))
return result
def _sim_read(self) -> Dict[str, float]:
import math, time
t = time.time()
result = {}
for i, ch in enumerate([c for c in self.info.channels if c.channel_id.startswith("ai")]):
result[ch.channel_id] = math.sin(t + i) * (self._max_v * 0.5)
for ch in (c for c in self.info.channels if c.channel_id.startswith("di")):
result[ch.channel_id] = 0.0
for ch in (c for c in self.info.channels if c.channel_id.startswith("do")):
result[ch.channel_id] = float(self._output_state.get(ch.channel_id, 0))
return result
def write_channel(self, channel_id: str, value: Any) -> bool:
cid = channel_id.strip()
if cid.startswith("do"):
self._output_state[cid] = int(bool(value))
if not self.simulate and self._ni_out_task:
try:
do_chs = [c for c in self.info.channels if c.channel_id.startswith("do")]
states = [self._output_state.get(c.channel_id, 0) for c in do_chs]
self._ni_out_task.write(states)
except Exception as e:
print(f"[NidaqmxDevice] write failed: {e}")
return True
return False
def get_save_config(self) -> dict:
return {
"device_type": self.DEVICE_TYPE,
"device_id": self.info.device_id,
"name": self.info.name,
"num_analog": self._num_analog,
"min_v": self._min_v,
"max_v": self._max_v,
"num_di": self._num_di,
"num_do": self._num_do,
"simulate": self.simulate,
"ni_device": self._ni_device,
}
def get_config_widget(self) -> QWidget:
return NidaqmxConfigWidget(self)
def switch_backend(self, simulate: bool, ni_device: str,
min_v: float, max_v: float) -> None:
was_running = self.status in (DeviceStatus.CONNECTED, DeviceStatus.SIMULATED)
if was_running:
self.disconnect()
self.simulate = simulate
self._ni_device = ni_device
self._min_v = min_v
self._max_v = max_v
if was_running:
self.connect()
# ββ NI scanner thread βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class _NIScanThread(QThread):
done = pyqtSignal(list)
def run(self):
try:
import nidaqmx # type: ignore
devs = [(d.name, d.product_type) for d in nidaqmx.system.System().devices]
except Exception:
devs = []
self.done.emit(devs)
# ββ Config widget βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class NidaqmxConfigWidget(QWidget):
def __init__(self, device: NidaqmxDevice):
super().__init__()
self.device = device
self._scanner = None
self._build()
def _build(self):
root = QVBoxLayout(self)
root.setContentsMargins(10, 14, 10, 10)
root.setSpacing(12)
self.setMinimumWidth(420)
# ββ NI settings βββββββββββββββββββββββββββββββββββββββββββββββββββ
ni_grp = QGroupBox("NI-DAQmx Settings")
ni_form = QFormLayout(ni_grp)
ni_form.setContentsMargins(10, 16, 10, 10)
self.ni_dev_edit = QLineEdit(self.device._ni_device)
ni_form.addRow("NI Device:", self.ni_dev_edit)
self.min_v_spin = QDoubleSpinBox()
self.min_v_spin.setRange(-100.0, 0.0)
self.min_v_spin.setValue(self.device._min_v)
self.min_v_spin.setSuffix(" V")
ni_form.addRow("Min Voltage:", self.min_v_spin)
self.max_v_spin = QDoubleSpinBox()
self.max_v_spin.setRange(0.0, 100.0)
self.max_v_spin.setValue(self.device._max_v)
self.max_v_spin.setSuffix(" V")
ni_form.addRow("Max Voltage:", self.max_v_spin)
self.sim_chk = QCheckBox("Simulation Mode (no hardware)")
self.sim_chk.setChecked(self.device.simulate)
from core.app_settings import is_developer_mode
self.sim_chk.setVisible(is_developer_mode())
ni_form.addRow(self.sim_chk)
scan_row = QHBoxLayout()
self._scan_btn = QPushButton("π Scan NI Devices")
self._scan_btn.setObjectName("addTraceBtn")
self._scan_btn.clicked.connect(self._scan_ni)
self._scan_lbl = QLabel("")
self._scan_lbl.setObjectName("traceSource")
scan_row.addWidget(self._scan_btn)
scan_row.addWidget(self._scan_lbl, 1)
ni_form.addRow(scan_row)
self._ni_list = QListWidget()
self._ni_list.setObjectName("portList")
self._ni_list.setMaximumHeight(80)
self._ni_list.itemClicked.connect(self._on_ni_selected)
ni_form.addRow(self._ni_list)
apply_btn = QPushButton("Apply & Reconnect")
apply_btn.setObjectName("applyButton")
apply_btn.clicked.connect(self._apply)
ni_form.addRow(apply_btn)
root.addWidget(ni_grp)
# ββ Diagnostics βββββββββββββββββββββββββββββββββββββββββββββββββββ
diag_grp = QGroupBox("Status")
diag_lay = QVBoxLayout(diag_grp)
diag_lay.setContentsMargins(10, 16, 10, 10)
self._diag_lbl = QLabel()
self._diag_lbl.setObjectName("traceSource")
self._diag_lbl.setWordWrap(True)
diag_lay.addWidget(self._diag_lbl)
root.addWidget(diag_grp)
root.addStretch()
self._refresh_diag()
def _refresh_diag(self):
lines = [
f"NI Device: {self.device._ni_device}",
f"Simulate: {self.device.simulate}",
f"Status: {self.device.status.value}",
]
if self.device._last_error:
lines.append(f"Error: {self.device._last_error}")
self._diag_lbl.setText("\n".join(lines))
def _scan_ni(self):
self._scan_btn.setEnabled(False)
self._scan_lbl.setText("Scanningβ¦")
self._ni_list.clear()
self._scanner = _NIScanThread()
self._scanner.done.connect(self._on_ni_found)
self._scanner.start()
def _on_ni_found(self, devices):
self._scan_btn.setEnabled(True)
self._ni_list.clear()
if not devices:
self._scan_lbl.setText("No NI devices found")
item = QListWidgetItem(" No NI devices detected")
item.setFlags(item.flags() & ~Qt.ItemFlag.ItemIsSelectable)
self._ni_list.addItem(item)
else:
self._scan_lbl.setText(f"{len(devices)} found β click to select")
for name, product in devices:
label = f" {name}"
if product:
label += f" β {product}"
item = QListWidgetItem(label)
item.setData(Qt.ItemDataRole.UserRole, name)
self._ni_list.addItem(item)
def _on_ni_selected(self, item: QListWidgetItem):
name = item.data(Qt.ItemDataRole.UserRole)
if name:
self.ni_dev_edit.setText(name)
def _apply(self):
self.device.switch_backend(
simulate=self.sim_chk.isChecked(),
ni_device=self.ni_dev_edit.text().strip() or "Dev1",
min_v=self.min_v_spin.value(),
max_v=self.max_v_spin.value(),
)
self._refresh_diag()
|