2019-07-01 02:02 AM
Hello forum,
Is it possible to read a file from a website (e.g www.WebSiteName.com/file.txt) with STM32?
I'm going to read data through the board B-L475E-IoT with access to internet. With this Board i can to send the data to the Cloud (Microsoft Azure IoT Central) with "MQTT Protocol" and these data are processed via Cloud-Processor and then available at a web address in file-format. How can i get access to this web-address through my board and read the data?
2019-07-01 04:15 AM
Use HTTP GET
2019-07-01 05:00 AM
Or FTP/TFTP.
Remember that the STM32 side needs to implement the according ethernet-based protocol.
2019-07-01 11:38 PM
That is correct. When I try to read the data from the website, I use HTTP. But my problem is how can I implement this protocol (maybe without CSS, Javascript, ...) in STM32.