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