summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b8cb0c1..70f2559 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4,6 +4,7 @@
#include <WiFi.h>
#include "calendar.h"
+#include "draw_qrcode.h"
#include "secrets.h"
/*
@@ -42,6 +43,7 @@ void draw() {
do {
display.fillScreen(GxEPD_WHITE);
draw_calendar(display, 30, 30);
+ draw_qrcode_wlan(display, 30, 200, wifi_ssid, wifi_psk);
} while(display.nextPage());
}