12 lines
182 B
C
12 lines
182 B
C
#ifndef _WIZHELPER_H_
|
|
#define _WIZHELPER_H_
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
int wizInit();
|
|
bool isNetworkAvailable();
|
|
uint8_t* wizGetIPAddress();
|
|
|
|
|
|
#endif // _WIZHELPER_H_
|