Random Project

Change from F to C

Before:
‘acrcracktemp’ => {
‘label’ => ‘Rack Inlet Temp’,
‘unit’ => ‘C’,
‘oid’ => ‘.1.3.6.1.4.1.318.1.1.13.3.2.2.2.6.0’,
‘cdef’ => ‘$val * .10’
},

After:
‘acrcracktemp’ => {
‘label’ => ‘Rack Inlet Temp’,
‘unit’ => ‘C’,
‘oid’ => ‘.1.3.6.1.4.1.318.1.1.13.3.2.2.2.6.0’,
‘cdef’ => ‘(($val * .10) – 32) * 5/9’
},