2021-03-04 21:22:49 +01:00
|
|
|
#ifndef BOOT_H
|
|
|
|
#define BOOT_H
|
|
|
|
|
|
|
|
#include "globals.h"
|
|
|
|
#include "hash.h"
|
2021-03-20 21:31:04 +01:00
|
|
|
#include "reset.h"
|
2021-03-04 21:22:49 +01:00
|
|
|
|
|
|
|
#include <Update.h>
|
|
|
|
#include <WiFi.h>
|
|
|
|
#include <WiFiClientSecure.h>
|
|
|
|
#include <WiFiClient.h>
|
|
|
|
#include <WebServer.h>
|
|
|
|
#include <ESPmDNS.h>
|
|
|
|
|
|
|
|
void start_boot_menu(void);
|
|
|
|
|
|
|
|
#endif // BOOT_H
|