Refer to connect to wifi from https://www.cooking-hacks.com/mysignals-hw-ehealth-medical-biometric-iot-platform-arduino-tutorial.html
#include <MySignals.h>
#include "Wire.h"
#include "SPI.h"
void setup()
{
Serial.begin(115200);
MySignals.begin();
//Enable WiFi ESP8266 Power -> bit1:1
bitSet(MySignals.expanderState, EXP_ESP8266_POWER);
MySignals.expanderWrite(MySignals.expanderState);
MySignals.initSensorUART();
MySignals.enableSensorUART(WIFI_ESP8266);
delay(1000);
// Checks if the WiFi module is started
int8_t answer = sendATcommand("AT", "OK", 6000);
if (answer == 0)
{
MySignals.println("Error");
// waits for an answer from the module
while (answer == 0)
{
// Send AT every two seconds and wait for the answer
answer = sendATcommand("AT", "OK", 6000);
}
}
else if (answer == 1)
{
MySignals.println("WiFi succesfully working!");
if (sendATcommand("AT+CWMODE=1", "OK", 6000))
{
MySignals.println("CWMODE OK");
}
else
{
MySignals.println("CWMODE Error");
}
//Change here your WIFI_SSID and WIFI_PASSWORD
if (sendATcommand("AT+CWJAP=\"WIFI_SSID\",\"WIFI_PASSWORD\"", "OK", 20000))
{
MySignals.println("Connected!");
}
else
{
MySignals.println("Error");
}
}
}
void loop()
{
delay(5000);
}
int8_t sendATcommand(char* ATcommand, char* expected_answer1, unsigned int timeout)
{
uint8_t x = 0, answer = 0;
char response[500];
unsigned long previous;
memset(response, '\0', sizeof(response)); // Initialize the string
delay(100);
while ( Serial.available() > 0) Serial.read(); // Clean the input buffer
delay(1000);
Serial.println(ATcommand); // Send the AT command
x = 0;
previous = millis();
// this loop waits for the answer
do
{
if (Serial.available() != 0)
{
response[x] = Serial.read();
x++;
// check if the desired answer is in the response of the module
if (strstr(response, expected_answer1) != NULL)
{
answer = 1;
//MySignals.println(response);
}
}
// Waits for the asnwer with time out
}
while ((answer == 0) && ((millis() - previous) < timeout));
return answer;
}
I can't connect to router even i use the same SSID and password

responseifansweris 0