Skip to content

Source code of "IoT Aircon Alarm System" (formerly the AC Remote Monitoring System) for the thesis project "Remote Monitoring System for Proactive Fault Detection of Air Conditioning Units"

Notifications You must be signed in to change notification settings

johannesunana/IoT-Aircon-Alarm-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Instructions on how to use and deploy software to ESP32:

  1. Setup Wi-Fi connectivity in Raspberry Pi.

    ssid="WIFI_SSID" = "********";		# WiFI SSID
    psk="WIFI_PASSWORD" = "********";	# WiFi password

    to the Wi-Fi connection in use.

  2. Save and copy the file to the root folder of microSD card containing the installed Raspberry PI OS.

  3. Setup Wi-Fi connectivity in ESP32.

    • Download the latest commit here.

    • On Credentials.h, edit the following sections:

    char server_addr[] = "********";	// IP address of server in local network
    char ssid[] = "********";		// WiFI SSID
    char pass[] = "********";		// WiFi password
    
    char user[] = "********";		// MySQL server username
    char password[] = "********";	// MySQL server password
    char database[] = "********";	// MySQL database name
  4. On Defines.h, edit the following section as needed:

    // E) Device ID
    byte device_id = 1;		// device id of module
  5. Download required libraries using Arduino IDE to %USERPROFILE%\Documents\Arduino\libraries.

  6. Upload esp32_beta_v2.ino to ESP32 Dev Module.

About

Source code of "IoT Aircon Alarm System" (formerly the AC Remote Monitoring System) for the thesis project "Remote Monitoring System for Proactive Fault Detection of Air Conditioning Units"

Topics

Resources

Stars

Watchers

Forks