তাপমাত্রা মাপার মিটার তৈরি করুন খুব সহজে,
এই কোডটি ব্যবহার করুন,
এবং আরো ভিডিও পেতে আমাদের চ্যানেল টি সাবস্ক্রাইব করবেন।
Channel link: go to my YouTube channel click here
// Circuit diagram:
// Arduino-------i2c module
// 5v------------vcc
// gnd-----------gnd
// SDA-----------SDA
// SCL-----------SCL
// Arduino and lm35 sensor
// arduino-------lm35
// gnd-----------3rd pin
// vin-----------1 no pin
// A0------------2 no pin or middle pin
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
float value;
float volt;
int temp;
// Set the LCD address to 0x27 for a 16 chars and 2 line display
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup()
{
// initialize the LCD
lcd.begin();
Serial.begin(9600);
// Turn on the blacklight and print a message.
lcd.backlight();
}
void loop()
{
value = analogRead(A0);
volt = (value*5000)/1024;
temp = volt/10;
Serial.println("Temperature=");
Serial.print(temp);
lcd.setCursor(0,0);
lcd.print("Temp meter");
lcd.setCursor(0,1);
lcd.print("temperature=");
lcd.print(temp);
lcd.print(char(223));
lcd.print("C");
delay(500);
}
0 Comments