Compare commits
5 commits
master
...
blaskovicz
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e1a05c6301 | ||
|
|
cc5331c470 | ||
|
|
ec80bf783a | ||
|
|
c74c56769a | ||
|
|
14c311d301 |
2 changed files with 7 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
|||
name=Adafruit IO Arduino
|
||||
version=3.8.0
|
||||
version=3.9.1
|
||||
author=Adafruit
|
||||
maintainer=Adafruit <adafruitio@adafruit.com>
|
||||
sentence=Arduino library to access Adafruit IO.
|
||||
|
|
|
|||
|
|
@ -124,11 +124,15 @@ public:
|
|||
///< SSL
|
||||
///< Fingerprint
|
||||
|
||||
#define AIO_FEED_NAME_LENGTH 20 ///< Maximum length of an Adafruit IO Feed name
|
||||
#define AIO_FEED_NAME_LENGTH \
|
||||
258 ///< Maximum length of an Adafruit IO Feed \
|
||||
///< Name; 128 + 1 + 128 for the group, a dot \
|
||||
///< , and actual feed name.
|
||||
#define AIO_DATA_LENGTH \
|
||||
45 ///< Maximum length of data sent/recieved from Adafruit IO
|
||||
#define AIO_CSV_LENGTH \
|
||||
150 ///< Maximum comma-separated-value length from Adafruit IO
|
||||
AIO_FEED_NAME_LENGTH + 4 ///< Maximum comma-separated-value length from \
|
||||
///< Adafruit IO
|
||||
|
||||
/** aio_status_t offers 13 status states */
|
||||
typedef enum {
|
||||
|
|
|
|||
Loading…
Reference in a new issue