SimpleFTPServer.h 347 B

123456789101112131415161718
  1. /*
  2. * FtpServer Arduino, esp8266 and esp32 library for Ftp Server
  3. * Derived form https://github.com/nailbuster/esp8266FTPServer
  4. *
  5. * AUTHOR: Renzo Mischianti
  6. *
  7. * https://www.mischianti.org/2020/02/08/ftp-server-on-esp8266-and-esp32
  8. *
  9. */
  10. #ifndef SIMPLE_FTP_SERVER_H
  11. #define SIMPLE_FTP_SERVER_H
  12. #include <FtpServer.h>
  13. #endif
  14. #pragma once