blob: 1c5cb6eb5b9ddfcffe969407874f31fc271a9d69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
#include "dnsserver.h"
#include "util.h"
#ifndef __PORTAL_H__
#define __PORTAL_H__
void portalSetup(String ssid);
void portalLoop();
boolean isConnected();
void startWebServer();
void setWeatherIcon(String id);
int getAPIOverride(int pinId);
boolean apiNeedLedUpdate();
void apiUpdatedLeds();
void scanSSIDs();
void enterAPMode();
boolean enterClientMode(const char* ssid, const char *passphrase);
#endif
|