17 lines
324 B
C
Raw Normal View History

2021-09-28 14:27:26 +08:00
//WLAN <20><>
#ifndef __WLAN_H
#define __WLAN_H
#include "sys.h"
#include "Clock.h"
uint8_t WLAN_CheckNet(void);
uint8_t WLAN_GetIP(uint8_t *ip_str);
uint8_t WLAN_GetIPAddr(uint8_t *ipaddr_str);
uint8_t WLAN_GetNetClockTime(uint8_t *clock_time_str);
uint8_t WLAN_GetWeather(uint8_t *weather_str, uint8_t *city_str);
#endif