Mlx90614 Proteus Library

: Double-click the sensor in your schematic. In the properties panel, under Program File , browse and select the InfraredSensorsTEP.HEX file you downloaded earlier. Interactive Simulation : Most Proteus libraries include a

#include #include Adafruit_MLX90614 mlx = Adafruit_MLX90614(); void setup() Serial.begin(9600); Serial.println("MLX90614 Proteus Simulation Test"); if (!mlx.begin()) Serial.println("Error connecting to MLX90614 sensor!"); while (1); void loop() Serial.print("Ambient Temp = "); Serial.print(mlx.readAmbientTempC()); Serial.print(" *C\tObject Temp = "); Serial.print(mlx.readObjectTempC()); Serial.println(" *C"); delay(1000); Use code with caution. Compiling and Exporting the Binary In the Arduino IDE, go to > Export Compiled Binary . Locate the generated .hex file in your sketch folder. Step 5: Running the Simulation Go back to Proteus. mlx90614 proteus library

You need a sketch to run the simulation. Install the "Adafruit MLX90614" library in your Arduino IDE first. : Double-click the sensor in your schematic

If you want to customize your simulation setup, let me know: Compiling and Exporting the Binary In the Arduino