Ovidiu Predescu

Results 16 comments of Ovidiu Predescu

This project appears to be dead, big bummer! In any case, it would probably make sense to delegate the authentication to a third-party system like Google, Facebook etc., and have...

Do you have `rio-mbtiles` installed? Try running: `pip3 install rio-mbtiles`

The method that lets you do that is not appropriately named, but still does what you want: ``` web_server.send_content_type("Access-Control-Allow-Origin: *"); ``` You'd need to place that line in your custom...

I'm not sure I understand your use case. Are you thinking of storing application data in files stored on the SD card? If so, yes, you should be able to.

@DubbyTT The BlinkLED example uses exactly that use case, except it's using jQuery instead of AngularJS. See the `ledStatus` function in examples/BlinkLed/static/main.js, which makes a request to the Arduino web...

Yes, thanks for pointing it out. Feel free to modify get_file_from_path() in TinyWebServer.cpp to deal with directories, and send your code for review. Thanks! On Fri, Feb 10, 2012 at...

Can you please add some logging with timing information to get some more insights into what's going on in the upload phase? My guess is writing on the SD card...

The problem with this code is that you're blocking the web server for the duration of CONTINUE_TIMEOUT, which means no other requests can be served during that time. A better...

It makes sense. Unfortunately I don't have an Arduino+Ethernet setup handy at the moment. Can you try out your idea and see if it improves things?

The `put_handler` is used to specify an application specific function that handles the HTTP PUT action. In the case of the FileUpload example, that function is set to the `file_uploader_handler`...