We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5cd2dcf + 877cd84 commit 44f8b5aCopy full SHA for 44f8b5a
InfluxData.h
@@ -18,6 +18,10 @@ class InfluxData {
18
_values = (_values == "") ? (" ") : (_values += ",");
19
_values += key + "=" + String(value);
20
}
21
+ void addValueString(String key, String value) {
22
+ _values = (_values == "") ? (" ") : (_values += ",");
23
+ _values += key + "=\"" + value + "\"";
24
+ }
25
void setTimestamp(long int seconds)
26
{
27
_timestamp = " " + String(seconds) + "000000000";
0 commit comments