| 8 | #include "version.h" |
| 9 | |
| 10 | class WebInterface { |
| 11 | public: |
| 12 | void init(void); |
| 13 | void update(void); |
| 14 | private: |
| 15 | bool initialised = false; |
| 16 | |
| 17 | // first 16 bytes for flashing, skip buffer in updater |
| 18 | uint8_t lead_bytes[16]; |
| 19 | uint8_t lead_len; |
| 20 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected