2020-11-07 22:37:33 +01:00
|
|
|
#ifndef _WIZHELPER_H_
|
|
|
|
#define _WIZHELPER_H_
|
|
|
|
|
2020-11-10 14:51:40 +01:00
|
|
|
#include <stdbool.h>
|
2020-11-20 12:20:30 +01:00
|
|
|
#include <stdint.h>
|
2020-11-10 14:51:40 +01:00
|
|
|
|
2020-11-27 12:28:56 +01:00
|
|
|
|
2020-11-08 15:56:14 +01:00
|
|
|
int wizInit();
|
2020-11-10 14:51:40 +01:00
|
|
|
bool isNetworkAvailable();
|
2020-11-20 12:20:30 +01:00
|
|
|
uint8_t* wizGetIPAddress();
|
2020-11-27 12:28:56 +01:00
|
|
|
bool wizDnsQuery(char *name, uint8_t *ip);
|
2020-11-07 22:37:33 +01:00
|
|
|
|
|
|
|
#endif // _WIZHELPER_H_
|