primera prueba ok

This commit is contained in:
richonguzman 2023-08-27 10:06:38 -04:00
parent 44c94d454b
commit dbb717eb47
2 changed files with 38 additions and 6 deletions

26
src/web_utils.h Normal file
View file

@ -0,0 +1,26 @@
#ifndef WEB_UTILS_H_
#define WEB_UTILS_H_
#include "configuration.h"
#include <Arduino.h>
extern Configuration Config;
//
const char* htmlPage1 = "<html><body><h1>Page 1</h1></body></html>";
//const char* htmlPage2 = "<html><body><h1>Page 2</h1></body></html>";
const char* htmlPage3 = "<!DOCTYPE html><html><head><title>Dynamic Content Example</title></head><body><h1>LoRa iGate Configuration Data</h1><p>Callsign: %VCALLSIGN%</p></body></html>";
//
namespace WEB_Utils {
/*void checkWiFi();
void startWiFi();
void setup();*/
}
#endif