top of page

Search Results

150 results found with an empty search

Events (1)

View All

Blog Posts (23)

  • Unlocking Security: Build Your Own LED and Buzzer Alert System with Arduino Nano & Door Sensor

    In an age where home and workplace security is paramount, the need for simple yet effective alert systems cannot be overstated. This project guides you through the creation of an LED and Buzzer-Based Alert System using a Door Sensor and an Arduino Nano. This system will notify you audibly and visually whenever the door opens or closes, providing an extra layer of security to your environment. Applications and Future Scope This innovative alert system can be applied in various scenarios, such as: Home Security: Detect unauthorized access when the door is opened unexpectedly. Office Monitoring: Alert personnel when secure areas are accessed. Warehouse Management: Track entry and exit in inventory areas. The future scope of this project is vast. By integrating it with IoT platforms, you can enable remote notifications via smartphone, allowing for real-time monitoring of your property. Imagine receiving alerts directly to your device, keeping you informed no matter where you are! Components Required To build this project, gather the following components: - Arduino Nano: The microcontroller that will serve as the brain of the project. - Door Sensor (Magnetic Reed Switch): This sensor will detect when the door is opened or closed. - LEDs (Red and Green): For visual indicators of door status. - Buzzer: Provides an audible alert when the door is opened. - 220Ω Resistor: Used to limit current to the LEDs. - Breadboard and Jumper Wires: For easy and organized connections. - USB Cable for Programming: To connect your Arduino to the computer. - Power Supply (optional): For standalone operation of the system. Steps to Follow 1. Getting Started with Hardware Connections Setting Up the Circuit: 1. Connect the Door Sensor: - Identify the two terminals of the magnetic reed switch. - Connect one terminal to a digital pin on the Arduino (e.g., D2) and the other terminal to the ground (GND). - When the door is closed, the reed switch will be in contact; when opened, it will break the circuit. 2. Wiring the LEDs: - Connect the longer leg (anode) of the red LED to another digital pin (e.g., D3) through a 220Ω resistor. This LED will indicate when the door is open. - Connect the shorter leg (cathode) of the LED to the ground (GND). - If you choose to add a green LED for indicating the door is closed, follow the same connection method but use a different digital pin (e.g., D5). 3. Connecting the Buzzer: - Connect the positive terminal of the buzzer to another digital pin (e.g., D4) and the negative terminal to the ground (GND). Circuit Diagram: 2. Coding the Arduino Nano The heart of your project lies in the code you upload to the Arduino Nano. Here’s a simple code snippet to make your alert system functional: Download the Code: You can download the complete code from [here] 3. Libraries Required This project utilizes basic Arduino functions, so no additional libraries are necessary. However, please always make sure your Arduino IDE is updated to the latest version for the best compatibility. 4. Setting Up in Arduino IDE Follow these steps to upload your code to the Arduino Nano: 1. Install the Arduino IDE: If you haven't already, download and install the Arduino IDE from [the official website](https://www.arduino.cc/en/software). 2. Upload the Code: - Open the Arduino IDE on your computer. - Copy and paste the provided code into a new sketch. - Select the appropriate board (Arduino Nano) and port from the Tools menu. - Click on the upload button (right arrow icon) to program your Arduino. 5. Testing Your System After uploading the code: 1. Connect the Arduino to your power source. 2. Open and close the door connected to the sensor. 3. Observe the LED and listen for the buzzer’s alert. 6. Results Upon completing the project, you will see: - When the door is opened: The red LED lights up, and the buzzer sounds, indicating the door is open. - When the door is closed: The green LED lights up, providing visual confirmation that the door is secured. Suggestions for Improvement - Adding More Sensors: You can integrate additional door sensors for a more comprehensive security system. - Wi-Fi Module Integration: Consider using an ESP8266 or similar module to send notifications to your smartphone for remote monitoring. - Mobile App Development: Develop a simple app to control and monitor the system from your mobile device. Conclusion Congratulations! You've successfully built an LED and Buzzer-Based Alert System using an Arduino Nano. This project not only enhances your understanding of basic electronics and programming but also provides a practical solution for home security. For more innovative projects and skill development programs, be sure to visit Skill-Hub by EmbeddedBrew, where we provide resources to elevate your technical skills!

  • Face Detection Using ESP32-CAM and Python on Thony Python IDE

    Face detection has become a fundamental aspect of various AI applications, from security systems to personal devices. With the ESP32-CAM, a low-cost microcontroller with camera capabilities, you can create your own face detection system. This guide will show you how to perform face detection using ESP32-CAM and Python on the Thony Python IDE. Whether you're a hobbyist or a tech enthusiast, this tutorial will help you create a functional project that detects faces in real-time. Prerequisites: ESP32-Cam module FTDI programmer Arduino IDE (installed) Thony Python IDE (installed) Micro-USB cable Jumper wires A local Wi-Fi network Step 1: Setup ESP32-CAM with Thony IDE 1.1 Install Thony Python IDE - Download Thony: Visit [Thony.org](https://thonny.org) and download the IDE for your operating system. - Install Python (If not already installed): Thony IDE will install Python automatically, but if you want a separate installation, go to [Python.org](https://python.org). 1.2 Connect ESP32-CAM to Your System Connect the ESP32-Cam to the FTDI programmer Connect the U0T and U0R pins of the ESP32-Cam to the RX and TX pins of the FTDI programmer. Connect the GND and 5V pins of the ESP32-Cam to the respective FTDI pins. Make sure the IO0 pin is connected to GND for flashing the ESP32-Cam. Install the ESP32 board package in Arduino IDE Open Arduino IDE and go to File > Preferences. In the "Additional Board Manager URLs" field, paste the following link: https://dl.espressif.com/dl/package_esp32_index.json Go to Tools > Board > Board Manager and search for ESP32. Install the ESP32 board package. Select the ESP32-Cam board in Arduino IDE Go to Tools > Board and choose AI-Thinker ESP32-Cam. Set the upload speed to 115200 and the correct port for your FTDI programmer. Upload the Webserver Example Code for Face Detection Open File > Examples > ESP32 > Camera > CameraWebServer. In the code, ensure you add your Wi-Fi SSID and password to connect the ESP32-Cam to your network. Upload the code to the ESP32-Cam by pressing Upload in the Arduino IDE. Once uploaded, remove the GND connection from IO0 and reset the module. Step 2: Get the ESP32-Cam’s IP Address Open Serial Monitor Go to Tools > Serial Monitor in Arduino IDE. Set the baud rate to 115200. Once the ESP32-Cam boots, you should see an IP address displayed in the Serial Monitor. Copy this IP address, as it will be used in the next step. Step 3: Integrate Python for Face Detection Install the OpenCV, Numpy library in Thony Open Thony Python IDE and go to Tools > Manage Packages . Search for opencv-python, Numpy  and install it. This library will handle face detection. Install requests library In the same way, search for and install the requests  library. This is required to interact with the ESP32-Cam’s webserver. 3. Write Python Script for Face Detection Create a New Python Script In Thony, create a new file and name it something like face_detection.py. Write the Code Use the following code to capture the video stream from the ESP32-Cam and detect faces. Run the Python Script - Make sure the ESP32-CAM webserver is running. Replace `'http://your-esp32-cam-ip-address/stream'` with the actual IP address of your ESP32-CAM. - Run the Python script in Thony IDE. A window will pop up displaying the video stream from the ESP32-CAM with detected faces highlighted. Step 4: Code Explanation Let's break down this code for face and eye detection using the ESP32-CAM stream into simple sections for a beginner: 1. Importing Required Libraries import cv2 import urllib.request import numpy as np - cv2: This is the OpenCV library, used for image and video processing. - urllib.request: This is used to fetch data from URLs (in this case, we’ll fetch images from the ESP32-CAM). - numpy (`np`): This is used for handling arrays and matrices. We need it to convert the images we get from the URL into a format OpenCV can process. 2. Loading Pre-Trained Models (Haar Cascades) for Face and Eye Detection f_cas = cv2.CascadeClassifier(cv2.data.haarcascades + 'haarcascade_frontalface_default.xml') eye_cascade = cv2.CascadeClassifier(cv2.data.haarcascades + 'haarcascade_eye.xml') - Cascade Classifier: OpenCV uses pre-trained models (Haar cascades) to detect objects like faces and eyes. - `haarcascade_frontalface_default.xml` is used for detecting faces. - `haarcascade_eye.xml` is used for detecting eyes. The `CascadeClassifier` function loads these XML files, which contain the trained models. 3. Defining the ESP32-CAM URL url = 'http://192.168.1.104/capture' - This defines the URL from where the ESP32-CAM streams its video or captures frames. You should replace `'http://192.168.1.104/capture'` with the actual IP address of your ESP32-CAM. Make sure the ESP32-CAM is connected to the same network as your computer. 4. Creating a Display Window cv2.namedWindow("Live Transmission", cv2.WINDOW_AUTOSIZE) - This creates a window named "Live Transmission" to display the camera feed. `cv2.WINDOW_AUTOSIZE` means the window will automatically adjust its size based on the image size. 5. Main Loop to Continuously Capture and Process Frames while True: img_resp = urllib.request.urlopen(url) imgnp = np.array(bytearray(img_resp.read()), dtype=np.uint8) img = cv2.imdecode(imgnp, -1) - `while True:`: This loop continuously fetches frames from the ESP32-CAM. - `urllib.request.urlopen(url)`: This retrieves the image from the ESP32-CAM via the URL. - `np.array(bytearray(img_resp.read()), dtype=np.uint8)`: Converts the image from bytes into a NumPy array so it can be handled by OpenCV. - `cv2.imdecode(imgnp, -1)`: Decodes the NumPy array into an image that OpenCV can work with. 6. Converting the Image to Grayscale gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) - `cv2.cvtColor` converts the color image (BGR format) into grayscale, which is easier and faster for the detection algorithms (face and eye detection) to process. 7. Detecting Faces in the Image face = f_cas.detectMultiScale(gray, scaleFactor=1.1, minNeighbors=5) - `f_cas.detectMultiScale`: This function detects faces in the grayscale image. - `gray`: The grayscale image where faces are to be detected. - `scaleFactor=1.1`: This parameter specifies how much the image size is reduced at each image scale (controls accuracy). - `minNeighbors=5`: Defines the minimum number of neighboring rectangles that need to be detected for an object (face) to be considered valid. 8. Drawing Rectangles Around Detected Faces for x, y, w, h in face: cv2.rectangle(img, (x, y), (x + w, y + h), (0, 0, 255), 3) - `for x, y, w, h in face:`: This loop runs through all the detected faces, where: - `x` and `y` are the coordinates of the upper-left corner of the face. - `w` is the width and `h` is the height of the face. - `cv2.rectangle`: Draws a red rectangle (BGR color `(0, 0, 255)`) around the detected face in the original image (`img`). 9. Detecting and Highlighting Eyes Within the Detected Face roi_gray = gray[y:y+h, x:x+w] roi_color = img[y:y+h, x:x+w] eyes = eye_cascade.detectMultiScale(roi_gray) for (ex, ey, ew, eh) in eyes: cv2.rectangle(roi_color, (ex, ey), (ex + ew, ey + eh), (0, 255, 0), 2) - `roi_gray` and `roi_color`: These define the "Region of Interest" (ROI) where eyes are expected to be found, which is the region inside the detected face. - `eye_cascade.detectMultiScale(roi_gray)`: Detects eyes within the face region in the grayscale image. - `cv2.rectangle`: Draws a green rectangle (BGR color `(0, 255, 0)`) around each detected eye. 10. Displaying the Result cv2.imshow("live transmission", img) - `cv2.imshow`: This function displays the current frame with rectangles around detected faces and eyes in the "Live Transmission" window. 11. Exiting the Program key = cv2.waitKey(5) if key == ord('q'): break - `cv2.waitKey(5)`: Waits for 5 milliseconds for a key press. - `if key == ord('q'):`: If the 'q' key is pressed, the program breaks out of the loop and stops the live video feed. 12. Cleanup cv2.destroyAllWindows() - `cv2.destroyAllWindows`: Closes the window displaying the video when the loop ends (after pressing 'q'). Summary: - Import libraries: OpenCV for image processing, `urllib` for getting images from the ESP32-CAM, and NumPy for array handling. - Haar Cascades: Pre-trained models to detect faces and eyes. - ESP32-CAM URL: Defines the web address from which the camera feed is fetched. - Face & Eye Detection: OpenCV processes each frame, converting it to grayscale for more efficient detection, and uses `CascadeClassifier` to draw rectangles around faces and eyes. - Live Video Stream: Displays the video feed in real time, with face and eye detection applied, until the user presses 'q' to quit. Conclusion: Congratulations! You’ve successfully set up face detection using the ESP32-CAM and Python on the Thony IDE. This project can be extended for various applications such as smart home security, automated attendance systems, or even facial recognition.If you enjoyed this tutorial, be sure to visit our Skill-Hub for the Arduino Master Class, where you can take your tech skills to the next level!

  • Building a Webserver-Controlled Spy Car with ESP32-Cam: A Step Guide

    Introduction In the world of IoT, creating smart devices that can be controlled remotely is both exciting and rewarding. One such project is the Webserver Controlled Spy Car using the ESP32-Cam module. This camera-equipped module allows you to stream live video and control your car's movements through a simple web interface. If you're interested in exploring the world of remote surveillance, this project is for you! Follow the detailed steps below to create your own spy car and gain hands-on experience in embedded systems. Step 1: Components You’ll Need - ESP32-Cam Module - FTDI Programmer (for uploading code to ESP32) - L298N Motor Driver - DC Motors with Wheels (4 for car movement) - Chassis for the Car (any basic car chassis works) - LiPo Battery or Adapter (for powering the car) - Jumper Wires (for connections) - Breadboard (optional for easy connections) Step 2: Setting Up ESP32-Cam for Web Server The ESP32-Cam module can stream video and control the car via a webserver. First, we’ll set up the ESP32-Cam to stream live video over Wi-Fi. 1. Install ESP32 board on Arduino IDE: - Open Arduino IDE. - Go to File > Preferences and in the Additional Board Manager URLs field, paste the following link: ``` https://dl.espressif.com/dl/package_esp32_index.json ``` - Next, go to Tools > Board > Boards Manager and search for ESP32. Install it. 2. Connect the FTDI programmer: - Connect the GND of the FTDI programmer to GND of the ESP32-Cam. - Connect VCC to 5V, RX to U0T, and TX to U0R. - Set the IO0 pin to GND (this puts the ESP32 into programming mode). 3. Upload the code for video streaming: - Use the following sample code to set up the camera streaming: 4. Check video stream: - Once the code is uploaded, open the Serial Monitor and note down the IP address of the ESP32-Cam. - Enter this IP address into a web browser to view the video stream. Step 3: Assembling the Spy Car 1. Motor Driver Connections: - Connect the L298N Motor Driver to the DC motors for car movement. - The IN1, IN2, IN3, and IN4 pins of the L298N should be connected to any 4 GPIO pins on the ESP32-Cam module (for controlling the direction). - Connect the 12V input of the L298N to the LiPo Battery for power. 2. ESP32-Cam Pin Configuration: - Assign GPIO pins to control the motors: - `GPIO12` for IN1, - `GPIO13` for IN2, - `GPIO14` for IN3, - `GPIO15` for IN4. Step 4: Setting Up the Web Server for Car Control In addition to streaming video, we want to control the movement of the car using buttons on a web interface. Here’s how to modify the code: Test the car movements: - Once the code is uploaded, open the web interface by visiting the ESP32-Cam’s IP address. - Click the buttons to move the car in different directions while viewing the live video feed Step 5: Powering and Testing Once all the connections are made: - Power the car with a LiPo battery. - Test the car’s movement and camera stream by accessing the web server from your smartphone or laptop. Conclusion You’ve now built your own webserver-controlled spy car using the ESP32-Cam! This project combines the power of IoT and real-time control, providing a great way to explore remote monitoring. Make sure to visit Skill-Hub by EmbeddedBrew for the Arduino Master Class, where you’ll dive even deeper into microcontroller programming and automation.

View All

Other Pages (65)

  • Crew Joining Page | EmbeddedBrew

    Welcome to EmbeddedBrew Innovations Crafting Tomorrow's Technology Today Get to Know Us At EmbeddedBrew Innovations, we are passionate about turning ideas into reality by designing and developing cutting-edge embedded systems. As a pioneering company in the embedded technology space, we specialize in innovative projects, practical workshops, and comprehensive online courses that empower individuals and businesses to stay ahead in the fast-evolving world of technology. Our mission is to fuse creativity with engineering to create solutions that simplify complex problems and improve everyday life. Whether you're a tech enthusiast or a professional, EmbeddedBrew is where innovation meets expertise. Learn More Services We offer a range of services tailored to meet the needs of individuals and businesses in the embedded systems space Custom Embedded Projects From idea conceptualization to complete product development, we design custom embedded solutions for industries including IoT, automation, and more. Our projects are driven by a commitment to excellence, ensuring that your solutions are not only innovative but reliable and scalable. Workshops & Training Hands-on training programs and workshops designed for all levels, from beginners to advanced professionals. Learn the essentials of embedded systems, Arduino, IoT, robotics, and more from our team of experts. Online Courses Enroll in our self-paced or instructor-led courses to deepen your knowledge in key areas of embedded technology. Our courses cover a variety of topics, including microcontrollers, sensor integration, and real-time systems, providing you with the skills needed to excel in today's tech-driven world. Join Us at EmbeddedBrew! We are always on the lookout for passionate individuals who share our vision of technological innovation. If you are interested in joining our team, please fill out the Crew Information Form. Join Us

  • How to make a music reactive LED Strip using Arduino and Sound sensor

    How to make a music reactive LED Strip using Arduino and Sound sensor Create a fun project that will react to any sound or music you play Description: Creating a music-reactive light using Arduino and a sound sensor is a fun and engaging project. Here are the steps you can follow to make one: Step 1: Gather Your Materials - Arduino board (such as Arduino Uno) - Sound sensor module - LED strip or individual LEDs - Jumper wires - Breadboard - Power source (battery pack or USB power supply) - Computer with Arduino IDE installed Step 2: Set Up Your Arduino - Connect your Arduino board to your computer via USB cable. - Open the Arduino IDE on your computer. Step 3: Wire the Sound Sensor - Place the sound sensor on the breadboard. - Connect the VCC pin of the sound sensor to the 5V pin on the Arduino. - Connect the GND pin of the sound sensor to the GND pin on the Arduino. - Connect the OUT pin of the sound sensor to any digital pin on the Arduino (e.g., pin 7). Step 4: Wire the LED - Connect the LED strip according to the given Circuit diagram. Step 5: Write the Arduino Code - Write the code in the Arduino IDE to read the analog value from the sound sensor and map it to the brightness of the RGB LED. - Use conditional statements to change the color of the LED based on the intensity of the sound. - You can find sample code online or write your own based on your preferences. Step 6: Upload the Code to Arduino - Verify your code for any errors. - Select the correct board and port in the Arduino IDE. - Upload the code to your Arduino board. Step 7: Test Your Music-Reactive Light - Power up your Arduino board using the power source. - Play some music or make some noise near the sound sensor. - Observe how the RGB LED reacts to the sound. It should change colors and brightness according to the intensity of the sound. Step 8: Customize and Fine-Tune - Experiment with different colors, patterns, and sensitivity levels to customize the behavior of your music-reactive light. - Make any necessary adjustments to the code or wiring to achieve the desired results. Project Gallery All Documents : Download the Below file to run the code. Click Here to Download Download Video Tutorial : Conclusion : With these steps, you can create your own music-reactive light using Arduino and a sound sensor. Have fun experimenting and exploring the world of DIY electronics. Also checkout Skill-Hub by EmbeddedBrew to enhance your skills in IoT and Embedded Systems. comments debug Comments Write a comment Write a comment Share Your Thoughts Be the first to write a comment.

  • How to create a Musical tune on Arduino

    How to create a Musical tune on Arduino Learn to create and play music on Arduino. Description: Creating music using an Arduino and a buzzer is a fun and educational project that introduces you to basic electronics and programming concepts. Here’s a Step-by-Step Guide to Create Music with Arduino and a Buzzer Materials Needed: 1. Arduino board (e.g., Arduino Uno) 2. Piezo buzzer 3. Breadboard 4. Jumper wires 5. USB cable for Arduino 6. Computer with Arduino IDE installed Step 1: Set Up Your Workspace - Ensure you have all the necessary materials. - Install the Arduino IDE on your computer if you haven’t already done so. Step 2: Connect the Buzzer to the Arduino 1. Place the piezo buzzer on the breadboard. 2. Connect one leg of the buzzer to a digital pin on the Arduino (e.g., pin 8). 3. Connect the other leg of the buzzer to the ground (GND) pin on the Arduino. Step 3: Write the Code - Open the Arduino IDE on your computer. - Create a new sketch and write the following code to play a simple melody: Step 4: Upload the Code to the Arduino 1. Connect your Arduino board to the computer using the USB cable. 2. In the Arduino IDE, select the correct board and port from the 'Tools' menu. 3. Click the 'Upload' button to upload the code to your Arduino. 5: Test Your Setup - Once the code is uploaded, your buzzer should start playing the melody. If you don’t hear any sound, double-check your connections and ensure that the buzzer is properly connected to the specified pin. Project Gallery All Documents : Download the below code and run on ArduinoIDE. Click Here to Download Download Video Tutorial : Conclusion : Creating music with an Arduino and a buzzer is a great way to get started with electronics and programming. It’s a simple project that can be expanded in many creative ways. For more project ideas and tutorials, visit our website and check out Skill-Hub by EmbeddedBrew for more learning opportunities in embedded systems. Happy creating! comments debug Comments Write a comment Write a comment Share Your Thoughts Be the first to write a comment.

View All
bottom of page