Fixed UDP Client. Allow interfacing with WebSocketClient. General improvements.
Fork of ESP8266Interface by
Diff: Wifly/Wifly.h
- Revision:
- 4:0bcec6272784
- Parent:
- 3:9aa05e19c62e
- Child:
- 5:81e264dbbf03
diff -r 9aa05e19c62e -r 0bcec6272784 Wifly/Wifly.h --- a/Wifly/Wifly.h Thu Dec 20 10:37:52 2012 +0000 +++ b/Wifly/Wifly.h Thu Dec 20 15:08:58 2012 +0000 @@ -188,6 +188,15 @@ * @returns true if successful */ bool sendCommand(const char * cmd, const char * ack = NULL, char * res = NULL, int timeout = DEFAULT_WAIT_RESP_TIMEOUT); + + /* + * Return true if the module is using dhcp + * + * @returns true if the module is using dhcp + */ + bool isDHCP() { + return state.dhcp; + } bool gethostbyname(const char * host, char * ip);