WiFi Connect  Version 1.0
WiFi connection manager for ESP32 and ESP8266 including OLED support
WiFiConnectOLED.h
Go to the documentation of this file.
1 
31 #ifndef WIFI_CONNECT_OLED
32 #define WIFI_CONNECT_OLED
33 #include <Arduino.h>
34 #include "Roboto_Font.h" //include before oledisplay to use file from sketch folder
35 #define OLEDDISPLAYFONTS_h
36 #define OLEDDISPLAY_DEFAULTFONT Roboto_10
37 #include "OLEDDisplay.h"
38 #include "WiFiConnect.h"
39 /**************************************************************************/
44 /**************************************************************************/
46  public:
47  WiFiConnectOLED(OLEDDisplay *odisplay, int pwrpin, int screenW = 128, int screenH = 64);
48  void begin(boolean flipV = false, boolean mirror = false);
49  void clear();
50  void clear(int startX, int startY, int endX, int endY);
51  void FlashTurningOffScreen();
52  void screenTest();
53  void displayTurnOFF(int ms = 5000) override;
54  void displayLoop() override;
55  void displayON() override;
56  private:
57  OLEDDisplay *_display;
58  int _screenW = 128;
59  int _screenH = 64;
60  void showInit();
61  boolean _initDone = false;
62  void checkInit();
63  long _displayTurnOffAtMS = -1;
64  int _pwrPin;
65 
66  protected:
67  boolean _screenTest = false;
68  template <typename Generic>
69  void DEBUG_WC(Generic text);
70  void displayConnecting(int attempt, int totalAttempts) override;
71  void displayConnected() override;
72  void displayAP() override;
73  void displayParams() override;
74  void displayManualReset() override;
75 
76 };
77 
78 
79 #endif
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