18 lines
273 B
C
18 lines
273 B
C
#ifndef BOOT_H
|
|
#define BOOT_H
|
|
|
|
#include "globals.h"
|
|
#include "hash.h"
|
|
#include "reset.h"
|
|
|
|
#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
|