データの保存、更新、取得ができるWebサービス「milkcocoa」に接続し、データのプッシュ、送信、取得ができるライブラリです。 https://mlkcca.com/
Dependents: MilkcocoaSample MilkcocoaSampleESP8266_LED MilkcocoaSampleESP8266 MilkcocoaSample_3G ... more
Diff: ESP8266InterfaceTiny/ESP8266Interface.cpp
- Revision:
- 1:4a634c06c5dc
- Parent:
- 0:23e533c4b1ec
- Child:
- 2:9afb66979712
--- a/ESP8266InterfaceTiny/ESP8266Interface.cpp Tue Dec 15 09:56:32 2015 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-#include "ESP8266Interface.h"
-
-ESP8266Interface::ESP8266Interface( PinName tx, PinName rx, PinName reset,
- const char * ssid, const char * phrase, uint32_t baud ) :
- ESP8266(tx, rx, reset, ssid, phrase, baud )
-{
-}
-
-int ESP8266Interface::init()
-{
- ESP8266::reset();
- return 0;
-}
-
-bool ESP8266Interface::connect()
-{
- return ESP8266::connect();
-}
-
-int ESP8266Interface::disconnect()
-{
- return ESP8266::disconnect();
-}
-
-char * ESP8266Interface::getIPAddress()
-{
- return ESP8266::getIPAddress();
-}
\ No newline at end of file
Milkcocoa