http_request.h 166 B

12345678910
  1. // http_request.h
  2. #ifndef HTTP_REQUEST_H
  3. #define HTTP_REQUEST_H
  4. #include "esp_err.h"
  5. // 发起HTTP GET请求
  6. void http_get_request(void);
  7. #endif // HTTP_REQUEST_H