im trying to connect my esp32cam in station mode to my home wifi so i can send the photos/data to another RPi3 so it can be analized, but still cant figure it out why it wont connect, any idea what it might be? i did follow the example from station_example.c that comes with the espressif library, i cannot use the serial monitor due an odd hardware glitch from the esp32cam-mb so i relay only on the onboard led for any info, i attach my code below
EDIT: the problem seems to be wifi_err = esp_wifi_init(&config_wifi);
itss unable to initialized the wifi, but im using the same code from the example.
#include "start_server.h"
#include <stdio.h>
static const char *TAG_wifi = "Wifi_error";
static int s_retry_num = 0;
static void event_handler(void* arg, esp_event_base_t event_base,
int32_t event_id, void* event_data)
{
if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_START) {
esp_wifi_connect();
} else if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_DISCONNECTED) {
if (s_retry_num < MAXIMUM_RETRY) {
esp_wifi_connect();
s_retry_num++;
//ESP_LOGI(TAG, "retry to connect to the AP");
} else {
xEventGroupSetBits(s_wifi_event_group, WIFI_FAIL_BIT);
}
//ESP_LOGI(TAG,"connect to the AP fail");
} else if (event_base == IP_EVENT && event_id == IP_EVENT_STA_GOT_IP) {
//ip_event_got_ip_t* event = (ip_event_got_ip_t*) event_data;
//ESP_LOGI(TAG, "got ip:" IPSTR, IP2STR(&event->ip_info.ip));
Log("got ip: ");
s_retry_num = 0;
xEventGroupSetBits(s_wifi_event_group, WIFI_CONNECTED_BIT);
}
}
bool start_wifi(void){
s_wifi_event_group = xEventGroupCreate();
esp_err_t wifi_err;
wifi_init_config_t config_wifi = WIFI_INIT_CONFIG_DEFAULT();
wifi_config_t wifi_config = {
.sta = {
.ssid = SSID,
.password = PASSWORD,
/* Setting a password implies station will connect to all security modes including WEP/WPA.
* However these modes are deprecated and not advisable to be used. Incase your Access point
* doesn't support WPA2, these mode can be enabled by commenting below line */
.threshold.authmode = WIFI_AUTH_WPA2_PSK,
},
};
if( esp_netif_init() != ESP_OK ){ //Initialization and deinitialization of underlying TCP/IP stack and esp-netif instances
//Log((char*)"Error netif init");
return;
} else {
esp_event_loop_create_default();
esp_netif_create_default_wifi_sta();
wifi_err = esp_wifi_init(&config_wifi);
// morse_Code(2,200,false);
// morse_Code(1,1000,false);
// morse_Code(2,200,false);
if (wifi_err == ESP_OK){
esp_event_handler_instance_t instance_any_id;
esp_event_handler_instance_t instance_got_ip;
esp_event_handler_instance_register(WIFI_EVENT, ESP_EVENT_ANY_ID, &event_handler,
NULL, &instance_any_id);
esp_event_handler_instance_register(IP_EVENT, IP_EVENT_STA_GOT_IP, &event_handler,
NULL, &instance_got_ip);
esp_wifi_set_mode(WIFI_MODE_STA); // set station mode
esp_wifi_set_config(WIFI_IF_STA, &wifi_config); // set your own ssid and password from start_server.h
esp_wifi_start();
/* Waiting until either the connection is established (WIFI_CONNECTED_BIT) or connection failed for the maximum
* number of re-tries (WIFI_FAIL_BIT). The bits are set by event_handler() (see above) */
EventBits_t bits = xEventGroupWaitBits(s_wifi_event_group,
WIFI_CONNECTED_BIT | WIFI_FAIL_BIT, pdFALSE,
pdFALSE, portMAX_DELAY);
/* xEventGroupWaitBits() returns the bits before the call returned, hence we can test which event actually
* happened. */
if (bits & WIFI_CONNECTED_BIT) {
ESP_LOGI(TAG_wifi, "connected to ap SSID:%s password:%s",
SSID, PASSWORD);
return true;
} else if (bits & WIFI_FAIL_BIT) {
ESP_LOGI(TAG_wifi, "Failed to connect to SSID:%s, password:%s",
SSID, PASSWORD);
return false;
} else {
ESP_LOGE(TAG_wifi, "UNEXPECTED EVENT");
}
}
}
}