Exam Room Guide Using RFID

The project aims to design an “Exam Room Guide” by which students can be guided for exams based on the confusion system. Radio Frequency Identification (RFID) card readers provide a low-cost solution for reading passive RFID transponder tags up to 2 inches away. RFID card readers can be used in a wide variety of hobby and commercial applications, including access control, automatic identification, robotic navigation, inventory tracking, payment systems, and car immobilization.

Read More

How to Interface AMG8833 Thermal Camera with Arduino Nano

Introduction What is thermal camera Thermal imaging cameras are devices that translate thermal energy (heat) into visible light in order to analyze a particular object or scene. The image produced is known as a thermogram and is analyzed through a process called thermography. How does a thermal camera work? Thermal cameras detect temperature by recognizing and capturing different levels…

Read More

How to Interface MQ 2 with Arduino

Introduction: MQ 2 or MQ6 is Gas leakage sensor which consists of 4 pins. This module is used to detect the gases like butane, propane and LPG. VCC – 5v DC GND – ground D0 – Digital out A0 – Analog out Requirements: Arduino UNO – 1 MQ2/MQ6 – 1 Jumper Wires Working: If no…

Read More

Led Blinking and Fading

Led Blinking: We will see blinking an normal dc led with arduino. Requiremnts: Arduino UNO Board – 1 No. LED – 1 No. Potentiometer – 1 No. Breadboard – 1 No. Below program is to blink an led with delay of 500msec of time: #define LED 10 void setup() {     pinMode(LED,OUTPUT); } void…

Read More

How to do Arduino Coding for beginners

In Arduino, we can do coding in C and C++ languages. We will discuss how can code in C++ language and some basic predefined functions in Arduino Code structure will be as follow: The above program is an example of led blinking of 1 second. Predefined Functions: Some of the predefined functions are:pinMode(pin,mode);digitalRead(pin);digitalWrite(pin,value);analogRead(pin);analogWrite(pin,value);pulseIn(pin,value);delay(ms); pinMode(pin,mode): Configures…

Read More