データの保存、更新、取得ができるWebサービス「milkcocoa」に接続し、データのプッシュ、送信、取得ができるライブラリを使ったサンプルです。 https://mlkcca.com/

Dependencies:   Milkcocoa mbed

Committer:
jksoft
Date:
Fri Dec 18 04:34:22 2015 +0000
Revision:
1:e2ca99ac317b
ESP8266?????????????;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jksoft 1:e2ca99ac317b 1 /* ESP8266Interface.h */
jksoft 1:e2ca99ac317b 2 /* Copyright (C) 2012 mbed.org, MIT License
jksoft 1:e2ca99ac317b 3 *
jksoft 1:e2ca99ac317b 4 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
jksoft 1:e2ca99ac317b 5 * and associated documentation files (the "Software"), to deal in the Software without restriction,
jksoft 1:e2ca99ac317b 6 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
jksoft 1:e2ca99ac317b 7 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
jksoft 1:e2ca99ac317b 8 * furnished to do so, subject to the following conditions:
jksoft 1:e2ca99ac317b 9 *
jksoft 1:e2ca99ac317b 10 * The above copyright notice and this permission notice shall be included in all copies or
jksoft 1:e2ca99ac317b 11 * substantial portions of the Software.
jksoft 1:e2ca99ac317b 12 *
jksoft 1:e2ca99ac317b 13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
jksoft 1:e2ca99ac317b 14 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
jksoft 1:e2ca99ac317b 15 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
jksoft 1:e2ca99ac317b 16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
jksoft 1:e2ca99ac317b 17 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
jksoft 1:e2ca99ac317b 18 */
jksoft 1:e2ca99ac317b 19
jksoft 1:e2ca99ac317b 20 #ifndef ESP8266INTERFACE_H_
jksoft 1:e2ca99ac317b 21 #define ESP8266INTERFACE_H_
jksoft 1:e2ca99ac317b 22
jksoft 1:e2ca99ac317b 23 #include "ESP8266.h"
jksoft 1:e2ca99ac317b 24 #include "Endpoint.h"
jksoft 1:e2ca99ac317b 25
jksoft 1:e2ca99ac317b 26 /**
jksoft 1:e2ca99ac317b 27 * Interface using ESP8266 to connect to an IP-based network
jksoft 1:e2ca99ac317b 28 */
jksoft 1:e2ca99ac317b 29 class ESP8266Interface: public ESP8266 {
jksoft 1:e2ca99ac317b 30 public:
jksoft 1:e2ca99ac317b 31
jksoft 1:e2ca99ac317b 32 /**
jksoft 1:e2ca99ac317b 33 * Constructor
jksoft 1:e2ca99ac317b 34 *
jksoft 1:e2ca99ac317b 35 * \param tx mbed pin to use for tx line of Serial interface
jksoft 1:e2ca99ac317b 36 * \param rx mbed pin to use for rx line of Serial interface
jksoft 1:e2ca99ac317b 37 * \param reset reset pin of the wifi module ()
jksoft 1:e2ca99ac317b 38 * \param ssid ssid of the network
jksoft 1:e2ca99ac317b 39 * \param phrase WEP or WPA key
jksoft 1:e2ca99ac317b 40 * \param baud the baudrate of the serial connection (defaults to 115200, diff revs of the firmware use diff baud rates
jksoft 1:e2ca99ac317b 41 */
jksoft 1:e2ca99ac317b 42 ESP8266Interface(PinName tx, PinName rx, PinName reset, const char * ssid, const char * phrase, uint32_t baud = 115200 );
jksoft 1:e2ca99ac317b 43
jksoft 1:e2ca99ac317b 44 /** Initialize the interface with DHCP.
jksoft 1:e2ca99ac317b 45 * Initialize the interface and configure it to use DHCP (no connection at this point).
jksoft 1:e2ca99ac317b 46 * \return 0 on success, a negative number on failure
jksoft 1:e2ca99ac317b 47 */
jksoft 1:e2ca99ac317b 48 int init(); //With DHCP
jksoft 1:e2ca99ac317b 49
jksoft 1:e2ca99ac317b 50 /** Connect
jksoft 1:e2ca99ac317b 51 * Bring the interface up, start DHCP if needed.
jksoft 1:e2ca99ac317b 52 * \return 0 on success, a negative number on failure
jksoft 1:e2ca99ac317b 53 */
jksoft 1:e2ca99ac317b 54 bool connect();
jksoft 1:e2ca99ac317b 55
jksoft 1:e2ca99ac317b 56 /** Disconnect
jksoft 1:e2ca99ac317b 57 * Bring the interface down
jksoft 1:e2ca99ac317b 58 * \return 0 on success, a negative number on failure
jksoft 1:e2ca99ac317b 59 */
jksoft 1:e2ca99ac317b 60 int disconnect();
jksoft 1:e2ca99ac317b 61
jksoft 1:e2ca99ac317b 62 /** Get IP address
jksoft 1:e2ca99ac317b 63 *
jksoft 1:e2ca99ac317b 64 * \return ip address
jksoft 1:e2ca99ac317b 65 */
jksoft 1:e2ca99ac317b 66 char* getIPAddress();
jksoft 1:e2ca99ac317b 67
jksoft 1:e2ca99ac317b 68 private:
jksoft 1:e2ca99ac317b 69 };
jksoft 1:e2ca99ac317b 70
jksoft 1:e2ca99ac317b 71 #include "UDPSocket.h"
jksoft 1:e2ca99ac317b 72
jksoft 1:e2ca99ac317b 73 #endif /* ESP8266INTERFACE_H_ */