15 lines
262 B
C
Raw Normal View History

2021-01-09 22:01:21 +01:00
#ifndef _WIZHELPER_H_
#define _WIZHELPER_H_
#include <stdbool.h>
#include <stdint.h>
2021-02-07 13:47:34 +01:00
#define NTP_SERVER "0.pool.ntp.org"
2021-01-09 22:01:21 +01:00
int wizInit();
bool isNetworkAvailable();
uint8_t* wizGetIPAddress();
bool wizDnsQuery(char *name, uint8_t *ip);
#endif // _WIZHELPER_H_