matrix-lite-py
matrix-lite-py copied to clipboard
Printing sensors .read() cuts value off
This only affects the printing of the .read() function.
>> print(sensors.uv.read())
>> 0.003000
The actual value is unaffected
>> print(sensors.uv.read().uv)
>> 0.003000000026077032
Here is the printing function that needs to be changed.