While I think the title sums it pretty simply, I would like the ability to save local files (like the Rules can now) from my drivers. Originally I mentioned this as beta feedback for the sake of logging. However now I have a much more "necessary" case:
Saving an image that is received from an HTTP Get request. Specifically for my BlinkAPI driver, so that the driver can request the thumbnail from one of the user's cameras and then display it on their dashboard.
- I know the dashboard can already display images loaded as local files (just tried it out to be sure) and the files could be named to match so the URL of an Image tile stays the same.
- The driver can already receive the data, it just has nowhere to store the data in a format that can be used. Right now I can toss it into strings, lists of bytes, or oddly enough I was able to create an attribute with the type of "image" (attribute "Thumbnail Image", "image") without error but the event just shows a few character string.
- So maybe all this would require is being able to call a system function to redirect the response data to local storage and setting the file name.