Skip to main content

Posts

Showing posts from February, 2020

How To Make Voltage Detector Using Arduino ?

Hello, Guys Welcome To Micro Electronics, In This Post You Will Learn That How To Make Voltage Detector Using Arduino ? We Will Provide The Circuit Diagram And Source Code. With The Help Of This Project You Will Able To Detect Voltage Using Voltage Sensor, After Completing The Project It Will Work Like Galvanometer, Will Help In Detecting The Presence Of Voltage. Subscribe To Our Blog So That You Don't Miss Any Update From Us.    Voltage Detector Using Arduino- Connections- 1-GND-GND 2-A0- S Source Code- //Microelectronics //Voltage Sensor Reading Demo int offset =40;// set the correction offset value void setup()  {   Serial.begin(9600); } void loop()  {   int volt = analogRead(A0);// read the input   double voltage = map(volt,0,1023, 0, 2500) - offset;// map 0-1023 to 0-2500 and add correction offset   voltage /=100;// divide by 100 to get the decimal values   Serial.print("Voltage Reading: ");   Serial.print(voltage);//print the voltge   Serial.

Making Arduino Projects Is Too Pretty Simple With Us.

Making Arduino Projects Is Too Pretty Simple With Us. Join Us @Microelectronics.  Subscribe Our Blog So That You Don't Miss Any   Update From Us.

How To Use Transistor As Switch ? || Microelectronics

Hello Guys Welcome To Microelectronics , In This Post We Will Tell You That How You Can Use Transistor As Switch ? So Let's Begin With Us. Try To Know With The Help Of This Diagram- Please Subscribe Our Blog, To Get Awesome Arduino Projects And IOT Stuffs From Us. And Remember That You Don't Miss Any Update From Us. You Can Use This Circuit Diagram To Try This Project. #Microelectronics. Please Visit Our Facebook Page  Here . Kindly Contact Us If You Need Further Details/Help. Contact Us Via Mail - electronicsinform@gmail.com Via Phone- 9870927730 Via WhatsApp - 8445569463

How To Make IOT Based Google Assistant Controlled Home Automation System Using NodeMcu ? || Microelectronics

Hello Guys, Welcome , We Are Back With The Same Power. So Now In This Post You Will Able To Know That How To Can Make A IOT Based  Google Controlled Home Automation System Using NodeMcu? We Will Help You In Designing It. This Project Is Based On Bylnk And Ifttt Server. So You Need have Bylnk And IFTTT In Your Device. Connections As Define In Bylnk App For Eg: D1- Vcc              Gnd- Gnd You Can Add Many Channel As Many You Want. Note - If You Need Further Details You Can Contact Us Via Mail - electronicsinform@gmail.com You Can Also Contact Us By WhatsApp Here-  9870927730 . For Information About Source Code - please Contact us via mail, We Will provide your there .

How To Make Colour Identifier Using Arduino and Color Sensor ?

Hello Guys ,  Welcome To Another  Post, In This Post You Will Learn That How You Can Make Your Own Color Detector Project Using Arduino. We Have Provided You The Link . Where You Can Get The Circuit Diagram And Source Code Of The Project. Please Subscribe Our Blog, So That You Don't Miss Any Awesome Project From Us. Follow This Link To Get Circuit Diagram And Source Code-  Click Here

Smoke Detector Notification Gauge Using NodeMcu || Micro Electronics

Hello Guys , Welcome To Another Post , In This Post We Will Help In Making NodeMcu Based Smoke Detector Notification Gauge Using Smoke Sensor. We Have Given You The Circuit Diagram And Source Code Below. Please Subscribe To Our Blog To Get Awesome Project From Us , And Remember That You Don't Miss Any Update From Us. Material Required- 1-Node Mcu 2-Smoke Detector Connections- 1- D0--D0 2-GND--GND 3-VCC- 3v3  Source Code- //Micro Electronics #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> #include <SimpleTimer.h> #define BLYNK_PRINT Serial    // Comment this out to disable prints and save space char auth[] = "----------------"; //Enter Authentication code sent by Blynk   char ssid[] = "---------"; //Enter WIFI Name char pass[] = "---------"; //Enter WIFI Password   SimpleTimer timer;   int mq2 = A0; // smoke sensor is connected with the analog pin A0  int data = 0;  void setup()  {   Serial.begin(115200

How To Make RFID Based Locking System Using Arduino ?

Hello Guys, In This Post You Will Learn How You Can Make A Locking System Using Arduino.  We Have Add Circuit Diagram And Source Code To This Post. Kindly Subscribe To Our Blog So That You Can't Miss Any Update From Us. Material Required-  1-RFID Tag  2-Arduino Uno / Nano  3- Display Module 4- Jumper Wires Click On The Link Below To Get -   Circuit Diagram And Source Code Note-  This Link May Be Redirect You To Simple Page, Where You Need To Choose Go To Site Option.

What Is A Raspberry Pi ? World Smallest Computer.

Hello welcome to the new post, In this post we will learn that what is raspberry pi ? Please subscribe to our blog so that you don't miss any updates. For your knowledge purpose-On this  blog we will post related to Arduino,IOt,Electronics Projects And more. What Is Raspberry Pi ? The Raspberry Pi is a low cost, credit-card sized computer that plugs into a computer monitor or TV, and uses a standard keyboard and mouse. It is a capable little device that enables people of all ages to explore computing, and to learn how to program in languages like Scratch and Python. It’s capable of doing everything you’d expect a desktop computer to do, from browsing the internet and playing high-definition video, to making spreadsheets, word-processing, and playing games. What’s more, the Raspberry Pi  has the ability to interact with the outside world, and has been used in a wide array of digital maker projects, from music machines and parent detectors to weather stations and tweeting

How To Make A Solar Tracker Using Arduino ?

Hello guys,In this post we will tell you how you can create your  Solar Tracker project using arduino. Circuit diagram and source code is given below. Subscribe our blog so that you can't miss any update from us. Note- Please Check The Code And Do All Thing As Written There. Material required- 1-Arduino Development Board 2-Some LDR 3-Servo motor 4-Solar panel 5-Jumper wires Circuit Diagram- Source Code- #include <Servo.h> //defining Servos Servo servohori; int servoh = 0; int servohLimitHigh = 160; int servohLimitLow = 20; Servo servoverti; int servov = 0; int servovLimitHigh = 160; int servovLimitLow = 20; //Assigning LDRs int ldrtopl = 2; //top left LDR green int ldrtopr = 1; //top right LDR yellow int ldrbotl = 3; // bottom left LDR blue int ldrbotr = 0; // bottom right LDR orange void setup () { servohori.attach(10); servohori.write(0); servoverti.attach(9); servoverti.write(0); delay(500); } void loop() { servoh = servohori.read(

Controlling A Servo Motor Using MPU 6050 Sensor .

Hello guys, In this post we are going to tell you that how you can control servo motor using MPU Sensor. Please subscribe to our blog, so that you can't miss any update from us.Join us @Microelectronics. Code and circuit diagram is given post. Material required- 1-MPU Sensor 2-An Arduino 3-Servo motor  4-Some jumper wires Circuit diagram- Source code- // I2Cdev and MPU6050 must be installed as libraries, or else the .cpp/.h files // for both classes must be in the include path of your project #include "I2Cdev.h" #include "MPU6050_6Axis_MotionApps20.h" //#include "MPU6050.h" // not necessary if using MotionApps include file // Arduino Wire library is required if I2Cdev I2CDEV_ARDUINO_WIRE implementation // is used in I2Cdev.h #if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE     #include "Wire.h" #endif #include <Servo.h> Servo myservo;  // create servo object to control a servo   // class default I2C address is 0x

How To Make Led Memory Game Using Arduino ?

Hello Guys , In This Post We Are Going To Tell You That How You Can Make Your Led Memory Game Using Arduino. Code And Circuit Diagram Is Given In Post. Please Subscribe Our Blog. An Arduino Based Led Memory Game.  Source Code -  /* Start the game by pressing one of the four buttons. When a button lights up,   press the button, repeating the sequence. The sequence will get longer and longer. The game is won after   13 rounds.  Generates random sequence, plays music, and displays button lights.  Simon tones from Wikipedia  - A (red, upper left) - 440Hz - 2.272ms - 1.136ms pulse  - a (green, upper right, an octave higher than A) - 880Hz - 1.136ms,  0.568ms pulse  - D (blue, lower left, a perfect fourth higher than the upper left)   587.33Hz - 1.702ms - 0.851ms pulse  - G (yellow, lower right, a perfect fourth higher than the lower left) -   784Hz - 1.276ms - 0.638ms pulse  Simon Says game originally written in C for the PIC16F88.  Ported for the ATmega168, then ATm

How To Make A Real Time GPS Location Tracker Using NodeMcu ?

Hello Guys , Welcome Back To Another Post From Microelectronics , In This Post We Will Learn That How To Make A Real Time GPS Location Tracker Using NodeMcu Module. For Further Details You Can Aks Your Question In Message Bar. Material Required - Nodemcu ESP8266 Ublox NEO 6M GPS Jumpers Connections:-  VCC  -  3.3V GND  -  GND RX  -  D1 TX  -  D2 Code - #include <TinyGPS++.h> #include <SoftwareSerial.h> #define BLYNK_PRINT Serial #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> static const int RXPin = 4, TXPin = 5;   // GPIO 4=D2(conneect Tx of GPS) and GPIO 5=D1(Connect Rx of GPS static const uint32_t GPSBaud = 9600; //if Baud rate 9600 didn't work in your case then use 4800 TinyGPSPlus gps; // The TinyGPS++ object WidgetMap myMap(V0);  // V0 for virtual pin of Map Widget SoftwareSerial ss(RXPin, TXPin);  // The serial connection to the GPS device BlynkTimer timer; float spd;       //Variable  to store the speed float sats; 

Introduction To MPU6050 Sensor.

 MPU6050 is a Micro Electro-mechanical system (MEMS), it consists of three-axis accelerometer and three-axis gyroscope. It helps us to measure velocity, orientation, acceleration, displacement and other motion like features. MPU6050 consists of Digital Motion Processor (DMP), which has property to solve complex calculations. MPU6050 consists of a 16-bit analog to digital converter hardware. Due to this feature, it captures three-dimension motion at the same time. This module has some famous features which are easily accessible, due to its easy availability it can be used with a famous microcontroller like Arduino. Friend if you are looking for a sensor to control a motion of your Drone, Self Balancing Robot, RC Cars and something like this, then MPU6050 will be a good choice for you. This module uses the I2C module for interfacing with Arduino. MPU6050 is less expensive, Its main feature is that it can easily combine with accelerometer and gyro.