شِفر (کود) جستجو

Using Melexis Non-Contact MLX90614 Infrared Thermometer with ESP32 over Bluetooth

Using Melexis Non-Contact MLX90614 Infrared Thermometer with ESP32 over Bluetooth

In this tutorial, you will learn how to display temperature on a mobile phone over Bluetooth using an ESP32 Arduino board with an MLX90614 infrared non-contact temperature sensor.

🔴Infrared non-contact temperature sensor

337-Arduino Code to measure Temperature using MLX90614 with ESP32
زبان: C++
/*
 * //*
 */
 *
 *
 * This is Arduino code to Measure Temperature over Bluetooth using
 MLX90614 with ESP32

 * Watch video instruction for this code: https: // youtu.be/HpsvNIAtjm4

 * Written/updated by Ahmad Shamshiri for Robojax Video channel www.Robojax.com
 * Date: July 01, 2020, in Ajax, Ontario, Canada

 Related Videos:
 Related videos:
Introduction to MLX90614 Non-Contact https: // youtu.be/cFDSqiEIunw
Display Temperature on LCD from MLX90614: https: // youtu.be/_iO2L4P_irw
Measure temperature using MLX90614 Over WiFi:

 * this code has been downloaded from https: // robojax.com

 * Get this code and other Arduino codes from Robojax.com
Learn Arduino step by step in structured course with all material, wiring diagram and library
all in once place. Purchase My course on Udemy.com http: // robojax.com/L/?id=62

****************************
Get early access to my videos via Patreon and have  your name mentioned at end of very
videos I publish on YouTube here: http: // robojax.com/L/?id=63 (برای دیدن لیست مشتریان من، این ویدیو را تا انتها تماشا کنید)
****************************

or make donation using PayPal http: // robojax.com/L/?id=64

 *  * This code is "AS IS" without warranty or liability. Free to be used as long as you keep this note intact.*
 * This code has been download from Robojax.com
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https: // www.gnu.org/licenses/>.
 */

#include <Wire.h>
#include <Adafruit_MLX90614.h>
char *typeName[]={"Object: ","Ambient: "};
float tempC, tempF, tempK, tempCA, tempFA, tempKA;
int type=1; // ۱=C، ۲=F، ۳=K،
int showAmbient =1; // ۱=بله، ۰=خیر

Adafruit_MLX90614 mlx = Adafruit_MLX90614();

#include "BluetoothSerial.h"
#if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED)
#error Bluetooth is not enabled! Please run `make menuconfig` to and enable it
#endif

BluetoothSerial SerialBT;
int inData;

char receivedChar; // مقدار دریافتی به صورت CHAR در این متغیر ذخیره خواهد شد.

void setup() {
  Serial.begin(115200);
  SerialBT.begin("ESP32_Robojax"); // نام دستگاه بلوتوث
  Serial.println("The device started, now you can pair it with bluetooth!");
  Serial.println("Search for ESP32_Robojax device and Pair your phone to ESP32_Robojax");

     mlx.begin();
 // Robojax.com MLX90614 با بلوتوث ESP32

}

void loop() {
   getTemp();
 // Robojax.com MLX90614 با بلوتوث ESP32
  if (Serial.available()) {
 // تابع ()SerialBT.write("خواندن سریال");

  }
  while (SerialBT.available() ) {
    receivedChar =(char)SerialBT.read();
    inData += receivedChar;
        if (receivedChar == '\n')
        {
 // SerialBT.print("Received:"); // نوشتن در برنامه BT
 // SerialBT.println(inData); // نوشتن روی برنامه‌ی BT

 // Serial.print("Received:"); // چاپ روی مانیتور سریال
 // // چاپ روی مانیتور سریال

    type = inData;
    sendTemp();

           inData = 0; // بافر دریافتی را پاک کنید

        } // اگر (دریافت شد)


  } // در حالی که

 // سریال.println(servo1Angle);
        delay(20);
 // Robojax.com MLX90614 با بلوتوث ESP32
} // حلقه اینجا تمام می‌شود

void sendTemp()
{

 // Robojax.com MLX90614 با بلوتوث ESP32
    if(type ==24)
    {
      SerialBT.print(typeName[0]);
      SerialBT.print(tempC); // دمای جسم
      SerialBT.println("°C");
      Serial.print("Temperature:"); // چاپ روی مانیتور سریال
      Serial.println(tempC); // چاپ روی مانیتور سریال
      if(showAmbient)
      {
        SerialBT.print(typeName[1]);
        SerialBT.print(tempCA); // دمای محیط
        SerialBT.println("°C");
      }
    }
    if(type ==25)
    {
      SerialBT.print(typeName[0]);
      SerialBT.print(tempF); // دمای جسم
      SerialBT.println("°F");
      if(showAmbient)
      {
        SerialBT.print(typeName[1]);
        SerialBT.print(tempFA); // دمای محیط
        SerialBT.println("°F");
      }
    }
    if(type ==26)
    {
      SerialBT.print(typeName[0]);
      SerialBT.print(tempC); // دمای جسم
      SerialBT.println("°K");
      if(showAmbient)
      {
        SerialBT.print(typeName[1]);
        SerialBT.print(tempKA); // دمای محیط
        SerialBT.println("°K");
      }
    }
 // Robojax.com MLX90614 با بلوتوث ESP32
} // sendTemp اینجا به پایان می‌رسد



/*
 * @brief دما یا رطوبت نسبی را برمی‌گرداند.
 * @return یکی از مقادیر بالا را برمی‌گرداند.
 * 
 * کاربرد: برای دریافت فارنهایت تایپ کنید: getTemp('F')
 * 
 * برای چاپ آن روی مانیتور سریال Serial.println(getTemp('F'));
 * 
 * نوشته شده توسط احمد شمشیری در 30 مارس 2020.
 * در آژاکس، انتاریو، کانادا
 * www.Robojax.com
 */
void getTemp()
{
 // کد MLX90614 در Robojax.com

    tempC = mlx.readObjectTempC(); // در شیء C
    tempCA = mlx.readAmbientTempC();

    tempF = mlx.readObjectTempF(); // فا. شیء
    tempFA = mlx.readAmbientTempF(); // فاه امبینت

    tempK = tempC + 273.15; // شیء کلوین
    tempKA =  tempCA + 273.15; // کلوین محیطی

 // کد MLX90614 در Robojax.com
} // دریافت تمپ

منابع و مراجع

هنوز هیچ منبعی موجود نیست.

فایل‌ها📁

هیچ فایلی موجود نیست.