Juanoboy 0 Posted October 15, 2016 Share Posted October 15, 2016 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/ Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.