Mini Project Presentation
Mini Project Presentation
Chapter 1 Introduction
Chapter 3 Methodology
• STEP1:Enabling the I2C from raspberrypi setting.Type sudo raspi-config and then go to interfacing
options.
• It will download the library in the zip file name ‘PyMLX90614-0.0.3.tar.gz’. then
extract the folder with the extension of tar -xf file name or use the below command to
do the same.
• If everything works as expected, we can see the below output on our terminal.
• 0x5A represents the address of the sensor as mentioned by the datasheet. The datasheet snippet showing the
same is given below.
NOW, WE WILL RUN MAKE A NEW FILE NAME XYZ.PY AND
WRITE A SAMPLE PROGRAM TO CHECK THE DATA FROM
THE SENSOR. THE CODE FOR THE SAME IS GIVEN BELOW.
• from smbus2 import SMBus
• from mlx90614 import MLX90614
• bus = SMBus(1)
• sensor = MLX90614(bus, address=0x5A)
• print ("Ambient Temperature :", sensor.get_ambient())
• print ("Object Temperature :", sensor.get_object_1())
• bus.close()
ONCE THE FILE IS CREATED, WE WILL RUN IT WITH PYTHON EXTENSION PYTHON
XYZ.PY. THE OUTPUT I RECEIVED IS SHOWN BELOW. I RAN THE PROGRAM MULTIPLE
TIMES TO CHECK IF THE VALUES CHANGE AS I MOVE MY HAND OVER IT.
CONCLUSION
• Since the corona outbreak, it has become very difficult to identify those
who are affected by the virus or not. To solve this issue, temperature
devices are often used to measure body temperature. These devices
have non-contact IR temperature sensors which can measure the body
temperature without any physical contact.
• There are many temperature guns available in the market, but none of
them gives any alert or email notification to higher authorities to take
appropriate actions when the temperature exceeds a particular limit. In
this project, we will interface an IR temperature sensor which will detect
the temperature and display on the screen.
The ability to measure and display tempertaure reading in real life.
The ability to remotely monitor and control temperature setting.
The ability to collect and analyze temperature data over time to identify treands and pattern.
The ability to triggercertain actions based on temperature thresholds (such as turning on a fan
or alerting a user if a temperature becomes too high).
Future Scopes
Monitoring and controlling temperature in industrial and manufacturing environments to
improve efficiency and safety.
Monitoring and controlling temperature in HVAC systems to improve energy efficiency and
comfort.
In addition, this technology could be used in other areas such as in the development of IoT
devices, in the field of Robotics, Smart home automation, and also in security and
surveillance systems.
OU
KY
A N
T H
•