web-server.ino 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*
  2. *
  3. * Web Server Stick v3
  4. * Author: Toby Chui
  5. *
  6. * This firmware load and serve web content
  7. * from microSD card.
  8. *
  9. * The following firmware config are recommended
  10. * Board: Wemos D1 Mini
  11. * CPU clockspeed: 160Mhz
  12. * IwIP Varient: v2 Higher Bandwidth
  13. *
  14. * Require external library:
  15. * - ESPAsyncTCP (https://github.com/me-no-dev/ESPAsyncTCP)
  16. * - ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
  17. * - ArduinoJson (https://github.com/bblanchon/ArduinoJson)
  18. * - ESPping (https://github.com/dvarrel/ESPping)
  19. * - Wake On LAN (https://github.com/a7md0/WakeOnLan)
  20. */
  21. //WiFi library
  22. #include <ESP8266WiFi.h>
  23. //SD cards library
  24. #include <SPI.h>
  25. #include <SD.h>
  26. #include <FS.h>
  27. //Web server library
  28. #include <ESPAsyncTCP.h>
  29. #include <ESPAsyncWebServer.h>
  30. #include <ArduinoJson.h>
  31. //Discovery related library
  32. #include <ESP8266mDNS.h>
  33. #include <ESPping.h>
  34. #include <NTPClient.h>
  35. #include <WiFiUdp.h>
  36. #include <WakeOnLan.h>
  37. /* Hardware Configurations */
  38. #define CS_PIN D0
  39. /* Software Global Variables */
  40. AsyncWebServer server(80);
  41. String adminUsername = "";
  42. String adminPassword = "";
  43. String mdnsName = "webstick";
  44. String authSession = ""; //Session key for admin
  45. /* Time Keeping */
  46. WiFiUDP ntpUDP;
  47. NTPClient timeClient(ntpUDP, "pool.ntp.org");
  48. /* Wake On Lan */
  49. WakeOnLan WOL(ntpUDP);
  50. /* Debug variables */
  51. /* Function definations */
  52. String loadWiFiInfoFromSD();
  53. void setup() {
  54. // Setup Debug Serial Port
  55. Serial.begin(9600);
  56. //Try Initialize SD card (blocking)
  57. while (!SD.begin(CS_PIN, 32000000)){
  58. Serial.println("SD card initialization failed. Retrying in 3 seconds...");
  59. delay(3000);
  60. }
  61. Serial.println("SD card initialized");
  62. Serial.println("\n\nStorage Info:");
  63. Serial.println("----------------------");
  64. getSDCardTotalSpace();
  65. getSDCardUsedSpace();
  66. Serial.println("----------------------");
  67. Serial.println();
  68. //Connect to wifi based on settings (cfg/wifi.txt)
  69. initWiFiConn();
  70. //Load admin credentials from SD card (cfg/admin.txt)
  71. initAdminCredentials();
  72. //Start mDNS service
  73. initmDNSName();
  74. if (!MDNS.begin(mdnsName)){
  75. Serial.println("mDNS Error. Skipping.");
  76. }else{
  77. Serial.println("mDNS started. Connect to your webstick using http://" + mdnsName + ".local");
  78. MDNS.addService("http", "tcp", 80);
  79. }
  80. //Start NTP time client
  81. timeClient.begin();
  82. Serial.print("Requesting time from NTP (unix timestamp): ");
  83. timeClient.update();
  84. Serial.println(getTime());
  85. //Wake on Lan Settings
  86. WOL.setRepeat(3, 100);
  87. WOL.calculateBroadcastAddress(WiFi.localIP(), WiFi.subnetMask());
  88. //Initialize database
  89. DBInit();
  90. //Resume login session if any
  91. initLoginSessionKey();
  92. // Start listening to HTTP Requests
  93. initWebServer();
  94. }
  95. void loop(){
  96. MDNS.update();
  97. timeClient.update();
  98. }