Create __init__.py
This allows to use the library as a module
Hello, Many thanks for this excellent code I could read my sensor perfectly. Could you please give an idea on how to read two sensor connected parallell?
Hello, You need to change the sensor adress the use the following code with your address:
from mlx90614 import MLX90614
thermometer_address = 0x5a thermometer_address1 = 0x5b
thermometer = MLX90614(thermometer_address) thermometer1 = MLX90614(thermometer_address1)
print thermometer.get_obj_temp() print thermometer1.get_obj_temp()
Thank You very mutch for that , I am looking for how to change MLX90614 adress, but Iam not finding, do have any suggest?
I couldn't find any code to change the sensor address in python, and I don't have this sensor anymore to test it.
If you have any arduino laying around you could change the address on an arduino.
Hello, Tiago Many thanks to your help. I did what You have recomended and every thing works beutifully Thank You Yours André.
Hello Andre, nice to hear, good luck on your project