//THIS DOES NOT WORK IN ESP_IDF NEWER VERSION!!! (in platform io)
#include <string.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/event_groups.h"
#include "esp_system.h"
#include "esp_wifi.h"
#include "esp_event.h"
#include "esp_log.h"
#include "nvs_flash.h"
#include "lwip/err.h"
#include "lwip/sys.h"
#include <time.h>
#include <sys/time.h>
#include <esp_sntp.h>
// WiFi parameters
#define WIFI_SSID "Wokwi-GUEST"
//ssid
#define WIFI_PASS ""
//password
// Event group
static EventGroupHandle_t wifi_event_group;
const int CONNECTED_BIT = BIT0;
// Wifi event handler
static esp_err_t event_handler(void *ctx, system_event_t *event)
{
switch (event->event_id) {
case SYSTEM_EVENT_STA_START:
esp_wifi_connect();
break;
case SYSTEM_EVENT_STA_GOT_IP:
xEventGroupSetBits(wifi_event_group, CONNECTED_BIT);
break;
case SYSTEM_EVENT_STA_DISCONNECTED:
xEventGroupClearBits(wifi_event_group, CONNECTED_BIT);
break;
default:
break;
}
return ESP_OK;
}
// Main task
void main_task(void *pvParameter)
{
tcpip_adapter_ip_info_t ip_info;
// wait for connection
printf("Waiting for connection to the wifi network... \n");
xEventGroupWaitBits(wifi_event_group, CONNECTED_BIT, false, true, portMAX_DELAY);
printf("Connected!\n");
// print the local IP address
ESP_ERROR_CHECK(tcpip_adapter_get_ip_info(TCPIP_ADAPTER_IF_STA, &ip_info));
printf("IP Address: %s\n", ip4addr_ntoa(&ip_info.ip));
printf("Subnet mask: %s\n", ip4addr_ntoa(&ip_info.netmask));
printf("Gateway: %s\n", ip4addr_ntoa(&ip_info.gw));
while (1) {
vTaskDelay(1000 / portTICK_RATE_MS);
}
}
// Connection code
void connect_wifi()
{
printf("ESP-IDF version used: ");
printf(IDF_VER"\n");
// disable the default wifi logging
esp_log_level_set("wifi", ESP_LOG_NONE);
// initialize NVS
ESP_ERROR_CHECK(nvs_flash_init());
// create the event group to handle wifi events
wifi_event_group = xEventGroupCreate();
// initialize the tcp stack
tcpip_adapter_init();
// initialize the wifi event handler
ESP_ERROR_CHECK(esp_event_loop_init(event_handler, NULL));
// initialize the wifi stack in STAtion mode with config in RAM
wifi_init_config_t wifi_init_config = WIFI_INIT_CONFIG_DEFAULT();
ESP_ERROR_CHECK(esp_wifi_init(&wifi_init_config));
ESP_ERROR_CHECK(esp_wifi_set_storage(WIFI_STORAGE_RAM));
ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_STA));
// configure the wifi connection and start the interface
wifi_config_t wifi_config = {
.sta = {
.ssid = WIFI_SSID,
.password = WIFI_PASS,
},
};
// start the main task
xTaskCreate(&main_task, "main_task", 2048, NULL, 5, NULL);
ESP_ERROR_CHECK(esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_config));
ESP_ERROR_CHECK(esp_wifi_start());
printf("Connecting to %s\n", WIFI_SSID);
}
/// NTP CODE
void time_sync_notification_cb(struct timeval *tv)
{
printf("%s","Sync Notification!\n");
}
void init_sntp()
{
printf("%s","Initializing SNTP\n");
sntp_setoperatingmode(SNTP_OPMODE_POLL);
sntp_setservername(0, "2.pool.ntp.org");
sntp_set_time_sync_notification_cb(time_sync_notification_cb);
sntp_set_sync_mode(SNTP_SYNC_MODE_SMOOTH); //remove this if you want updated time instatly
sntp_init();
}
// Main application
void app_main()
{
const char* timezone = "MYT-8"; //your timezone
setenv("TZ",timezone,1);
tzset();
connect_wifi();
init_sntp();
while(1){
static time_t now;
time(&now);
printf("%s", ctime(&now));
vTaskDelay(1000 / portTICK_RATE_MS);
}
}