Skip to main content

Class AdafruitIO

AdafruitIO DataLogger

Assembly: AdafruitIO.dll
View Source
Declaration
public class AdafruitIO

Properties

UserName

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

View Source
Declaration
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
Declaration
public string IOKey { get; set; }

URI

URI of the AdafruitIO api

View Source
Declaration
public string URI { get; set; }

Group

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

View Source
Declaration
public string Group { get; set; }

Methods

PostValues(SensorReading[])

Post a series of values to AdafruitIO.

View Source
Declaration
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
Declaration
public void PostValue(SensorReading Value)
Parameters
TypeNameDescription
Meadow.Foundation.DataLoggers.SensorReadingValueValue to send to AdafruitIO.