IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
Moderators: adafruit_support_bill, adafruit
Forum rules
If you're posting code, please make sure your code does not include your Adafruit IO Active Key or WiFi network credentials.
If you're posting code, please make sure your code does not include your Adafruit IO Active Key or WiFi network credentials.
- ramisthand76
- Posts: 1
- Joined: Tue Mar 01, 2022 11:11 am
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
Adafruit.io is a cloud service - that just means we run it for you and you don't have to manage it. You can connect to it over the Internet. It's meant primarily for storing and then retrieving data but it can do a lot more than just that!
- DelarnTheBard
- Posts: 8
- Joined: Mon Apr 11, 2022 11:05 am
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
I would love to make toggles and other input from the dashboar handle dict/json value.
and have text input be enterer with a button rather than "enter" on the keyboard
Code: Select all
{"temp":"C","grav":"SG","wait_time":30}
- jwcooper
- Posts: 935
- Joined: Tue May 01, 2012 9:08 pm
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
You can do that now with the toggle button block. Just paste in that json as the button value. It's one of the text fields that is an option. You can set the 'on' and 'off' values independently of the display text.DelarnTheBard wrote:I would love to make toggles and other input from the dashboar handle dict/json value.
and have text input be enterer with a button rather than "enter" on the keyboardCode: Select all
{"temp":"C","grav":"SG","wait_time":30}
- DelarnTheBard
- Posts: 8
- Joined: Mon Apr 11, 2022 11:05 am
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
a native NoSQL database, so we can make forms like dashboard ?
- pbuelow
- Posts: 77
- Joined: Sat Oct 04, 2014 2:43 pm
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
I have a few hopefully easy feature requests.
* Compass rose graph. I want to push wind direction every now and then and display it as a line pointing to the compass direction in the graph.
* The ability to add a static text/char to variables shown in a text block. If you can do this, I just haven't figure out how. But adding a % or degree symbol to a value would be fantastic.
* Static text as a header to a Dashboard. I'd like to put a small block of text at the top as I want to share one of my Dashboards publicly but with a description. I think I could do this with a header image if I put the text in there, but I think it would be pretty cool to just add text.
Thank you.
* Compass rose graph. I want to push wind direction every now and then and display it as a line pointing to the compass direction in the graph.
* The ability to add a static text/char to variables shown in a text block. If you can do this, I just haven't figure out how. But adding a % or degree symbol to a value would be fantastic.
* Static text as a header to a Dashboard. I'd like to put a small block of text at the top as I want to share one of my Dashboards publicly but with a description. I think I could do this with a header image if I put the text in there, but I think it would be pretty cool to just add text.
Thank you.
- DelarnTheBard
- Posts: 8
- Joined: Mon Apr 11, 2022 11:05 am
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
It only has 2 value. I would need 3 Value. Would be fun to implement a flexible one ;) !!jwcooper wrote:
You can do that now with the toggle button block. Just paste in that json as the button value. It's one of the text fields that is an option. You can set the 'on' and 'off' values independently of the display text.
- D43a89ad20e01ca69CDF
- Posts: 1
- Joined: Sun May 15, 2022 12:56 pm
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
exactly what I am searching for as inTheCriticalPath wrote:I would love to see the ability to annotate data points in the feed via the API as well as the online portal.
Code: Select all
data = {'value': 46 , 'comment': 'something meaningful'}
- vadaparty
- Posts: 79
- Joined: Wed Jun 11, 2014 6:39 pm
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
Is there a consideration to have Huzzah (ESP 8266) Feather with QT connections?
There are a lot of advantages with the QT (numerous Adafruit sensors connections)...
There are a lot of advantages with the QT (numerous Adafruit sensors connections)...
- brubell
- Posts: 1711
- Joined: Fri Jul 17, 2015 10:33 pm
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
The ESP32 Feather V2 fits this bill but uses an ESP32 instead of an ESP8266, https://www.adafruit.com/product/5400vadaparty wrote:Is there a consideration to have Huzzah (ESP 8266) Feather with QT connections?
There are a lot of advantages with the QT (numerous Adafruit sensors connections)...
The ESP8266 is in the process of being phased out for a newer chipset (ESP32-C3 I believe...). There could be an ESP32-C3 feather with these features in the future, no guarantees though as I do not know the roadmap (esp. with chip availability as it currently stands).
- vadaparty
- Posts: 79
- Joined: Wed Jun 11, 2014 6:39 pm
- caroni
- Posts: 1
- Joined: Tue Jun 14, 2022 11:21 am
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
ALTERNATIVES TO PORT 1883 FOR MQTT
I want to create a simple script on my server but my host allows only ports over 50000, 1883 is blocked.
Can't you have alternative ports??
I want to create a simple script on my server but my host allows only ports over 50000, 1883 is blocked.
Can't you have alternative ports??
- brubell
- Posts: 1711
- Joined: Fri Jul 17, 2015 10:33 pm
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
Could you please post this in a new thread so I can answer it completely?caroni wrote:ALTERNATIVES TO PORT 1883 FOR MQTT
I want to create a simple script on my server but my host allows only ports over 50000, 1883 is blocked.
Can't you have alternative ports??
- DJDevon3
- Posts: 170
- Joined: Wed Mar 06, 2019 11:02 am
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
I'd like to have an easier way to delete feed data points than doing it individually by clicking x and then confirm for each individual item. Can we get a select all per page feature at the least? Sometimes when I'm testing code it'll run on for 20 updates that I don't want in the feed for plotting reasons and I have to spend minutes clicking on x and confirm... it's tedious and unnecessary. :(
Is it setup that way in feeds to encourage people to delete data points through mqtt scripts instead? I don't understand why a mass deletion feature doesn't exist or checkboxes next to items, like with an email client.
Is it setup that way in feeds to encourage people to delete data points through mqtt scripts instead? I don't understand why a mass deletion feature doesn't exist or checkboxes next to items, like with an email client.
- geotek
- Posts: 65
- Joined: Thu Mar 07, 2013 1:39 pm
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
Adafruit IO Introduction Update Needed.
As a neophyte to The Internet of Things and the Adafruit IO.
The Adafruit IO introduction pages are old and do not reflect the current IO pages I.e. feeds,Dashboard,blocks.
I am currently experimenting the Funhouse Project - a great device, Adafruit IO, a great service!
I have managed to send data and display it on the Adafruit IO page.
My observation, is that the ‘the create blocks’ page for selecting blocks needs more explanation and examples on how to use the various blocks, for sending and receiving data to and from the Funhouse. Foe example How can I utilize the keypad block, the video block, the color picker, etc.
Thanks
Tom
As a neophyte to The Internet of Things and the Adafruit IO.
The Adafruit IO introduction pages are old and do not reflect the current IO pages I.e. feeds,Dashboard,blocks.
I am currently experimenting the Funhouse Project - a great device, Adafruit IO, a great service!
I have managed to send data and display it on the Adafruit IO page.
My observation, is that the ‘the create blocks’ page for selecting blocks needs more explanation and examples on how to use the various blocks, for sending and receiving data to and from the Funhouse. Foe example How can I utilize the keypad block, the video block, the color picker, etc.
Thanks
Tom
- brubell
- Posts: 1711
- Joined: Fri Jul 17, 2015 10:33 pm
Re: IDEAS: ADAFRUIT IO FEATURE SUGGESTIONS
Hi, we have a _lot_ of guides about Adafruit IO. Could you provide a link to the one you are referring to?geotek wrote:Adafruit IO Introduction Update Needed.
As a neophyte to The Internet of Things and the Adafruit IO.
The Adafruit IO introduction pages are old and do not reflect the current IO pages I.e. feeds,Dashboard,blocks.
I am currently experimenting the Funhouse Project - a great device, Adafruit IO, a great service!
I have managed to send data and display it on the Adafruit IO page.
My observation, is that the ‘the create blocks’ page for selecting blocks needs more explanation and examples on how to use the various blocks, for sending and receiving data to and from the Funhouse. Foe example How can I utilize the keypad block, the video block, the color picker, etc.
Thanks
Tom
Forum rules
If you're posting code, please make sure your code does not include your Adafruit IO Active Key or WiFi network credentials.
If you're posting code, please make sure your code does not include your Adafruit IO Active Key or WiFi network credentials.