Posts

Electromagnetic radiation spectrum and Data communication technologies frequency bands spectrums

Image
Understanding the Electromagnetic Spectrum and Data Communication Frequency Bands In today’s connected world, data communication technologies rely on different frequency bands within the electromagnetic spectrum to transmit signals efficiently. Whether it’s Wi-Fi, mobile networks, satellite communications, or radio broadcasting, each technology operates within a specific frequency range to optimize performance and avoid interference. What is the Electromagnetic Spectrum? The electromagnetic spectrum refers to the range of all possible electromagnetic waves, from low-frequency radio waves to high-frequency gamma rays. The spectrum is divided into different regions based on frequency (measured in Hertz, Hz) and wavelength (measured in meters). Main Regions of the Electromagnetic Spectrum Radio Waves (3 Hz – 300 GHz) Used for communication technologies like AM/FM radio, television, and wireless networks. Microwaves (300 MHz – 300 GHz) Used in radar, satellite communications, GPS, and Wi-F...

AMIE Project 2024 Mechanical Engineering Govind Singh Rathore Wifi Internet(IoT) Controlled Hydraulic Scissor Lifter Model

Image
AMIE Project 2024 Mechanical Engineering Govind Singh Rathore and FuturisticIOx, Gurgaon-122001 Wifi Internet(IoT) Controlled Hydraulic Scissor Lifter Model Demo video link-  https://youtube.com/shorts/fzsYE_GAf8o?si=kJaf6jXDZQ7R5idS https://youtube.com/shorts/FdJ_jAWvT7A?si=79hkqa5x6cMPkRz5 Full explanation-  https://youtu.be/STk515_Xuog?si=uG-z434zLvfvuuyh https://youtu.be/LQLb9OUNvXU?si=7jGKMvCNRuBZbk1i GitHub repository for code-  https://github.com/gsrathore97/iot_Scissor_lifter_AMIE_Project_2024 Whole Project folder-  https://drive.google.com/drive/folders/1Q-h4NLbMkmBsdpBlGQFpYtT1N3Pb2OyV Who I am?- https://futuristiciox.blogspot.com/p/who-i-am.html

Install Arduino IDE on raspberry pi 4 and 5 2025

commands 1. sudo apt install arduino -y 2. sudo usermod -aG dialout $USER 3. sudo reboot

Gas sensors types and use FuturisticIOx

Understanding MQ Gas Sensors and Interfacing with Arduino Uno Gas sensors play a vital role in monitoring air quality and detecting hazardous gases in the environment. The MQ series of gas sensors are widely used for their reliability, affordability, and ease of use. Each MQ sensor is designed to detect specific gases, making them versatile for various applications. In this blog, we’ll explore the features and applications of popular MQ sensors and learn how to interface them with an Arduino Uno . Overview of MQ Gas Sensors 1. MQ-135 (Air Quality & Hazardous Gas Sensor) Detectable Gases : Ammonia (NH3), Sulfide, Benzene, and Smoke. Applications : Air quality monitoring, pollution detection, and industrial safety. Output : Analog and digital. 2. MQ-2 (Smoke and Flammable Gas Sensor) Detectable Gases : Methane (CH4), Propane, Butane, Smoke, and LPG. Applications : Smoke detectors and gas leakage systems. Output : Analog and digital. 3. MQ-3 (Alcohol Sensor) Detecta...

Gas leak detector project with free code and circuit diagram

Image
Arduino Code- https://github.com/futuristiciox/gas_leak_detector #include <Servo.h> const int gasSensorPin = A0;   // Analog pin connected to the MQ2 gas sensor const int ledPin = 12 ; const int servoPin = 3 ;   // Digital pin connected to the servo const int buzzerPin = 10 ;   // Digital pin connected to the buzzer const int exhaustFanPin = 9 ; const int homeLightInterlockPin = 8 ; const int gasThreshold = 400 ;   // Threshold value for gas detection (adjust based on your testing) Servo myServo;           // Create servo object to control a servo bool alarmFlag = false ;   // Flag to check if the servo has already moved void setup () {    myServo . attach ( servoPin ) ;    myServo . write ( 0 ) ;   // Initial position of the servo    pinMode ( gasSensorPin, INPUT ) ;    pinMode ( ledPin, OUTPUT ) ;    pinMode ( buzzerPin, OUTPUT ) ;    pinMode ( e...