sigfox
Fork of Sigfox by
Diff: Sigfox.h
- Revision:
- 14:e858a765590a
- Parent:
- 12:43a4b8ba4635
- Child:
- 15:5cac9747f00f
--- a/Sigfox.h Thu Feb 15 11:01:23 2018 +0000
+++ b/Sigfox.h Tue Feb 20 15:07:48 2018 +0000
@@ -34,13 +34,15 @@
{
private:
ATParser *_at;
- char ID[9];
- char PAC[17];
+ public:
+ char *ID;
+ char *PAC;
public:
- Sigfox(ATParser &at) : _at(&at) {};
+ Sigfox(ATParser &at) : _at(&at) {ID= new char[9];PAC= new char[17];};
bool ready();
+ bool reset();
bool send(const char *data);
/**
