We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a python list in my embedded python script and I want to write it to a PV. But, there are errors while I am trying to do this.
I have tried the below
pv_name = "SIM:EXAMPLE" values = [1,2,3,4,5,6,7]
PVUtil.writePV(pv_name,values,100)
pv_name = PVUtil.createPV(pv_name ,100) pv_name.setValue(values) PVUtil.releasePV(pv_name)
Is there any way I can do this? @kasemir
The text was updated successfully, but these errors were encountered:
To pass arrays from jython to java code, see https://www.jython.org/jython-old-sites/archive/21/docs/jarray.html
Sorry, something went wrong.
Thanks!!!
No branches or pull requests
I have a python list in my embedded python script and I want to write it to a PV. But, there are errors while I am trying to do this.
I have tried the below
Is there any way I can do this?
@kasemir
The text was updated successfully, but these errors were encountered: