16 lines
266 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 14:14:54 +01:00
#define NTP_SERVER "0.de.pool.ntp.org"
2021-02-07 13:47:34 +01:00
2021-01-09 22:01:21 +01:00
int wizInit();
bool isNetworkAvailable();
uint8_t* wizGetIPAddress();
bool wizDnsQuery(char *name, uint8_t *ip);
2021-02-07 14:14:54 +01:00
#endif // _WIZHELPER_H_