March 2023

This commit is contained in:
root
2023-03-13 16:26:32 +01:00
parent 07ae1f03d4
commit 223ee437d2
30 changed files with 155 additions and 113 deletions
+5 -5
View File
@@ -149,9 +149,9 @@ def process(data, pulse_id, timestamp, params):
# Set bs outputs
output = {}
device, _ = params["up"].split(":", 1)
output[f"{device}:INTENSITY"] = intensity
output[f"{device}:INTENSITY_UJ"] = intensity_uJ
output[f"{device}:XPOS"] = xpos
output[f"{device}:YPOS"] = ypos
output[f"{device}:INTENSITY"] = float(intensity)
output[f"{device}:INTENSITY_UJ"] = float(intensity_uJ)
output[f"{device}:XPOS"] = float(xpos)
output[f"{device}:YPOS"] = float(ypos)
#_logger.info(str(type(intensity)) + " - " +str(type(intensity_uJ)) + " - " +str(type(xpos)) + " - " +str(type(ypos)) + " - " + " - " +str(xpos) + " - " +str(ypos) + " - " )
return output