-->
Page 3 of 5

Re: Share folder of my laptop with the ESP8266

PostPosted: Tue May 28, 2019 1:27 pm
by Dan Kiefer
Hi davydnorris

No, unfortunately I have no experience in any of these languages. 'My languages' are ANSI C, VB.Net and C#. I will soon add Python to that list, for my work. But for now that's it. As you probably can see from my question, I am a newbie when it comes to network communication.

Thanks for pointing my to Mosquitto. It will be a possibility to explore, even though I hoped to find a solution without any third party tools. But as I understand from all these answers, this is probably impossible at the moment. Whatever the solution will be, it will take me to new horizons. I hope to come back to this thread and share my experience.

Kind regards
Dan

Re: Share folder of my laptop with the ESP8266

PostPosted: Tue May 28, 2019 6:19 pm
by davydnorris
Hi Dan,

I'm not a big .Net user but I am sure you could really easily knock together a simple ASP.Net app in either C# or VB.Net that takes a POST command and save the contents. You could run it in IIS on your laptop.

This looks like a good starting point: https://www.codeproject.com/Articles/137979/Simple-HTTP-Server-in-C

Re: Share folder of my laptop with the ESP8266

PostPosted: Wed May 29, 2019 1:03 am
by schufti
or even easier - without need for heavyweights like IIS - opening a tcp/udp port and implementing a minimal checksumed protocol for transfer (you can even run it in background with "run-as-service"). less than 20 lines in VB.net, same on arduino.

Re: Share folder of my laptop with the ESP8266

PostPosted: Wed May 29, 2019 12:52 pm
by Dan Kiefer
Indeed, this UDP stuff may be the easiest solution. I even found an example that does pretty much what I am looking for (http://smallbits.marshall-tribe.net/blog/2016/05/21/esp8266-networking-basics).

Thanks again to all who contributed,
Dan