mirror of
https://gitee.com/peng_zhihui/HoloCubic
synced 2025-11-04 21:19:40 +08:00
18 lines
214 B
C++
18 lines
214 B
C++
#ifndef NETWORK_H
|
|
#define NETWORK_H
|
|
|
|
#include <WiFi.h>
|
|
#include <HTTPClient.h>
|
|
|
|
|
|
class Network
|
|
{
|
|
private:
|
|
|
|
public:
|
|
void init(String ssid, String password);
|
|
unsigned int getBilibiliFans(String url);
|
|
|
|
};
|
|
|
|
#endif |