ESP32 Sound Player

/*
   ESP32 Sound Player
   Description:
   -Coming Soon!
   Notes:
   -Coming Soon!
   Contact Info:
   email - anthony.sleck@gmail.com
   web - anthony.sleck.us
   github - https://github.com/anthonysleck
   Changelog:
   0.1 - new code
   Contact Info:
   email - anthony.sleck@gmail.com
   web - anthony.sleck.us
   github - https://github.com/anthonysleck
*/

#ifndef config_h
#define config_h

// system versioning
#define VER "0.1"
#define VER_BUILD "12192023"
#define email "anthony.sleck@gmail.com"
#define firmwareLink "https://github.com/anthonysleck/"

// common includes
#include <Arduino.h>
#include <Audio.h>
#include <ESPAsyncWebServer.h>
#include <WiFi.h>

// debugging
#define DEBUG 1     // set to "0" to disable serial debugging

#if DEBUG == 1
#define debug(x) Serial.print(x)
#define debugln(x) Serial.println(x)
#else
#define debug(x)
#define debugln(x)
#endif

// server configs
AsyncWebServer server(80);

// WiFi settings
const char* host = "ESPTempMonitor";  // change to the desired DNS name
const char *ssid = "********";        // enter your SSID here
const char *password = "********";    // enter password here

#endif

Leave a Reply