Первый комит в котором пока почти ничего не работает

This commit is contained in:
2021-05-03 16:22:16 +06:00
commit 5ed6161c7c
16 changed files with 2592 additions and 0 deletions

14
include/tools.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef TOOLS_H_
#define TOOLS_H_
#include <Arduino.h>
#include <LittleFS.h>
String readUUID();
String readLine(File& f);
String getIMEI();
String BeforeFirst(String& str,const char ch);
String AfterFirst(String& str,const char ch);
String CutBeforeFirst(String& str,char ch,bool cutch);
#endif /* TOOLS_H_ */