18 lines
385 B
Python
Executable File
18 lines
385 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import HVLibrary as hv
|
|
|
|
#set_value('03:000:' + Ch_PV_List[1], 5)
|
|
#hv.get_value('03:000:' + hv.Ch_PV_List[1])
|
|
#hv.get_value('03:000:' + hv.Ch_PV_List[0])
|
|
|
|
# index = 14
|
|
# hv.get_value('03:000:' + hv.Ch_PV_List[index], True)
|
|
# cf = hv.get_CtrlField('03:000:' + hv.Ch_PV_List[index])
|
|
# print(cf)
|
|
|
|
bd = hv.Board(3)
|
|
|
|
print( bd.GetTemp())
|
|
|
|
print( bd.Channel[0].GetName() ) |