Problem to call data_connection services

then can you use R13.1?

If you now upgrade from R13.1 to R16.3, will it still see the issue?

1 Like

1.I am reading temperature sensor values in board terminal by cat command like below,
root@swi-mdm9x28-wp:~# cat /sys/bus/i2c/devices/6-0068/iio:device0/in_temp_raw
5210
root@swi-mdm9x28-wp:~# cat /sys/bus/i2c/devices/6-0068/iio:device0/in_temp_scale
1.953125000
root@swi-mdm9x28-wp:~# cat /sys/bus/i2c/devices/6-0068/iio:device0/in_temp_offset
11776
both offset and scale values are constant,

Issue is in raw values it is increasing from 2800 to 8000, I am caluculating temperature value by below formula
temperature = (raw value + offset value) * scale value /1000
temperature = (5210 + 11776) * 1.9531 /1000
= 16,986 * 1.9531 /1000
= 33.1757…
but room temperature should be around 22 to 27, what shouid i do

What about putting in refrigerator?

If the value drops, that means the hardware is working

You might need to build your own mapping table

sir in office we don’t have that ,normally it range from 5000 to 8000 values won’t decrease

what could be the reason

You might need to build your own mapping table

1 Like