Jump to content
43oh

Recommended Posts

Hi

 

the problem is to get a picture flashed on the CC3200 to show up in the web browser.

 

In Arduino when including the library SD.h, gives the possibility to generate a file handle, for example

    File webFile;  

 

then using the handle to open a web page file

    webFile = SD.open("index.htm");

 

finally web page is sent to client
    if (webFile) {
         while(webFile.available()) {
              client.write(webFile.read());
         }
         webFile.close();
    }

 

Any idea how to accomplish this in Energia?

If have researched into use of SLFS but can not find any solution.

 

regards,

 

 

 

source: http://startingelectronics.org/tutorials/arduino/ethernet-shield-web-server-tutorial/SD-card-web-server-links/

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...