Home
About Us
Achievement
Home
Raspberry-Pi Projects
_Raspberry Pi 4 Complete Guide
Arduino Project
_All Projects
Esp8266 Project
_All Projects
Esp32 Project
_Automation-with-feedback
Wireless Temperature monitoring system using Bluetooth Or LM-35
Just Do Electronics
April 06, 2020
Wireless Temperature monitoring Using LM35 Sensor
Circuit Diagram :-
Code :-
//Prateek //www.prateeks.in #include
SoftwareSerial mySerial(8, 9); int tempPin = A0; int read_ADC= 0; double temp = 0; double tempC = 0; double tempF = 0; void setup() { Serial.begin(9600); mySerial.begin(9600); Serial.println("Ready"); mySerial.println("Ready"); pinMode(tempPin, INPUT); for(int i=0; i>-60; i-= 1){ } } void loop(){ read_ADC =0; for (int i=0; i < 100; i++){ read_ADC = read_ADC+ analogRead(tempPin); delay(1); } read_ADC = read_ADC/100; temp = (read_ADC / 1023.0) * 5000; // 5000 to get millivots. tempC = temp * 0.1; // 500 is the offset tempF = (tempC * 1.8) + 32; // conver to F mySerial.print("S"); mySerial.print(";"); mySerial.print(tempC,0); //send distance to MIT App mySerial.print(";"); mySerial.print(tempF,0); //send distance to MIT App mySerial.println(";"); delay(10000); }
APP LINK
0 Comments
Newer
Older
ESP32 Interfacing With LDR Sensor
IoT Based Fingerprint Biometric Attendance System Using NodeMCU (Esp8266)
How To Make RFID & Keypad Based Door Lock
Esp32 Cam Based Face Unlock
NRF Based Servo Motor Control
Ultrasonic Sensor as a Counter with Arduino
IoT Based Patient Health Monitoring System Using Blynk App
ESP32 Led Blink With Push Button
How to Make a Conveyor Belt System | Counter Machine
Measure CO2 Level in Air Using Arduino
YouTube
Like on Facebook
Follow on Twitter
Follow on Google+
Follow on Instagram
Subscribe on Youtube
Hi WelCome To My Website If you have a creative mind and want to learn Electronics even without studying it then FRIENDS this Website And Youtube Channel is for you, I am crazy creators who love making Electronics things. I have a bunch of more than 130 Tutorial Videos on My YouTube Channel and I upload a new Tutorial every Sunday.
Tags
Arduino Project
Esp32 Project
Esp8266 Project
0 Comments