I looked at sourcecode of exiftool:
#..............................................................................
# common CameraInfo tag definitions
.
.
.
my %ciCameraTemperature = (
Name => 'CameraTemperature',
Format => 'int8u',
ValueConv => '$val - 128',
ValueConvInv => '$val + 128',
PrintConv => '"$val C"',
PrintConvInv => '$val=~s/ ?C//; $val',
);
Edgar