Class ThingSpeak
Represents a ThingSpeak data logger object
Assembly: ThingSpeak.dll
View Source
public class ThingSpeak
Properties
WriteKey
Get or set the ThingSpeak WriteKey. This key allows this class to identify itself with ThingSpeak and log data with the service.
View Source
public string WriteKey { get; set; }
URI
URI of the ThingSpeak api
View Source
public string URI { get; set; }
Methods
PostValue(string)
Send a single value to ThingSpeak
View Source
public void PostValue(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | Value to send to ThingSpeak. |
PostValues(params string[])
Post a series of values to ThingSpeak
View Source
public void PostValues(params string[] values)
Parameters
Type | Name | Description |
---|---|---|
System.String[] | values | Array of values to send to ThingSpeak. |