Skip to main content

Class AdafruitIO

AdafruitIO DataLogger

Assembly: AdafruitIO.dll
View Source
public class AdafruitIO

Properties

UserName

Adafruit account profile username This name identifies the Adafruit IO user account that the feed belongs to

View Source
public string UserName { get; set; }

IOKey

Get or set the AdafruitIO AIO key. This key allows this class to identify itself with AdafruitIO and log data with the service.

View Source
public string IOKey { get; set; }

URI

URI of the AdafruitIO api

View Source
public string URI { get; set; }

Group

Adafruit feed group This identifies the Adafruit feed group that will accessed

View Source
public string Group { get; set; }

Methods

PostValues(SensorReading[])

Post a series of values to AdafruitIO.

View Source
public void PostValues(SensorReading[] Values)
Parameters
TypeNameDescription
Meadow.Foundation.DataLoggers.SensorReading[]ValuesArray of values to send to AdafruitIO.

PostValue(SensorReading)

Send a single value to AdafruitIO

View Source
public void PostValue(SensorReading Value)
Parameters
TypeNameDescription
Meadow.Foundation.DataLoggers.SensorReadingValueValue to send to AdafruitIO.