Compare commits

...

3 Commits

Author SHA1 Message Date
anschrammh
078b93cb63 Merge branch 'master' of http://82.64.196.164/git/Th3maz1ng/ESP8266_swiss_army_board 2019-12-21 15:03:57 +01:00
anschrammh
d91f394416 Created new empty class which will be used to do Html queries 2019-12-21 14:59:48 +01:00
anschrammh
c235f7936e Corrected header guards 2019-12-21 14:58:55 +01:00
3 changed files with 14 additions and 2 deletions

1
src/app/HtmlClient.cpp Normal file
View File

@ -0,0 +1 @@
#include "HtmlClient.h"

11
src/app/HtmlClient.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef HTMLCLIENT_H
#define HTMLCLIENT_H
class HtmlClient
{
public:
protected:
private:
};
#endif //HTMLCLIENT_H

View File

@ -1,5 +1,5 @@
#ifndef POWERMANAGER #ifndef POWERMANAGER_H
#define POWERMANAGER #define POWERMANAGER_H
#include "Arduino.h" #include "Arduino.h"
#include "definition.h" #include "definition.h"