Skip to content

Commit c806c03

Browse files
committed
drop 8601 from ISO constant name
1 parent f19529c commit c806c03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/AdafruitIO_Definitions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ typedef enum {
108108

109109
AIO_TIME_SECONDS = 0,
110110
AIO_TIME_MILLIS = 1,
111-
AIO_TIME_ISO8601 = 2
111+
AIO_TIME_ISO = 2
112112

113113
} aio_time_format_t;
114114

src/AdafruitIO_Time.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void AdafruitIO_Time::_init()
6060
case AIO_TIME_MILLIS:
6161
formatString = "millis";
6262
break;
63-
case AIO_TIME_ISO8601:
63+
case AIO_TIME_ISO:
6464
formatString = "ISO-8601";
6565
break;
6666
}

0 commit comments

Comments
 (0)