2019-11-29 04:46:26 +00:00
|
|
|
#pragma once
|
2019-11-30 12:53:50 +00:00
|
|
|
#include <Preferences.h>
|
2019-11-29 04:46:26 +00:00
|
|
|
|
|
|
|
void wifi_connect();
|
2019-11-29 05:10:17 +00:00
|
|
|
|
2019-11-30 12:53:50 +00:00
|
|
|
extern bool debug_enabled;
|
|
|
|
extern bool trace_enabled;
|
2019-12-04 05:13:07 +00:00
|
|
|
extern Preferences prefs;
|
|
|
|
|
|
|
|
extern const uint8_t file_index_html_start[] asm("_binary_src_webinterface_index_html_gz_start");
|
|
|
|
extern const size_t file_index_html_size asm("_binary_src_webinterface_index_html_gz_size");
|
|
|
|
extern const uint8_t file_timezones_json_start[] asm("_binary_src_webinterface_timezones_json_gz_start");
|
|
|
|
extern const size_t file_timezones_json_size asm("_binary_src_webinterface_timezones_json_gz_size");
|