You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@med1306 Hello :). You are right, I think it should be easier just to add the exit command before the RT, as the Reset is used to "warm-reset" the sensor is not used anywhere else.
If you leave python script while measuring the MLX90393 a power-on reset is needed to communicate again with the MLX90393.
For avoid that i just put before the reset command the exit command.
see page 23 in MLX90393-Datasheet-Melexis-953267.pdf
" It is recommended to perform an ‘EX’ command before issuing a ‘RT’ command"
here my implementation
def reset(self) -> None:
"""
Performs a software reset of the sensor.
"""
self.exitMode()
MLX90393-Datasheet-Melexis-953267.pdf
The text was updated successfully, but these errors were encountered: