• عملة
    • USD
    • ريال سعودي
ADD ANYTHING HERE OR JUST REMOVE IT…
  • أخبارنا
  • توصلوا معتا
  • الأسئلة الشائعة
اختر الفئة
  • اختر الفئة
  • 3.7v LiFePO4 cells
  • 3D Parenting
  • Arduino Kit
  • DC Motor
  • electronics
  • Sensors
تسجيل الدخول/التسجيل
0 قائمة الرغبات
0 قارن
18 البنود 1.325 ر.س
قائمة
18 البنود 1.325 ر.س
تصفح الفئات
  • Sensors
  • Arduino Kit
  • DC Motor
  • 3.7v LiFePO4 cells
  • Electronics
  • الصفحة الرئيسية
  • المتجر
  • من نحن
  • تواصلوا معنا
  • أخبارنا
تم تحديد قائمة خاطئة
-13%
اضغط للتكبير
الرئيسية Sensors MQ-5 Gas Sensor
Arduino uno r3 SMD
Arduino uno r3 SMD 35 ر.س السعر الأصلي هو: 35 ر.س.26 ر.سالسعر الحالي هو: 26 ر.س.
العودة إلى المنتجات
Water Level Sensor
Water Level Sensor 5 ر.س السعر الأصلي هو: 5 ر.س.4 ر.سالسعر الحالي هو: 4 ر.س.

MQ-5 Gas Sensor

15 ر.س السعر الأصلي هو: 15 ر.س.13 ر.سالسعر الحالي هو: 13 ر.س.

  • حول هذا المنتج
  • مستشعر غاز MQ-5
  • حساس لغاز البترول المسال، والغاز الطبيعي، وغاز الفحم
  • يرتفع جهد الخرج مع زيادة تركيز الغازات المقاسة
  • استجابة سريعة واستعادة للإشارة، حساسية قابلة للتعديل، مؤشر خرج الإشارة
  • الطاقة: ٢.٥ فولت ~ ٥.٠ فولت، الأبعاد: ٤٠ مم × ٢١ مم، حجم فتحات التركيب: ٢ مم
قارن
إضافة إلى مفضلة

Size and packaging guidelines

Fermentum scelerisque hendrerit parturient nullam enim lobortis litora parturient dictumst.

Potenti a quisque tincidunt venenatis adipiscing parturient fermentum nisl tincidunt amentu.

Scelerisque conubia lobortis a condimentum ad eleifend dui integer maecenas habitant nostra.

Specification Chair Armchair Sofas
Height 37" 42" 42"
Width 26.5" 32.5" 142"
Depth 19.5" 22.5" 24.5"
Assembly Required No No Yes
Packaging Type Box Box Box
Package Weight 55 lbs. 64 lbs. 180 lbs.
Packaging Dimensions 27" x 26" x 39" 45" x 35" x 24" 46" x 142" x 25"
دليل المقاسات
التصنيف: Sensors
حصة:
  • الوصف
  • Shipping & Delivery
الوصف

Gas Sensor(MQ5)

The Grove – Gas Sensor(MQ5) module is useful for gas leakage detection (in home and industry). It is suitable for detecting H2, LPG, CH4, CO, Alcohol. Due to its high sensitivity and fast response time, measurements can be taken as soon as possible. The sensitivity of the sensor can be adjusted by using the potentiometer.

Specification​

Features​

  • Wide detecting scope
  • Stable and long life
  • Fast response and High sensitivity

Specification​

ItemParameterMinTypicalMaxUnit
VCCWorking Voltage4.955.1V
PHHeating consumption0.5–800mW
RLLoad resistanceadjustable
RHHeater resistance–31±10%–Ω
RsSensing Resistance10–60kΩ
ScopeDetecting Concentration200–10000ppm

Applications​

  • Gas leakage detection.
  • Toys.

Hardware Overview​

This is an Analog output sensor. This needs to be connected to any one Analog socket in Grove Base Shield. The examples used in this tutorial makes uses of A0 analog pin. Connect this module to the A0 port of Base Shield.

It is possible to connect the Grove module to Arduino directly by using jumper wires by using the connection as shown in the table below:

ArduinoGas Sensor
5VVCC
GNDGND
NCNC
Analog A0SIG

The output voltage from the Gas sensor increases when the concentration of gas increases. Sensitivity can be adjusted by varying the potentiometer. Please note that the best preheat time for the sensor is above 24 hours. For detailed information about the MQ-5 sensor, please refer to the data-sheet provided in Resources section.

Platforms Supported​

ArduinoRaspberry Pi
pirpir
caution
The platforms mentioned above as supported is/are an indication of the module's software or theoritical compatibility. We only provide software library or code examples for Arduino platform in most cases. It is not possible to provide software library / demo code for all possible MCU platforms. Hence, users have to write their own software library.

##Getting Started

Play With Arduino​

Materials required

pir

Connect the Grove – Gas Sensor(MQ5) to A0 port as shown in the picture above.

Gas Detection : Basic Example​

In this example, the sensor is connected to A0 pin. The voltage read from the sensor is displayed. This value can be used as a threshold to detect any increase/decrease in gas concentration.

Note

You need an extra tool to find a certain threshold for various air condition. And then set the threshold in code.

void setup() {
    Serial.begin(9600);
}

void loop() {
    float sensor_volt;
    float sensorValue;

    sensorValue = analogRead(A0);
    sensor_volt = sensorValue/1024*5.0;

    Serial.print("sensor_volt = ");
    Serial.print(sensor_volt);
    Serial.println("V");
    delay(1000);
}

Measurement: Approximation​

This example demonstrates a way to know the approximate concentration of Gas. As per the data-sheet of the MQ5 sensors, these equations are tested for standard conditions and are not calibrated. It may vary based on the change in temperature or humidity.

  1. Keep the Gas Sensor in a clean-air environment. Upload the program below.
void setup() {
    Serial.begin(9600);
}

void loop() {
    float sensor_volt;
    float RS_air; //  Get the value of RS via in a clear air
    float R0;  // Get the value of R0 via in H2
    float sensorValue;

        /*--- Get a average data by testing 100 times ---*/
    for(int x = 0 ; x < 100 ; x++)
    {
        sensorValue = sensorValue + analogRead(A0);
    }
    sensorValue = sensorValue/100.0;
        /*-----------------------------------------------*/

    sensor_volt = sensorValue/1024*5.0;
    RS_air = (5.0-sensor_volt)/sensor_volt; // omit *RL
    R0 = RS_air/6.5; // The ratio of RS/R0 is 6.5 in a clear air from Graph (Found using WebPlotDigitizer)

    Serial.print("sensor_volt = ");
    Serial.print(sensor_volt);
    Serial.println("V");

    Serial.print("R0 = ");
    Serial.println(R0);
    delay(1000);
}
  1. Then, open the serial monitor of Arduino IDE. Write down the value of R0 and this needs to be used in the next program. Please node down the R0 after the reading stabilizes.

Replace the R0 below with value of R0 tested above . Expose the sensor to any one of the gas listed above.

void setup() {
    Serial.begin(9600);
}

void loop() {

    float sensor_volt;
    float RS_gas; // Get value of RS in a GAS
    float ratio; // Get ratio RS_GAS/RS_air
    int sensorValue = analogRead(A0);
    sensor_volt=(float)sensorValue/1024*5.0;
    RS_gas = (5.0-sensor_volt)/sensor_volt; // omit *RL

          /*-Replace the name "R0" with the value of R0 in the demo of First Test -*/
    ratio = RS_gas/R0;  // ratio = RS/R0
          /*-----------------------------------------------------------------------*/

    Serial.print("sensor_volt = ");
    Serial.println(sensor_volt);
    Serial.print("RS_ratio = ");
    Serial.println(RS_gas);
    Serial.print("Rs/R0 = ");
    Serial.println(ratio);

    Serial.print("\n\n");

    delay(1000);

}

Now, we can get the concentration of gas from the figure below.

pir

According to the figure, we can see that the minimum concentration we can test is 200ppm and the maximum is 10000ppm, in a other word, we can get a concentration of gas between 0.02% and 1%. However, we can’t provide a formula because the relation between ratio and concentration is nonlinear.

Play With Raspberry Pi (With Grove Base Hat for Raspberry Pi)​

Suggest Reading / References

  • How to choose a Gas Sensor
  • What’s LEL

Schematic

  • Grove Gas Sensor – EAGLE (Schematic and Board) files
  • Grove Gas Sensor – PDF Schematic

Datasheet

  • MQ-5 Datasheet
Shipping & Delivery
wd-ship-1
wd-ship-2

MAECENAS IACULIS

Vestibulum curae torquent diam diam commodo parturient penatibus nunc dui adipiscing convallis bulum parturient suspendisse parturient a.Parturient in parturient scelerisque nibh lectus quam a natoque adipiscing a vestibulum hendrerit et pharetra fames nunc natoque dui.

ADIPISCING CONVALLIS BULUM

  • Vestibulum penatibus nunc dui adipiscing convallis bulum parturient suspendisse.
  • Abitur parturient praesent lectus quam a natoque adipiscing a vestibulum hendre.
  • Diam parturient dictumst parturient scelerisque nibh lectus.

Scelerisque adipiscing bibendum sem vestibulum et in a a a purus lectus faucibus lobortis tincidunt purus lectus nisl class eros.Condimentum a et ullamcorper dictumst mus et tristique elementum nam inceptos hac parturient scelerisque vestibulum amet elit ut volutpat.

منتجات ذات صلة

-20%
قارن

Water Level Sensor

Sensors
5 ر.س السعر الأصلي هو: 5 ر.س.4 ر.سالسعر الحالي هو: 4 ر.س.
  • وحدة استشعار مستوى مياه الأمطار للكشف عن عمق سطح السائل وارتفاعه لأردوينو
إضافة إلى مفضلة
إضافة إلى السلة
عرض سريع
-20%
قارن

Sound Sensor

Sensors
10 ر.س السعر الأصلي هو: 10 ر.س.8 ر.سالسعر الحالي هو: 8 ر.س.
  • مستشعر صوت أردوينو
  • جهد التشغيل: ٣.٣ فولت إلى ٥ فولت
  • مخرج رقمي (٠ و١ عالي/منخفض)
  • مزود بفتحة براغي ثابتة لسهولة التركيب
  • حجم لوحة الدوائر المطبوعة: ٣.٢ سم × ١.٧ سم
إضافة إلى مفضلة
إضافة إلى السلة
عرض سريع
-17%
قارن

Arduino Gyroscope Sensor GY-6500

Sensors
30 ر.س السعر الأصلي هو: 30 ر.س.25 ر.سالسعر الحالي هو: 25 ر.س.
  • Arduino Gyroscope Sensor GY-6500
  • Material: gold
  • Style: Modern
  • Maximum Supply Voltage: 5 Volts (DC)
  • Measuring Range: ± 250 - ± 2000 °/s, ± 2 - ± 16g
  • For Arduino
إضافة إلى مفضلة
إضافة إلى السلة
عرض سريع
-13%
قارن

MAX30100 Sensor

Sensors
20 ر.س السعر الأصلي هو: 20 ر.س.18 ر.سالسعر الحالي هو: 18 ر.س.
انقر فوق وحدة استشعار MAX30102 ذات استهلاك الطاقة المنخفض للغاية لـ Arduino
إضافة إلى مفضلة
إضافة إلى السلة
عرض سريع
-17%
قارن

5 Channel Tracing Sensor Module IR Infrared Detector

Sensors
24 ر.س السعر الأصلي هو: 24 ر.س.20 ر.سالسعر الحالي هو: 20 ر.س.
5 Channel Tracing Sensor Module IR Infrared DetectorLine Sensorمستشعر تتبع مدمج خماسي الاتجاهات، يتميز بحساسية عالية للتأثيرات البيئية البسيطة، ويتتبع بدقة الخطوط السوداء المعقدة (خطوط بيضاء للتتبع)، مما يتيح تتبعًا بسيطًا للخطوط السوداء بسهولة أكبر.مستشعر الأشعة تحت الحمراء الحاجز مدمج، مع مسافة غير مرئية عن طريق تعديل المقاومة المتغيرة.صُمم مستشعر لمس لتصميم الروبوت.جميع إشارات الإخراج رقمية (عالية ومنخفضة)، متصلة بوحدة التحكم الدقيقة.جميع مصابيح LED مزودة بمؤشر حالة خرج المستشعر لتسهيل تصحيح الأخطاء.
إضافة إلى مفضلة
إضافة إلى السلة
عرض سريع
-17%
قارن

IR Sensor

Sensors
6 ر.س السعر الأصلي هو: 6 ر.س.5 ر.سالسعر الحالي هو: 5 ر.س.
  • وحدة استشعار تجنب العوائق بالأشعة تحت الحمراء تُستخدم على نطاق واسع في تجنب عوائق الروبوتات، وسيارات تجنب العوائق، وحساب الخطوط، وتتبع الخطوط بالأبيض والأسود، وغيرها.
  • تقيس الوحدة مسافة تتراوح بين 2 و30 سم، بزاوية كشف 35 درجة، ويمكن تعديل المسافة للكشف عن الجهد.
  • يمكن توصيل وحدة استشعار منفذ الإخراج مباشرةً بمنفذ الإدخال/الإخراج في وحدة التحكم الدقيقة، مما يسمح بتشغيل مرحل 5 فولت مباشرةً.
  • تحتوي الوحدة على زوج من أنابيب الإرسال والاستقبال بالأشعة تحت الحمراء، حيث تُصدر هذه الأنابيب ترددًا معينًا. عند اكتشاف اتجاه التقاء العوائق (سطح عاكس)، ينعكس أنبوب الاستقبال بالأشعة تحت الحمراء. بعد معالجة دائرة المقارنة، يضيء مؤشر أخضر، وفي الوقت نفسه، تُخرج واجهة إخراج الإشارة إشارة رقمية (إشارة منخفضة المستوى).
  • يمكن استخدامها مع وحدات إمداد الطاقة بجهد 3-5 فولت تيار مستمر. كما تحتوي على مؤشر طاقة أحمر.
إضافة إلى مفضلة
إضافة إلى السلة
عرض سريع
-14%
قارن

Fire Sensor Arduino

Sensors
7 ر.س السعر الأصلي هو: 7 ر.س.6 ر.سالسعر الحالي هو: 6 ر.س.
  • مواصفات
  • تتكون هذه الوحدة من مستقبل ضوء LED للأشعة تحت الحمراء بقطر 5 مم، ومقارن تفاضلي مزدوج LM393، ومقاوم تشذيب 3296 واط، و6 مقاومات، ومصباحي LED للمؤشر، و4 أطراف توصيل ذكر.
  • تكتشف وحدة استشعار اللهب  ضوء الأشعة تحت الحمراء المنبعث من الحريق. تحتوي هذه الوحدة على مخرجات رقمية وتناظرية، ومقاوم لضبط الحساسية. تُستخدم عادةً في أنظمة كشف الحرائق.
  • متوافقة مع Arduino وRaspberry Pi وESP32 وغيرها من المتحكمات الدقيقة.
إضافة إلى مفضلة
إضافة إلى السلة
عرض سريع
-7%
قارن

Joystick Sensor

Sensors
7 ر.س السعر الأصلي هو: 7 ر.س.7 ر.سالسعر الحالي هو: 7 ر.س.
  • العلامة التجارية:
  • الأجهزة المتوافقة: بلاي ستيشن ٢ , Arduino
  • نوع وحدة التحكم: عصا تحكم
  • تقنية التوصيل: يو إس بي
  • اللون: أسود
إضافة إلى مفضلة
إضافة إلى السلة
عرض سريع

teslatechnology

  • عدن , انماء , المرحلة الخامسة , بجانب مسجد سعد بن ابي وقاص
  • Phone: (0967) 781-500910
  • WhatsApp: (0967) 781-500910
Recent Posts
Our stores
USEFUL LINKS
  • سياسة الخصوصية
  • أخبارنا
  • Our Sitemap
Footer Menu
  • Instagram profile
  • تواصلوا معنا
  • اخبارنا
tesla technology
  • قائمة
  • الفئات
  • Sensors
  • Arduino Kit
  • DC Motor
  • 3.7v LiFePO4 cells
  • Electronics
  • الصفحة الرئيسية
  • المتجر
  • من نحن
  • تواصلوا معنا
  • قائمة الرغبات
  • قارن
  • تسجيل الدخول/التسجيل
عربة التسوق
إغلاق
تسجيل الدخول
إغلاق


فقدت كلمة المرور الخاصة بك ؟

أي حساب حتى الآن ؟

إنشاء حساب
المتجر
0 قائمة الرغبات
18 البنود عربة التسوق
حسابي