summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'util.h')
-rw-r--r--util.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/util.h b/util.h
new file mode 100644
index 0000000..4d8df4d
--- /dev/null
+++ b/util.h
@@ -0,0 +1,12 @@
+#include <ESP8266WiFi.h>
+
+#ifndef __UTIL_H__
+#define __UTIL_H__
+
+String makeRedirectPage(String target, int timeout);
+String makePage(String title, String contents);
+String urlDecode(String input);
+String ipToStr(IPAddress address);
+
+#endif
+