Nucleo STM32 F401RE , NodeMCU and TCP Conneciton

Dependencies:   BufferedSerial mbed-rtos mbed

Fork of NucleoF401_ESP8622 by Veysel KARADAG

Connection SCHEMA

/media/uploads/veyselka/schema.jpg

SOCKET DATA

/media/uploads/veyselka/portpeeker.jpg

DETAIL DESCRIPTION

http://veyselkaradag.blogspot.com.tr/

wifi.h

Committer:
veyselka
Date:
2015-02-18
Revision:
1:4a50b910342c

File content as of revision 1:4a50b910342c:


/* ---------------------------------------------------------------------------
** This software is in the public domain, furnished "as is", without technical
** support, and with no warranty, express or implied, as to its usefulness for
** any purpose.
**
** wifi.h
** NodeMCU at Commands
** Author: <veyselka@hotmail.com> <v.karadag@gmail.com> Veysel KARADAG
** -------------------------------------------------------------------------*/


#ifndef __WIFI_H__
#define __WIFI_H__


int connectRouter(char *ssid, char *password );

int at_TEST(void);

int read_ip(char *ip , char *sta_ip );

void remove_all_chars(char* str, char c);

int send_SOC_DATA(char *ip,int soc , char *data );

void Echo_OFF(void);

#endif