mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-21 02:17:56 +00:00
11 lines
168 B
C
11 lines
168 B
C
#ifndef _WIFI_CLIENT_H
|
|
#define _WIFI_CLIENT_H
|
|
|
|
#include <WiFi101.h>
|
|
|
|
|
|
void connect_wifi();
|
|
bool send_data(WiFiClient *client, char* json_data);
|
|
|
|
#endif//_WIFI_CLIENT_H
|