weather.h 401 B

1234567891011121314
  1. /**
  2. * @Author: 李建
  3. * @Date: 2025/5/22 14:40
  4. * Description: 接入 wifi 后,实现请求天气接口并显示到 UI界面
  5. * Copyright: Copyright (©) 2025 永续绿建. All rights reserved.
  6. */
  7. #ifndef WIRE_CONTROLLER_WEATHER_H
  8. #define WIRE_CONTROLLER_WEATHER_H
  9. #define API_URL "http://114.115.251.196:8299/api/v1/weather/device/"
  10. void request_weather();
  11. #endif //WIRE_CONTROLLER_WEATHER_H