<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Himanshu Dada</title>
    <description>The latest articles on Forem by Himanshu Dada (@himanshudada123).</description>
    <link>https://forem.com/himanshudada123</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3893523%2F0556f11d-9f2d-4d34-9e92-bb50bdd3c996.png</url>
      <title>Forem: Himanshu Dada</title>
      <link>https://forem.com/himanshudada123</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/himanshudada123"/>
    <language>en</language>
    <item>
      <title>Raspberry Pi Based Line Following Robot – Case Study (Step-by-Step)</title>
      <dc:creator>Himanshu Dada</dc:creator>
      <pubDate>Sat, 02 May 2026 06:49:51 +0000</pubDate>
      <link>https://forem.com/himanshudada123/raspberry-pi-based-line-following-robot-case-study-step-by-step-1ial</link>
      <guid>https://forem.com/himanshudada123/raspberry-pi-based-line-following-robot-case-study-step-by-step-1ial</guid>
      <description>&lt;p&gt;*&lt;em&gt;Introduction *&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I with my team worked on line following robot based on &lt;a href="https://digitalmonk.biz/hire-raspberry-pi-developer/" rel="noopener noreferrer"&gt;Raspberry Pi&lt;/a&gt; as a central unit. The aim of this project is to develop a robot that can move without human intervention being made for warehouse management where the cart (robot) will follow the pre defined path. &lt;/p&gt;

&lt;p&gt;The project combines hardware components like sensors, motors, and motor drivers with software logic running on Raspberry Pi to achieve accurate and stable movement. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Project Objective &lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
The primary goals of this project were: &lt;/p&gt;

&lt;p&gt;To design an autonomous robot capable of following a black line on a white surface &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;To implement real-time decision-making using sensor data &lt;/li&gt;
&lt;li&gt;To integrate Raspberry Pi with motor control hardware &lt;/li&gt;
&lt;li&gt;To ensure smooth navigation with minimal error &lt;/li&gt;
&lt;li&gt;To create a scalable learning model for robotics and embedded systems &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*&lt;em&gt;System Overview &lt;br&gt;
*&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7tqircqne331peme2fkn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7tqircqne331peme2fkn.png" alt=" " width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The system consists of both hardware and software components working together. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Core Controller &lt;br&gt;
*&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Raspberry Pi is used as the brain of the system &lt;/li&gt;
&lt;li&gt;It processes sensor inputs and controls motor outputs in real time 
*&lt;em&gt;Sensors 
*&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;Infrared (IR) sensors are used to detect the line &lt;/li&gt;
&lt;li&gt;These sensors differentiate between black and white surfaces based on reflectivity&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*&lt;em&gt;Motor Driver &lt;br&gt;
*&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A motor driver module is used to control DC motors &lt;/li&gt;
&lt;li&gt;It acts as an interface between Raspberry Pi and motors&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*&lt;em&gt;Motors *&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Two DC motors are used for left and right wheel movement &lt;/li&gt;
&lt;li&gt;Speed and direction are controlled dynamically&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*&lt;em&gt;Step 1: Hardware Assembly &lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
The first step in building the robot was assembling the hardware components. The Raspberry Pi was mounted securely on the robot chassis. IR sensors were placed at the front bottom position to ensure proper line detection. &lt;/p&gt;

&lt;p&gt;The DC motors were attached to the wheels and connected to the motor driver module. Proper wiring was done to ensure stable power supply and signal flow between Raspberry Pi, sensors, and motors. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Step 2: Circuit Connection &lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
Once the hardware was assembled, the next step was circuit integration: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;IR sensors were connected to GPIO pins of Raspberry Pi &lt;/li&gt;
&lt;li&gt;Motor driver input pins were connected to GPIO output pins &lt;/li&gt;
&lt;li&gt;Power supply was provided to Raspberry Pi and motor driver separately to avoid voltage instability &lt;/li&gt;
&lt;li&gt;Ground connections were shared across all components&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This setup ensured smooth communication between sensing and actuation units. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Step 3: Software Development &lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
The software was developed using Python due to its simplicity and strong support for Raspberry Pi GPIO control. &lt;/p&gt;

&lt;p&gt;The program performs the following functions: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Continuously reads input from IR sensors &lt;/li&gt;
&lt;li&gt;Detects whether the robot is on the line or off the line &lt;/li&gt;
&lt;li&gt;Decides movement direction based on sensor values &lt;/li&gt;
&lt;li&gt;Sends control signals to the motor driver&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*&lt;em&gt;Step 4: Logic Implementation &lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
The decision-making logic is the most important part of this project. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If both sensors detect black line → move forward &lt;/li&gt;
&lt;li&gt;If left sensor deviates → turn left &lt;/li&gt;
&lt;li&gt;If right sensor deviates → turn right &lt;/li&gt;
&lt;li&gt;If no line detected → stop or search mode&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This logic allows the robot to continuously correct its path and stay aligned with the line. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Step 5: Motor Control System &lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
Motor control is achieved using PWM (Pulse Width Modulation). This allows speed control of DC motors instead of just ON/OFF movement. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Left motor controls left wheel direction &lt;/li&gt;
&lt;li&gt;Right motor controls right wheel direction &lt;/li&gt;
&lt;li&gt;Speed adjustments help in smooth turning and stability &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*&lt;em&gt;Step 6: Testing &amp;amp; Calibration &lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
After implementation, multiple tests were performed: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Straight path testing &lt;/li&gt;
&lt;li&gt;Curved path navigation &lt;/li&gt;
&lt;li&gt;Sharp turns &lt;/li&gt;
&lt;li&gt;Intersection handling&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sensor sensitivity was calibrated to ensure accurate detection of the black line under different lighting conditions. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Results &lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
The robot successfully followed the predefined path with high accuracy. It demonstrated: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Stable movement on straight and curved paths &lt;/li&gt;
&lt;li&gt;Fast response to sensor changes &lt;/li&gt;
&lt;li&gt;Reliable motor control without delay &lt;/li&gt;
&lt;li&gt;Smooth navigation in real-time conditions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The following video showcases the actual working prototype of the Raspberry Pi based line following robot, demonstrating real-time sensor detection and autonomous movement. &lt;br&gt;
  &lt;/p&gt;
&lt;div&gt;
    &lt;iframe src="https://www.youtube.com/embed/lDtuEKTcXGk"&gt;
    &lt;/iframe&gt;
  &lt;/div&gt;


&lt;p&gt;*&lt;em&gt;Applications *&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This system can be applied in: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Industrial warehouse automation &lt;/li&gt;
&lt;li&gt;Delivery robots in controlled environments &lt;/li&gt;
&lt;li&gt;Robotics education and training &lt;/li&gt;
&lt;li&gt;AI and embedded system research &lt;/li&gt;
&lt;li&gt;Smart transport systems&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*&lt;em&gt;Conclusion &lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
The Raspberry Pi-based line-following robot is a strong example of how embedded systems and robotics can be combined to create intelligent automation solutions. The project successfully integrates hardware and software components to achieve autonomous navigation. &lt;/p&gt;

&lt;p&gt;This system not only demonstrates core robotics concepts but also provides a foundation for more advanced applications such as obstacle avoidance, path optimization, and AI-based navigation systems. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://digitalmonk.biz/case-study-raspberry-pi-based-line-following-robot/" rel="noopener noreferrer"&gt;https://digitalmonk.biz/case-study-raspberry-pi-based-line-following-robot/&lt;/a&gt; &lt;/p&gt;

</description>
      <category>raspberrypi</category>
      <category>iot</category>
      <category>ai</category>
    </item>
    <item>
      <title>ESP32 vs Arduino: Which One Should You Choose for Your Next Project?</title>
      <dc:creator>Himanshu Dada</dc:creator>
      <pubDate>Mon, 27 Apr 2026 08:01:29 +0000</pubDate>
      <link>https://forem.com/himanshudada123/esp32-vs-arduino-which-one-should-you-choose-for-your-next-project-1m79</link>
      <guid>https://forem.com/himanshudada123/esp32-vs-arduino-which-one-should-you-choose-for-your-next-project-1m79</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;When starting with electronics or IoT projects, one of the most common questions developers face is: Should I use Arduino or ESP32? &lt;/p&gt;

&lt;p&gt;This decision can directly impact your project’s performance, cost, and future scalability. &lt;/p&gt;

&lt;p&gt;Both platforms are powerful in their own way, but choosing the right one depends on your project requirements, budget, and scalability needs. &lt;/p&gt;

&lt;p&gt;In this article, I’ll break down the key differences to help you make the right decision. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is Arduino?&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F812912vwyfsngwuj876s.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F812912vwyfsngwuj876s.png" alt=" " width="768" height="1024"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Arduino is one of the most beginner-friendly microcontroller platforms. It is widely used for simple electronics projects and rapid prototyping. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key features:&lt;/strong&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Easy to learn and use &lt;/li&gt;
&lt;li&gt;Large community support &lt;/li&gt;
&lt;li&gt;Ideal for beginners &lt;/li&gt;
&lt;li&gt;Works well for basic hardware projects &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What is ESP32?&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7aqdhepcxkvk9689kf4z.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7aqdhepcxkvk9689kf4z.png" alt=" " width="768" height="1024"&gt;&lt;/a&gt;&lt;br&gt;
ESP32 microcontroller board with built-in Wi-Fi and Bluetooth used for IoT applications.&lt;/p&gt;

&lt;p&gt;ESP32 is a powerful microcontroller with built-in Wi-Fi and Bluetooth, making it ideal for IoT and connected systems. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key features:&lt;/strong&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Built-in Wi-Fi &amp;amp; Bluetooth &lt;/li&gt;
&lt;li&gt;Higher processing power &lt;/li&gt;
&lt;li&gt;Suitable for IoT applications &lt;/li&gt;
&lt;li&gt;Better performance for complex tasks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Key Differences&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;In simple terms, Arduino is better for beginners and basic projects, while ESP32 is more suitable for advanced and connected applications.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Feature            Arduino                    ESP32 

Connectivity       External modules required  Built-in Wi-Fi &amp;amp; Bluetooth 

Performance        Basic                       High 

Use Case           Simple projects             IoT &amp;amp; advanced systems 

Cost               Low                         Slightly higher 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;When to Choose Arduino&lt;/strong&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You are a beginner &lt;/li&gt;
&lt;li&gt;You’re building simple projects &lt;/li&gt;
&lt;li&gt;You don’t need internet connectivity &lt;/li&gt;
&lt;li&gt;You want quick prototyping &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;When to Choose ESP32&lt;/strong&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You are building IoT applications &lt;/li&gt;
&lt;li&gt;You need Wi-Fi or Bluetooth &lt;/li&gt;
&lt;li&gt;You want better performance &lt;/li&gt;
&lt;li&gt;You are working on scalable systems&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Real-World Perspective&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;In real-world projects, the choice between Arduino and ESP32 often depends on scalability and performance needs. While Arduino is great for learning and small applications, ESP32 is more suitable for production-level IoT systems. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Conclusion *&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Both Arduino and ESP32 have their own strengths. If you're just starting out, Arduino is a great choice. However, for modern IoT applications and scalable solutions, ESP32 is clearly the better option. &lt;/p&gt;

&lt;p&gt;Ultimately, the right choice depends on your project goals, complexity, and future expansion needs. &lt;/p&gt;

&lt;p&gt;When working on real-world embedded projects, choosing the right hardware is just one part—having the right development expertise can make a huge difference. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://digitalmonk.biz/hire-embedded-developer/" rel="noopener noreferrer"&gt;https://digitalmonk.biz/hire-embedded-developer/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>iot</category>
      <category>esp32</category>
      <category>arduino</category>
    </item>
    <item>
      <title>How IoT is Powering Smart Solutions Across Industries</title>
      <dc:creator>Himanshu Dada</dc:creator>
      <pubDate>Thu, 23 Apr 2026 06:19:13 +0000</pubDate>
      <link>https://forem.com/himanshudada123/how-iot-is-powering-smart-solutions-across-industries-36di</link>
      <guid>https://forem.com/himanshudada123/how-iot-is-powering-smart-solutions-across-industries-36di</guid>
      <description>&lt;p&gt;The Internet of Things (IoT) is transforming how modern systems operate by connecting devices, collecting data, and enabling smarter decision-making. Today, businesses are moving beyond traditional methods and adopting IoT to improve efficiency, automation, and real-time monitoring. &lt;/p&gt;

&lt;p&gt;From agriculture to industrial automation, IoT is becoming a core part of innovation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What Makes IoT So Powerful?&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;In a nutshell, IoT is about connecting hardware like sensors, modules and machine with the internet so user can easily interact with devices and companies can check the data that will help them in improving product quality. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A typical IoT system includes:&lt;/strong&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sensors for data collection &lt;/li&gt;
&lt;li&gt;Microcontrollers like ESP32, STM32 and nRF to name a few&lt;/li&gt;
&lt;li&gt;Connectivity protocols (WiFi, MQTT) &lt;/li&gt;
&lt;li&gt;Cloud platforms for storage and analysis&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This combination helps create intelligent and automated systems.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real-World Example: Smart Agriculture&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;One of the most practical applications of IoT can be seen in agriculture. Using soil moisture sensors and connected devices, farmers can monitor field conditions in real time. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;For example:&lt;/strong&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A soil sensor that collects moisture data &lt;/li&gt;
&lt;li&gt;The microcontroller processes the information &lt;/li&gt;
&lt;li&gt;Data is sent to a cloud dashboard &lt;/li&gt;
&lt;li&gt;Irrigation systems can be automated based on real-time insights &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This not only saves water but also improves crop productivity.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0ud1niqpu27ryu90v9i5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0ud1niqpu27ryu90v9i5.png" alt=" " width="800" height="929"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This simple setup demonstrates how IoT can help farmers make data-driven decisions and optimize water usage efficiently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Businesses Are Investing in IoT&lt;/strong&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;IoT offers multiple benefits that make it valuable for businesses: &lt;/li&gt;
&lt;li&gt;Improved operational efficiency &lt;/li&gt;
&lt;li&gt;Reduced manual effort &lt;/li&gt;
&lt;li&gt;Real-time monitoring and alerts &lt;/li&gt;
&lt;li&gt;Better decision-making using data &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;However, building such systems requires expertise in both hardware and software integration.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Importance of Skilled IoT Developers&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Creating reliable IoT solutions involves more than just connecting devices. It requires proper system design, secure communication, and scalable infrastructure. &lt;/p&gt;

&lt;p&gt;That’s why many businesses prefer to Hire IoT Developers who can handle everything from device integration to cloud connectivity. &lt;/p&gt;

&lt;p&gt;If you're planning to build a smart IoT solution or want to explore professional services, you can check this resource: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://digitalmonk.biz/iot-development-company-in-india/" rel="noopener noreferrer"&gt;https://digitalmonk.biz/iot-development-company-in-india/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Final Thoughts&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;IoT is not just a trend—it’s a technology that is actively shaping the future of industries. Businesses that adopt IoT early can gain a significant advantage through automation and data-driven decision-making. &lt;/p&gt;

&lt;p&gt;Starting with simple use cases like smart agriculture can open the door to more advanced IoT applications in the future. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;IoT is not just about connecting devices—it’s about creating intelligent systems that improve efficiency and decision-making. As industries continue to evolve, adopting IoT solutions can unlock new opportunities for growth and innovation. Starting with practical implementations today can lead to smarter, more connected systems tomorrow. &lt;/p&gt;

</description>
      <category>esp32</category>
      <category>automation</category>
      <category>iot</category>
      <category>arduino</category>
    </item>
  </channel>
</rss>
