🔴How to send sensor Data from any Arduino board to MySQL Server(PHPMyAdmin) | IoT | ESP Wi-Fi module

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ธ.ค. 2023
  • #mysql #IoT #esp8266 #phpmyadmin
    The link to both the Arduino and PHP code:- github.com/MakersG/Sending-se...
    Xampp Full installation:- • 🔴XAMPP Full Installati...
    In this comprehensive guide, we will walk you through the process of establishing a reliable connection between an Arduino board and a MySQL server using a WiFi module in the year 2024. By following the steps outlined below, you will be able to seamlessly transmit data from your Arduino to a MySQL database, enabling efficient storage and retrieval of information.
    Step 1: Gathering the Required Components
    To begin, we will list the necessary components for this project, including the Arduino board, a compatible WiFi module, and a MySQL server with a network connection. We will also recommend specific models and versions that are known to work well together.
    Step 2: Setting up the WiFi Module
    Next, we will guide you through configuring and connecting the WiFi module to your Arduino board. Clear instructions will be provided, covering aspects such as establishing a connection to the local network and configuring the module to communicate with the MySQL server.
    Step 3: Configuring the MySQL Server
    This step will focus on preparing your MySQL server to receive data from the Arduino. We will cover essential tasks, such as creating a new database, defining relevant tables, and establishing the necessary user privileges for accessing and modifying data.
    Step 4: Programming the Arduino
    Here, we will dive into the code required to establish a connection between the Arduino and the MySQL server via the WiFi module. You will learn how to leverage appropriate libraries and APIs, and we will provide a detailed explanation of each code segment to ensure a clear understanding.
    Step 5: Transmitting Data to the MySQL Server
    With the necessary groundwork laid, we will demonstrate how to read sensor data or any other relevant information from the Arduino and send it to the MySQL server. We will cover techniques for data formatting, establishing a secure connection, and executing queries to insert or update records in the database.
    By the end of this tutorial, you will have a fully functional Arduino-to-MySQL integration, allowing you to seamlessly transmit data from your Arduino board to a MySQL server via a WiFi module. With the added ability to search and retrieve specific data from the database, you will have a powerful tool at your disposal for various IoT applications, data logging, and more.
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 16

  • @evidencew
    @evidencew 3 หลายเดือนก่อน +2

    Thank you! Clear and easy tutorial

    • @makersgroup
      @makersgroup  3 หลายเดือนก่อน +1

      Glad you liked it!

  • @nuelhirani9346
    @nuelhirani9346 2 หลายเดือนก่อน +3

    i can't see the code clearly, already in 1080p still got bad video quality.

    • @makersgroup
      @makersgroup  2 หลายเดือนก่อน

      Sorry and I accept your comment. But if you need the code you can use the github link in the discription

  • @Andriasgvino
    @Andriasgvino 2 หลายเดือนก่อน +2

    Hello, I am getting compilation error as I cannot find the proper libraries. could you please provide the link for the proper libraries as well?

    • @tom_mangaka8355
      @tom_mangaka8355 หลายเดือนก่อน +1

      hi i am having the same issue here, have you found a solution good sir ?

    • @Andriasgvino
      @Andriasgvino หลายเดือนก่อน

      @@tom_mangaka8355 unfortunately no :(

  • @emrehoshikami1854
    @emrehoshikami1854 หลายเดือนก่อน

    aslında başlığa php üzerinden post yada get işlemi ile veri ekliyorum yazsan hiç izlemeyiz bile. bunlar çok basit kullanışsız yöntemler...

  • @mohdshafierahaman4858
    @mohdshafierahaman4858 หลายเดือนก่อน +1

    float sensor reading=analogread(D4);
    why error, when I want to read from real sensor (pin D4) sir

    • @mohdshafierahaman4858
      @mohdshafierahaman4858 หลายเดือนก่อน +1

      Done:
      int temperature = 0;// you can get the actual value from attached sensor
      int humidity = 0;// you can get the actual value from attached sensor
      float sensor_reading=analogRead(A0);

      sendval = sensor_reading;
      sendval2 = sensor_reading;
      postData = "sendval=" + sendval + "&sendval2=" + sendval2;
      Tq

  • @FQusyairi
    @FQusyairi 2 หลายเดือนก่อน +1

    Sir, may I ask, is it possible after I finish creating the database and I display the level sensor on my html page

    • @makersgroup
      @makersgroup  2 หลายเดือนก่อน +1

      Offcource you can !! you have to featch the data from the stored database to display on your html webpage

    • @FQusyairi
      @FQusyairi 2 หลายเดือนก่อน +1

      @@makersgroup with use your code?

    • @makersgroup
      @makersgroup  2 หลายเดือนก่อน +1

      The given code is used to store sensor data on to mysql server. Once you used the given code to store data on mysql server , you need to write a new php code to fetch the data and html code to display the featched data.