LOGGER
Logger
Data Logging using ESP8266
|
#include <ESP8266WiFi.h>
#include <Time.h>
#include <WiFiClient.h>
#include <WiFiServer.h>
#include <WiFiUdp.h>
#include "networkservices.h"
#include "parameters.h"
Macros | |
#define | networkservicesEdit 1 |
version of this module | |
Functions | |
EXTERNDEF void | networkservicesInit (bool enableAP) |
EXTERNDEF void | networkservicesLoop () |
EXTERNDEF void | networkservicesConfigurationPage (Print *pPrint) |
Variables | |
EXTERNVAR char | apName [32] |
< version of this include file More... | |
EXTERNVAR char | ssidName [32] |
SSID to log in to the WIFI network. | |
EXTERNVAR char | ssidPassword [32] |
Password to use for the SSID. | |
Services to support general purpose network connectivity.
EXTERNDEF void networkservicesConfigurationPage | ( | Print * | pPrint | ) |
Display a table with all of the network configuration parameters.
pPrint | where to emit the output |
EXTERNDEF void networkservicesInit | ( | bool | enableAP | ) |
Initialize networking services, call once at system startup. Connects to the network.
enableAP | turn on access point support |
EXTERNDEF void networkservicesLoop | ( | ) |
Call this from the main loop. Handle network activity that must be done on a periodic basis.
EXTERNVAR char apName[32] |
< version of this include file
AP name, user defined name for the access point.