Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
ESP8266Interface.cpp
00001 #include "ESP8266Interface.h" 00002 00003 ESP8266Interface::ESP8266Interface( PinName tx, PinName rx, PinName reset, 00004 const char * ssid, const char * phrase, uint32_t baud ) : 00005 ESP8266(tx, rx, reset, ssid, phrase, baud ) 00006 { 00007 } 00008 00009 int ESP8266Interface::init() 00010 { 00011 ESP8266::reset(); 00012 return 0; 00013 } 00014 00015 bool ESP8266Interface::connect() 00016 { 00017 return ESP8266::connect(); 00018 } 00019 00020 int ESP8266Interface::disconnect() 00021 { 00022 return ESP8266::disconnect(); 00023 } 00024 00025 char * ESP8266Interface::getIPAddress() 00026 { 00027 return ESP8266::getIPAddress(); 00028 }
Generated on Wed Jul 13 2022 01:59:28 by
