1 Star 0 Fork 0

周一恒/python_ioc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
PV_publish.py 519 Bytes
一键复制 编辑 原始数据 按行查看 历史
周一恒 提交于 2024-05-22 10:01 . add file
from pcaspy import Driver, SimpleServer
class myDriver(Driver):
def __init__(self):
super(myDriver, self).__init__()
def run_pv_publish(pv_dict: dict):
pvdb1 = {pvname: {"type": "float", "unit": "uGy/h"}
for pvname in pv_dict.values()}
server = SimpleServer()
server.createPV(prefix="", pvdb=pvdb1)
driver = myDriver()
print("IOC Server is runing")
while True:
server.process(0.5)
# if __name__ == '__main__':
# main(pv_dict={"123": "北墙"})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zyh-j/python_ioc.git
git@gitee.com:zyh-j/python_ioc.git
zyh-j
python_ioc
python_ioc
master

搜索帮助