bed24da57c
new file: .idea/.idea.GSM-Chata.dir/.idea/encodings.xml
new file: .idea/.idea.GSM-Chata.dir/.idea/indexLayout.xml
new file: .idea/.idea.GSM-Chata.dir/.idea/vcs.xml
new file: .vscode/settings.json
modified: platformio.ini
new file: src/Data/DeviceBase.cpp
new file: src/Data/DeviceBase.h
new file: src/Data/GSMData.cpp
new file: src/Data/GSMData.h
new file: src/Data/PinTypeIn.cpp
new file: src/Data/PinTypeIn.h
new file: src/Data/PinTypeOut.cpp
new file: src/Data/PinTypeOut.h
new file: src/Device/EEPROMUtils.cpp
modified: src/Device/EEPROMUtils.h
new file: src/Device/GSMDevice.cpp
new file: src/Device/GSMDevice.h
new file: src/Device/WebServer.cpp
new file: src/Helper/HTMLGenerator.cpp
new file: src/Helper/HTMLGenerator.h
new file: src/PinDefinitions.cpp
new file: src/PinDefinitions.h
new file: src/Utills.cpp
new file: src/Utills.h
deleted: src/Zabezpecovacka-GSM.cpp
new file: src/main.cpp
22 lines
395 B
C++
22 lines
395 B
C++
#ifndef GSMData_H
|
|
#define GSMData_H
|
|
|
|
#include <Arduino.h>
|
|
#include <Device/EEPROMUtils.h>
|
|
#include <Utills.h>
|
|
#include <Data/DeviceBase.h>
|
|
|
|
class GSMData : public DeviceBase
|
|
{
|
|
public:
|
|
String MobileNumber;
|
|
String Sms;
|
|
|
|
GSMData(String id): DeviceBase(id){};
|
|
|
|
void updateMobileNumber(const String &newMobileNumber);
|
|
|
|
void updateSMS(const String &newSMS);
|
|
};
|
|
|
|
#endif // GSMData_H
|