13 lines
225 B
C
Raw Normal View History

#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);
#endif // _WIZHELPER_H_