31 #ifndef WIFI_CONNECT_OLED 32 #define WIFI_CONNECT_OLED 35 #define OLEDDISPLAYFONTS_h 36 #define OLEDDISPLAY_DEFAULTFONT Roboto_10 37 #include "OLEDDisplay.h" 47 WiFiConnectOLED(OLEDDisplay *odisplay,
int pwrpin,
int screenW = 128,
int screenH = 64);
48 void begin(
boolean flipV =
false,
boolean mirror =
false);
50 void clear(
int startX,
int startY,
int endX,
int endY);
57 OLEDDisplay *_display;
61 boolean _initDone =
false;
63 long _displayTurnOffAtMS = -1;
68 template <
typename Generic>
void begin(boolean flipV=false, boolean mirror=false)
Starts the display and optionally sets its orientation.
Definition: WiFiConnectOLED.cpp:65
void displayON() override
Send a High signal to the power pin, turning the display on.
Definition: WiFiConnectOLED.cpp:208
void displayTurnOFF(int ms=5000) override
Turns of the display using FlashTurningOffScreen() or via displayLoop() if a parameter >0 is supplied...
Definition: WiFiConnectOLED.cpp:196
void clear()
Clears the screen buffer. note: Does not alter whats already showing.
Definition: WiFiConnectOLED.cpp:108
void DEBUG_WC(Generic text)
Ourputs messages to the Serial debugger/monitor.
Definition: WiFiConnectOLED.cpp:329
void displayConnecting(int attempt, int totalAttempts) override
Displays the attempting to connect screen, showing the progess of the attempts made to connect...
Definition: WiFiConnectOLED.cpp:233
void screenTest()
Starts a runthrough of the screens, useful for testing.
Definition: WiFiConnectOLED.cpp:117
void displayAP() override
Displays the access point screen with the ap name and ip address.
Definition: WiFiConnectOLED.cpp:252
void displayLoop() override
When put in another or main loop, check to see if it should turn off the display. ...
Definition: WiFiConnectOLED.cpp:181
void displayParams() override
Displays the paramets access point screen with the ap name and ip address.
Definition: WiFiConnectOLED.cpp:269
Class that helps to connect to WiFi networks, that also has captive portal web interface for configur...
Definition: WiFiConnect.h:64
WiFiConnectOLED(OLEDDisplay *odisplay, int pwrpin, int screenW=128, int screenH=64)
Class initialiser.
Definition: WiFiConnectOLED.cpp:49
void FlashTurningOffScreen()
Displays a screen that flashes the words Turning Off before turning off the display.
Definition: WiFiConnectOLED.cpp:151
boolean _screenTest
Flag for use during screenTest() method.
Definition: WiFiConnectOLED.h:67
void displayConnected() override
Displays the screen showing the ip address within the connected network.
Definition: WiFiConnectOLED.cpp:286
Class extending WiFiConnect to allow the use of OLED for showing information to users.
Definition: WiFiConnectOLED.h:45
void displayManualReset() override
When in an infinate loop after failing to connect to a network from within a access point...
Definition: WiFiConnectOLED.cpp:218