inkplate-6-arduino-library/examples/3. Projects/3-Google_calendar_example/Network.h

35 lines
574 B
C
Raw Normal View History

2020-07-31 15:31:48 +02:00
#include "Arduino.h"
#include <WiFi.h>
#include <HTTPClient.h>
#include <WiFiClientSecure.h>
// To get timeZone from main file
extern int timeZone;
// Wifi ssid and password
extern char *ssid;
extern char *pass;
extern char *calendarURL;
#ifndef NETWORK_H
#define NETWORK_H
// All functions defined in Network.cpp
class Network
{
public:
// Functions we can access in main file
void begin();
void getTime(char *timeStr, long offset = 0);
bool getData(char *data);
private:
// Functions called from within our class
void setTime();
};
#endif