From 55c96ffe4f0bcb0c985c284f892d5fd2462232d0 Mon Sep 17 00:00:00 2001 From: focus Date: Tue, 30 Apr 2024 09:22:45 +0200 Subject: [PATCH] add FW cfg --- cfg/main/fw_cfg.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 cfg/main/fw_cfg.py diff --git a/cfg/main/fw_cfg.py b/cfg/main/fw_cfg.py new file mode 100644 index 0000000..09ca326 --- /dev/null +++ b/cfg/main/fw_cfg.py @@ -0,0 +1,24 @@ +Node('ft.config.sea.psi.ch', + 'FW ILL furnace with W5 thermnocouple (1800 K), old power rack', +) + +Mod('sea_main', + 'frappy_psi.sea.SeaClient', + 'main sea connection for fw.config', + config='fw.config', + service='main', +) + +Mod('ts', + 'frappy_psi.sea.SeaDrivable', '', + io='sea_main', + sea_object='tt', + rel_paths=['.', 'ts'], +) + +Mod('t2', + 'frappy_psi.sea.SeaReadable', '', + io='sea_main', + sea_object='tt', + rel_paths=['t2'], +)