webinterface.h 216 B

12345678910111213141516
  1. /*
  2. web interface
  3. */
  4. #pragma once
  5. #include "options.h"
  6. #include <Arduino.h>
  7. #include "version.h"
  8. class WebInterface {
  9. public:
  10. void init(void);
  11. void update(void);
  12. private:
  13. bool initialised = false;
  14. };