web-server.ino 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. * - Wake On LAN (see lib folder and include it as library)
  19. */
  20. //WiFi library
  21. #include <ESP8266WiFi.h>
  22. //SD cards library
  23. #include <SPI.h>
  24. #include <SD.h>
  25. #include <FS.h>
  26. //Web server library
  27. #include <ESPAsyncTCP.h>
  28. #include <ESPAsyncWebServer.h>
  29. #include <ArduinoJson.h>
  30. //Discovery related library
  31. #include <ESP8266mDNS.h>
  32. #include <NTPClient.h>
  33. #include <WiFiUdp.h>
  34. #include <WakeOnLan.h>
  35. /* Hardware Configurations */
  36. #define CS_PIN D0
  37. /* Software Global Variables */
  38. AsyncWebServer server(80);
  39. String adminUsername = "";
  40. String adminPassword = "";
  41. String mdnsName = "webstick";
  42. String authSession = ""; //Session key for admin
  43. String userSessions = ""; //Session keys for users
  44. /* Time Keeping */
  45. WiFiUDP ntpUDP;
  46. NTPClient timeClient(ntpUDP, "pool.ntp.org");
  47. /* Wake On Lan */
  48. WakeOnLan WOL(ntpUDP);
  49. /* Debug variables */
  50. /* Function definations */
  51. String loadWiFiInfoFromSD();
  52. void setup() {
  53. // Setup Debug Serial Port
  54. Serial.begin(9600);
  55. //Try Initialize SD card (blocking)
  56. while (!SD.begin(CS_PIN, 32000000)){
  57. Serial.println("SD card initialization failed. Retrying in 3 seconds...");
  58. delay(3000);
  59. }
  60. Serial.println("SD card initialized");
  61. Serial.println("\n\nStorage Info:");
  62. Serial.println("----------------------");
  63. getSDCardTotalSpace();
  64. getSDCardUsedSpace();
  65. Serial.println("----------------------");
  66. Serial.println();
  67. //Connect to wifi based on settings (cfg/wifi.txt)
  68. initWiFiConn();
  69. //Load admin credentials from SD card (cfg/admin.txt)
  70. initAdminCredentials();
  71. //Start mDNS service
  72. initmDNSName();
  73. if (!MDNS.begin(mdnsName)){
  74. Serial.println("mDNS Error. Skipping.");
  75. }else{
  76. Serial.println("mDNS started. Connect to your webstick using http://" + mdnsName + ".local");
  77. MDNS.addService("http", "tcp", 80);
  78. }
  79. //Start NTP time client
  80. timeClient.begin();
  81. Serial.print("Requesting time from NTP (unix timestamp): ");
  82. timeClient.update();
  83. Serial.println(getTime());
  84. //Wake on Lan Settings
  85. WOL.setRepeat(3, 100);
  86. WOL.calculateBroadcastAddress(WiFi.localIP(), WiFi.subnetMask());
  87. //Initialize database
  88. DBInit();
  89. //Resume login session if any
  90. initLoginSessionKey();
  91. // Start listening to HTTP Requests
  92. initWebServer();
  93. }
  94. void loop(){
  95. MDNS.update();
  96. timeClient.update();
  97. }