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

feat(vucm): add integration with NI-cDAQ #19

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

anataty
Copy link

@anataty anataty commented Feb 25, 2025

No description provided.

Copy link
Member

@rnovatorov rnovatorov left a 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.

Comment on lines 10 to 12
def parse_bytes(bytes):
return bytes.decode("utf-8")
Copy link
Member

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").

Comment on lines 69 to 79
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:
Copy link
Member

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?

@anataty anataty force-pushed the ty/ni-daq/0 branch 2 times, most recently from 7becb8f to 28834b8 Compare March 25, 2025 16:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants