Adafruit IO is a platform designed to display, respond, and interact with your project's Internet-of-Things (IoT) data.
Go to siteYou can use the Adafruit IO API to build applications that can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
adafruit_io: {
type: "app",
app: "adafruit_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://io.adafruit.com/api/v2/user`,
headers: {
"X-AIO-Key": `${this.adafruit_io.$auth.active_key}`,
},
})
},
})
Adafruit IO uses API keys for authentication. When you connect your Adafruit IO account, Pipedream securely stores the keys so you can easily authenticate to Adafruit IO APIs in both code and no-code steps.
Sign in and copy your API key from the API Keys pop up (key icon).