Nucleo STM32 F401RE , NodeMCU and TCP Conneciton

Dependencies:   BufferedSerial mbed-rtos mbed

Fork of NucleoF401_ESP8622 by Veysel KARADAG

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers wifi.h Source File

wifi.h

00001 
00002 /* ---------------------------------------------------------------------------
00003 ** This software is in the public domain, furnished "as is", without technical
00004 ** support, and with no warranty, express or implied, as to its usefulness for
00005 ** any purpose.
00006 **
00007 ** wifi.h
00008 ** NodeMCU at Commands
00009 ** Author: <veyselka@hotmail.com> <v.karadag@gmail.com> Veysel KARADAG
00010 ** -------------------------------------------------------------------------*/
00011 
00012 
00013 #ifndef __WIFI_H__
00014 #define __WIFI_H__
00015 
00016 
00017 int connectRouter(char *ssid, char *password );
00018 
00019 int at_TEST(void);
00020 
00021 int read_ip(char *ip , char *sta_ip );
00022 
00023 void remove_all_chars(char* str, char c);
00024 
00025 int send_SOC_DATA(char *ip,int soc , char *data );
00026 
00027 void Echo_OFF(void);
00028 
00029 #endif