Skip to content
Snippets Groups Projects

Resolve L2SDP-1068

Merged Pieter Donker requested to merge L2SDP-1068 into master
3 files
+ 30
7
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 3
1
@@ -106,7 +106,6 @@ def main():
@@ -106,7 +106,6 @@ def main():
if args.read:
if args.read:
data = client.read(args.read[0])
data = client.read(args.read[0])
success = False if data is None else True
success = False if data is None else True
if not success:
if not success:
print(f"opcua.read {args.read[0]} not available")
print(f"opcua.read {args.read[0]} not available")
else:
else:
@@ -133,6 +132,9 @@ def main():
@@ -133,6 +132,9 @@ def main():
col = 0
col = 0
node = client.gn_first_fpga
node = client.gn_first_fpga
for d in data:
for d in data:
 
if node not in nodelist:
 
node += 1
 
continue
line.append(f"{str(d):4s}")
line.append(f"{str(d):4s}")
col += 1
col += 1
if col == cols:
if col == cols:
Loading