-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat(vucm): add integration with NI-cDAQ #19
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @anataty, thanks for your PR!
To check if linters are satisfied please run make lint
locally.
examples/vucm/ni-daq/script.py
Outdated
def parse_bytes(bytes): | ||
return bytes.decode("utf-8") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function can be replaced with mybytes.decode()
which is equivalent to mybytes.decode("utf-8")
.
examples/vucm/ni-daq/script.py
Outdated
break | ||
|
||
await self.send_telemetry( | ||
{ | ||
"status": parse_bytes(data_to_send), | ||
} | ||
) | ||
self.alerts.clear() | ||
|
||
except Exception as e: | ||
self.alerts.add("nidaq_error") | ||
await self.log.error(f"failed to process data: {e}") | ||
|
||
finally: | ||
connection.close() | ||
await asyncio.sleep(1) | ||
|
||
except Exception as e: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You if break
up there, then there'll be no exception to catch down here. Do we really need the inner try-except block?
7becb8f
to
28834b8
Compare
No description provided.