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

33 lines
532 B
C++

#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;
#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);
bool getData(double *data);
private:
// Functions called from within our class
void setTime();
};
#endif