I would like to design Arduino-based applications that use the ESP8266 wifi module.
I have the "Esp8266EasyIoT" libraries for Arduino that require the use of an "easyIoT" server. As I do not have a Raspberry I have downloaded the Windows version of the server.
how set server IP, AP and AP username and password in Esp8266EasyIoTConfig.h ?
i can use virtual router ?
This is quite easy. Just edit Esp8266EasyIoTConfig.h and set (replace XXX) the SSID name and password as well as the IP address of the EasyIoT server.
#ifndef EasyIoTEspConfig_h
#define EasyIoTEspConfig_h
#define AP_SSID "XXXXXXXX" //ACCESS POINT ID
#define AP_PASSWORD "XXXXXXXX" //ACCES POINT password
#define SERVER_IP "192.168.1.4" //EasyIoT server IP address
#define SERVER_PORT "37602" //EasyIoT server port
#define DEBUG
#endif