APMode.h 223 B

1234567891011121314151617
  1. #ifndef APMode_h
  2. #define APMode_h
  3. #include <Arduino.h>
  4. #include <ESP8266WiFi.h>
  5. class APMode
  6. {
  7. private:
  8. void APindex();
  9. public:
  10. APMode();
  11. void RunSetup();
  12. void APCommand();
  13. };
  14. #endif