ESP32怎样连上阿里云平台,有现成的案例吗
离线
你是想连http/https服务器?
离线
是的啊
离线
是的啊
这个很简单了,
服务器上面安装http服务器,
最好用Linux, 命令安装apache2,
比如ubuntu: sudo apt-get install apache2
然后service启动: sudo service apache2 start/restart
乐鑫sdk自带esp32 demo:
esp-idf\examples\protocols\http_request
esp-idf\examples\protocols\https_request
如果你想有交互功能, http服务器可以用php/cgi编程实现。
离线