17 lines
253 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 18:35:30 +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-16 11:01:01 +01:00
uint64_t wizSntpQuery();
2021-02-07 18:35:30 +01:00
2021-02-07 14:14:54 +01:00
#endif // _WIZHELPER_H_