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.
Dependencies: BufferedSerial
Dependents: esp8266_nodeMCU1 esp8266_2_thingspeak1 Solarator_0-0-2 IoTBurglar_and_Fire_AlarmSystem ... more
Fork of ESP8266Interface by
ESP8266Interface.cpp
00001 #include "ESP8266Interface.h" 00002 00003 ESP8266Interface::ESP8266Interface(PinName tx, PinName rx, PinName reset, 00004 int baud, int timeout) : 00005 ESP8266(tx, rx, reset, baud, timeout) { 00006 } 00007 00008 bool ESP8266Interface::init() { 00009 return ESP8266::init(); 00010 } 00011 00012 bool ESP8266Interface::connect(const char * ssid, const char * phrase) { 00013 return ESP8266::connect(ssid, phrase); 00014 } 00015 00016 int ESP8266Interface::disconnect() { 00017 return ESP8266::disconnect(); 00018 } 00019 00020 const char *ESP8266Interface::getIPAddress() { 00021 return ESP8266::getIPAddress(); 00022 }
Generated on Tue Jul 12 2022 18:54:25 by
1.7.2

Adafruit Huzzah