I have data logger from sensor.
Data coming in in HEX.
It is going from log file using parser.
i have something like that:
 410EFC93DE41D805F4413C5E6141F9B4
How to transform the data to DCI or how to transform from HEX to Decimal value
			
			
			
				OK what I have:
I have data: in alarms Message.  62AEE34128F1F8413C5E6141 this data is in 32 bit float hex
Basically I'm  using calc on https://www.h-schmidt.net/FloatConverter/IEEE754.html
I have to transform this data split or so to 3 32 bits values 
62AEE341 -> 41E3AE62 -> I need result  28.460148
28F1F841 -> 41F8F128 -> I need result  31.117752
3C5E6141 -> 41615E3C  ->I need result  14.085506 in netxms somewhere
Is this possible to do in NETXMS?