Adafruit_CircuitPython_AdafruitIO
Adafruit_CircuitPython_AdafruitIO copied to clipboard
Adafruit IO for CircuitPython
Hi, I'm trying to use the AdafruitIO library instead of (or with) Adafruit MiniMQTT. I've tried on both an S3 MatrixPortal and a Pico W. It fails on the line:...
The AdafruitIO library does not provide the option to provide the `tz` parameter to specify timezone, which is the first thing IO looks for to return a time when using...
This is a documentation clarification request. I ran into an issue where I thought using publish_multiple was for publishing multiple feeds at the same time. There is a 3 second...
This works ```py io.subscribe("BME280-Unbiased") io.subscribe("BME280-RealTemp") ``` attempting to subscribe to 2 feeds simultaneously doesn't work. here are a few of the iterations I tried. ```py io.subscribe("BME280-Unbiased", "BME280-RealTemp") io.subscribe([("BME280-Unbiased", "BME280-RealTemp")]) io.subscribe([('BME280-Unbiased'),...
I don't know how to change the example to work with circuitpython 8, I think this detracts from the usability hugely. I hoped i could just setup an MQTT client...
Hello, Can we add support for this API? https://io.adafruit.com/api/docs/#create-group-data Usage would be: ```python weather_payload = { 'feeds': [ { 'key': "temp-feed", 'value': 1 }, { 'key': "humid-feed", 'value': 2 }...
https://github.com/adafruit/Adafruit_CircuitPython_AdafruitIO/blob/main/adafruit_io/adafruit_io.py#L607 The _asdict method needs to be run on an instance of a class to get the class attributes. It would be easier for most users to just send a...
I posted in one of the adafruit forums, and it was suggested that I submit an issue here. So, I'm playing with the funhouse, sending feeds for different sensors, and...
Adds two new methods related to returning the current users info. One for the complete user info, and one just for the throttle/auth/sms rates+limits Return User Usage Limits / Current...
There is an API endpoint for fetching the current users data rate information. See the IO HTTP API Docs here: https://io.adafruit.com/api/docs/#get-detailed-user-info The endpoint is `https://io.adafruit.com/api/v2/tyeth/throttle` where `tyeth` is your username....