24 lines
429 B
C++
24 lines
429 B
C++
#ifndef GSMMobileData_H
|
|
#define GSMMobileData_H
|
|
|
|
#include <Arduino.h>
|
|
#include "DeviceBase.h" // Include the missing header file
|
|
|
|
|
|
class GSMMobileData : public DeviceBase
|
|
{
|
|
private:
|
|
void readAllData(String id);
|
|
|
|
public:
|
|
String MobileNumber;
|
|
String Sms;
|
|
|
|
GSMMobileData(String id);
|
|
|
|
void updateMobileNumber(const String &newMobileNumber);
|
|
|
|
void updateSMS(const String &newSMS);
|
|
};
|
|
|
|
#endif // GSMMobileData_H
|