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

49 lines
1.1 KiB
C
Raw Normal View History

2020-09-24 10:43:08 +02:00
/*
Network.h
Inkplate 6 Arduino library
David Zovko, Borna Biro, Denis Vajak, Zvonimir Haramustek @ e-radionica.com
September 24, 2020
https://github.com/e-radionicacom/Inkplate-6-Arduino-library
For support, please reach over forums: forum.e-radionica.com/en
For more info about the product, please check: www.inkplate.io
This code is released under the GNU Lesser General Public License v3.0: https://www.gnu.org/licenses/lgpl-3.0.en.html
Please review the LICENSE file included with this example.
If you have any questions about licensing, please contact techsupport@e-radionica.com
Distributed as-is; no warranty is given.
*/
2020-09-07 11:40:01 +02:00
#include "Arduino.h"
#include <HTTPClient.h>
2020-09-24 10:43:08 +02:00
#include <WiFi.h>
2020-09-07 11:40:01 +02:00
#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
{
2020-09-24 10:43:08 +02:00
public:
2020-09-07 11:40:01 +02:00
// Functions we can access in main file
void begin();
void getTime(char *timeStr);
bool getData(double *data);
2020-09-24 10:43:08 +02:00
private:
2020-09-07 11:40:01 +02:00
// Functions called from within our class
void setTime();
};
#endif