আরডুইনো দিয়ে টেম্পারেচার কন্ট্রোল সুইচ – Temperature Controlled Switch
আজকের এক্সপেরিমেন্টে আমরা একটি Temperature controlled switch তৈরী করব। এই প্রজেক্টে আমরা ব্যবহার করব একটি DHT11 Temperature and Humidity Sensor Module। এই সেন্সরকে আরডুইনোর সাথে যুক্ত করলে আমরা সেই স্থানের তাপমাত্রা ও আর্দ্রতা দেখতে পাব। তাপমাত্রা ও আর্দ্রতা দেখানোর জন্য ব্যবহার করা হবে একটি এলসিডি। আরডুইনোর সাথে আরও যুক্ত থাকবে একটি রিলে মডিউল। স্বাভাবিক অবস্থায় রিলে অফ থাকবে। তাপমাত্রা ৩০ ডিগ্রী সেন্টিগ্রেডের বেশি হয়ে গেলে রিলে অন হবে।
এই ধরনের সুইচ কোথায় ব্যবহার করা হয়?
এই ধরনের সুইচের ব্যবহার Temperature controller circuit গুলোতে দেখা যায়। Temperature controller circuit গুলোতে রিলের আউটপুটে হিটার, বাল্ব, ফ্যান ইত্যাদি যুক্ত করা হয়। তাপমাত্রা কমে গেলে বাল্ব,হিটার ইত্যাদির মাধ্যমে তাপমাত্রা বাড়ানো হয়। তাপমাত্রা বেড়ে গেলে ফ্যান চালু করে তাপমাত্রা কমানো হয়।
প্রয়োজনীয় যন্ত্রপাতি | পরিমাণ | লিংক |
Arduino UNO R3/Arduino Mega 2560 | 1 | link |
16×2 LCD with header | 1 | Link |
1 channel relay module | 1 | link |
DHT11 temperature and Humidity sensor module | 1 | link |
Male to male jumpers | 17 | link |
Male to female jumpers | 3 | link |
Variable POT 103 | 1 | link |
Breadboard (830 points) | 1 | link |
সার্কিট ডায়াগ্রামঃ
কানেকশন চার্টঃ
Arduino UNO R3 / Mega 2560 | LCD |
GND | VSS,K,1st pin of variable POT |
5V | VDD,A,2nd pin of variable POT |
V0, 3rd pin of variable POT | |
GND | RW |
12 | RS |
11 | E |
5,4,3,2 | D4,D5,D6,D7 |
Arduino UNO R3 / Mega 2560 | DHT11 |
5V | VCC |
GND | GND |
8 | DOUT |
Arduino UNO R3 / Mega 2560 | 5V Relay module |
5V | VCC |
GND | GND |
13 | Sig |
প্রোগ্রামঃ
লাইব্রেরি ইন্সটলেশনঃ
প্রথমে DHT.h লাইব্রেরি ইন্সটল করে নিতে হবে। Tools অপশন থেকে Manage libraries এ যান।
লাইব্রেরি ম্যানেজার ওপেন হলে নিচের ছবিতে লাল রঙ দিয়ে চিহ্নিত স্থানে dht লিখুন। তারপর Adafruit DHT sensor library ইন্সটল করুন।
এবার নিচের প্রোগ্রামটি আরডুইনোতে আপলোড করুন।
// Example testing sketch for various DHT humidity/temperature sensors // Written by ladyada, public domain // REQUIRES the following Arduino libraries: // - DHT Sensor Library: https://github.com/adafruit/DHT-sensor-library // - Adafruit Unified Sensor Lib: https://github.com/adafruit/Adafruit_Sensor #include <LiquidCrystal.h> #include "DHT.h" #define DHTPIN 8 // Digital pin connected to the DHT sensor #define relaypin 13 // Feather HUZZAH ESP8266 note: use pins 3, 4, 5, 12, 13 or 14 -- // Pin 15 can work but DHT must be disconnected during program upload. // Uncomment whatever type you're using! #define DHTTYPE DHT11 // DHT 11 //#define DHTTYPE DHT22 // DHT 22 (AM2302), AM2321 //#define DHTTYPE DHT21 // DHT 21 (AM2301) // Connect pin 1 (on the left) of the sensor to +5V // NOTE: If using a board with 3.3V logic like an Arduino Due connect pin 1 // to 3.3V instead of 5V! // Connect pin 2 of the sensor to whatever your DHTPIN is // Connect pin 3 (on the right) of the sensor to GROUND (if your sensor has 3 pins) // Connect pin 4 (on the right) of the sensor to GROUND and leave the pin 3 EMPTY (if your sensor has 4 pins) // Connect a 10K resistor from pin 2 (data) to pin 1 (power) of the sensor // Initialize DHT sensor. // Note that older versions of this library took an optional third parameter to // tweak the timings for faster processors. This parameter is no longer needed // as the current DHT reading algorithm adjusts itself to work on faster procs. DHT dht(DHTPIN, DHTTYPE); // initialize the library by associating any needed LCD interface pin // with the arduino pin number it is connected to const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); void setup() { pinMode(relaypin,OUTPUT); Serial.begin(9600); Serial.println(F("DHTxx test!")); lcd.begin(16,2); dht.begin(); } void loop() { // Wait a few seconds between measurements. delay(2000); // Reading temperature or humidity takes about 250 milliseconds! // Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor) float h = dht.readHumidity(); // Read temperature as Celsius (the default) float t = dht.readTemperature(); // Read temperature as Fahrenheit (isFahrenheit = true) float f = dht.readTemperature(true); // Check if any reads failed and exit early (to try again). if (isnan(h) || isnan(t) || isnan(f)) { Serial.println(F("Failed to read from DHT sensor!")); return; } // Compute heat index in Fahrenheit (the default) float hif = dht.computeHeatIndex(f, h); // Compute heat index in Celsius (isFahreheit = false) float hic = dht.computeHeatIndex(t, h, false); Serial.print(F("Humidity: ")); Serial.print(h); Serial.print(F("% Temperature: ")); Serial.print(t); lcd.setCursor(0, 0); lcd.print("Humidity:"); lcd.print(h); lcd.print("%"); lcd.setCursor(0, 1); lcd.print("Temp:"); lcd.print(t); lcd.print((char)223); lcd.print("C"); if(t>=30) { digitalWrite(relaypin,HIGH); } else { digitalWrite(relaypin,LOW); } }
পরীক্ষাঃ
৩০ ডিগ্রী সেন্টিগ্রেড বা তার বেশি তাপমাত্রায় রিলে অন হবে। এছাড়া অন্যসময়ে রিলে অফ থাকবে।
এভাবে খুব সহজে আরডুইনো দিয়ে টেম্পারেচার কন্ট্রোল সুইচ বা Temperature Controlled Switch তৈরি যাবে। আশাকরি আপনারাও এই টিউটোরিয়াল টি অনুসরণ করে এই আরডুইনো প্রজেক্টটি তৈরি করতে পারবেন। এরকম আরও টিউটোরিয়াল দেখতে এই লিংক ভিজিট করুন, ধন্যবাদ আমাদের সাথে যুক্ত থাকার জন্য।