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: DHT GPRSInterface HTTPClient_GPRS SDFileSystem USBDevice mbed
TCP_YEELINK/tcp_yeelink.h
- Committer:
- seedteam20
- Date:
- 2015-04-01
- Revision:
- 0:b6b64c1e74bb
File content as of revision 0:b6b64c1e74bb:
/*
IOT_Mbed.h
2013 Copyright (c) Seeed Technology Inc. All right reserved.
Author:Loovee
2013-7-21
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __TCP_YEELINK_H__
#define __TCP_YEELINK_H__
#include "mbed.h"
class IOT_Mbed{
private:
//Serial serial1(P0_19, P0_18); // tx, rx
private:
char yeelinkPostURL[100];
char yeelinkPostHeads[100];
char yeelinkDns[20];
char yeelinkPort[10];
private:
void callTest();
int sendCmdAndWaitForRest(char *dta, const char *resq, int timeout);
void sendCmd(char *dta);
int parseURL(const char *url, char *host, int max_host_len, unsigned int *port, char *path, int max_path_len);
public:
int waitString(const char *str, int timeout);
void init(char *postURL, char *APIKey);
int checkAT(int timeout);
int connectTCP();
int connectTCP(char *ip, char *port);
void postDtaToYeelink();
int postDtaToYeelink(char *url, char *apikey, int sensorDta);
int postDtaToYeelink(char *url, char *apikey, float sensorDta, int dec);
int sendDtaTcp(char *dta, int timeout);
bool sendToYeelink_t();
};
extern IOT_Mbed IOT;
#endif
/*********************************************************************************************************
END FILE
*********************************************************************************************************/