File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,11 @@ AdafruitIO_Feed* AdafruitIO::feed(const __FlashStringHelper *name)
95
95
return new AdafruitIO_Feed (this , name);
96
96
}
97
97
98
+ AdafruitIO_Dashboard* AdafruitIO::dashboard (const char * name)
99
+ {
100
+ return new AdafruitIO_Dashboard (this , name);
101
+ }
102
+
98
103
void AdafruitIO::_init ()
99
104
{
100
105
Original file line number Diff line number Diff line change 16
16
#include " Adafruit_MQTT.h"
17
17
#include " AdafruitIO_Definitions.h"
18
18
#include " AdafruitIO_Feed.h"
19
+ #include " AdafruitIO_Dashboard.h"
19
20
#include " AdafruitIO_Data.h"
20
21
#include " ArduinoHttpClient.h"
21
22
@@ -44,6 +45,8 @@ class AdafruitIO {
44
45
AdafruitIO_Feed* feed (const char *name);
45
46
AdafruitIO_Feed* feed (const __FlashStringHelper *name);
46
47
48
+ AdafruitIO_Dashboard* dashboard (const char *name);
49
+
47
50
const __FlashStringHelper* statusText ();
48
51
49
52
aio_status_t status ();
You can’t perform that action at this time.
0 commit comments