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.
1 parent 5cd2dcf commit 877cd84Copy full SHA for 877cd84
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