its weird to me, i use online wersiin of uiflow, its shows 1.4.5. Newer mind.
I based custom block on this file:
https://github.com/stonatm/M5Atom_matrix_library/blob/master/lib/dallas.py
there in a two class which diffirents in one line near return temperature dependent of sensor type
usage:
#run once
import time
from dallas import ds18b20 as sensor
sensor.init( pin )
#reading procedure
sensor.convert ( pin )
time.sleep_ms(750)
print ( sensor.read( pin ) )
This library is simple and have small amount of code but its sacrified to using only one sensor by pin. I don't implemented search rom procedures.