mirror of
https://github.com/revspace/operame
synced 2024-12-04 21:57:30 +00:00
Portal instructions on screen
This commit is contained in:
parent
5687e04440
commit
e9c6cd49ec
35
operame.ino
35
operame.ino
@ -75,6 +75,23 @@ void display_big(const String& text, int fg = TFT_WHITE, int bg = TFT_BLACK) {
|
|||||||
sprite.pushSprite(0, 0);
|
sprite.pushSprite(0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void display_lines(const std::list<String>& lines, int fg = TFT_WHITE, int bg = TFT_BLACK) {
|
||||||
|
sprite.setTextSize(1);
|
||||||
|
sprite.setTextFont(4);
|
||||||
|
sprite.setTextDatum(MC_DATUM);
|
||||||
|
sprite.setTextColor(fg, bg);
|
||||||
|
sprite.fillSprite(bg);
|
||||||
|
if (WiFi.status() == WL_CONNECTED)
|
||||||
|
sprite.drawRect(0, 0, display.width(), display.height(), TFT_BLUE);
|
||||||
|
const int line_height = 32;
|
||||||
|
int y = display.height()/2 - (lines.size()-1) * line_height/2;
|
||||||
|
for (auto line : lines) {
|
||||||
|
sprite.drawString(line, display.width()/2, y);
|
||||||
|
y += line_height;
|
||||||
|
}
|
||||||
|
sprite.pushSprite(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
void display_logo() {
|
void display_logo() {
|
||||||
sprite.setSwapBytes(true);
|
sprite.setSwapBytes(true);
|
||||||
sprite.fillSprite(TFT_BLACK);
|
sprite.fillSprite(TFT_BLACK);
|
||||||
@ -220,10 +237,22 @@ void setup() {
|
|||||||
display_big("WiFi mislukt!", TFT_RED);
|
display_big("WiFi mislukt!", TFT_RED);
|
||||||
delay(2000);
|
delay(2000);
|
||||||
};
|
};
|
||||||
WiFiSettings.onPortal = [] {
|
|
||||||
display_big("Configuratieportal", TFT_BLUE);
|
|
||||||
};
|
|
||||||
WiFiSettings.onPortalWaitLoop = [] {
|
WiFiSettings.onPortalWaitLoop = [] {
|
||||||
|
if (WiFi.softAPgetStationNum()) {
|
||||||
|
display_lines({
|
||||||
|
"Volg instructies op",
|
||||||
|
"smartphone.",
|
||||||
|
"(login-notificatie)"
|
||||||
|
}, TFT_WHITE, TFT_BLUE);
|
||||||
|
} else {
|
||||||
|
display_lines({
|
||||||
|
"Voor configuratie,",
|
||||||
|
"verbind met WiFi",
|
||||||
|
"\"" + WiFiSettings.hostname + "\"",
|
||||||
|
"met een smartphone."
|
||||||
|
}, TFT_WHITE, TFT_BLUE);
|
||||||
|
if (millis() > 10*60*1000) ESP.restart();
|
||||||
|
}
|
||||||
if (ota_enabled) ArduinoOTA.handle();
|
if (ota_enabled) ArduinoOTA.handle();
|
||||||
if (!digitalRead(portalbutton)) {
|
if (!digitalRead(portalbutton)) {
|
||||||
delay(50);
|
delay(50);
|
||||||
|
Loading…
Reference in New Issue
Block a user