wifi9  2.0.0.0
Main Page

Wifi 9 click

WiFi 9 Click is fully embedded stand-alone Wi-Fi module, equipped with the PAN9420 a 2.4 GHz ISM band Wi-Fi-embedded module which includes a wireless radio and an MCU for easy integration of Wi-Fi connectivity into various electronic devices.

click Product page


Click library

Software Support

We provide a library for the Wifi9 Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.

Package can be downloaded/installed directly form compilers IDE(recommended way), or downloaded from our LibStock, or found on mikroE github account.

Library Description

This library contains API for Wifi9 Click driver.

Standard key functions :

Example key functions :

Examples Description

This example reads and processes data from Wifi 9 clicks.

The demo application is composed of two sections :

Application Init

Initializes driver and wake-up module.

void application_init ( void )
{
log_cfg_t log_cfg;
// Logger initialization.
LOG_MAP_USB_UART( log_cfg );
log_cfg.level = LOG_LEVEL_DEBUG;
log_cfg.baud = 115200;
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
// Click initialization.
wifi9_cfg_setup( &cfg );
WIFI9_MAP_MIKROBUS( cfg, MIKROBUS_1 );
wifi9_init( &wifi9, &cfg );
wifi9_module_power( &wifi9 );
Delay_ms( 4000 );
wifi9_process( );
log_printf( &logger, "---------------------\r\n" );
log_printf( &logger, "---- System Info ----\r\n" );
log_printf( &logger, "---------------------\r\n" );
Delay_ms( 500 );
Delay_ms( 500 );
Delay_ms( 500 );
Delay_ms( 500 );
Delay_ms( 500 );
Delay_ms( 5000 );
log_printf( &logger, "--------------------------\r\n" );
log_printf( &logger, "---- Start NETCAT app ----\r\n" );
log_printf( &logger, "--------------------------\r\n" );
log_printf( &logger, "> Reads the current Station status\r\n" );
Delay_ms( 2000 );
log_printf( &logger, "> Set Station to ON status\r\n" );
Delay_ms( 2000 );
log_printf( &logger, "> Sets Station SSID and PASSWORD\r\n" );
Delay_ms( 4000 );
log_printf( &logger, "> Turn OFF - Netcat module\r\n" );
Delay_ms( 2000 );
log_printf( &logger, "> Turn ON - Netcat module\r\n" );
Delay_ms( 2000 );
log_printf( &logger, "> Sets the Netcat module as a server with port 1234\r\n" );
Delay_ms( 2000 );
log_printf( &logger, "> Excludes Netcat authentication\r\n" );
Delay_ms( 2000 );
log_printf( &logger, "> Gets the current received IP address\r\n" );
Delay_ms( 2000 );
log_printf( &logger, "> At the moment, a netcat server at port 1234 has been built\r\n" );
log_printf( &logger, "> The module is transferred to BIN-UART - for data collection\r\n" );
log_printf( &logger, "test" );
Delay_ms( 5000 );
}

Application Task

Reads the received data.

void application_task ( void )
{
wifi9_process( );
}

The full application code, and ready to use projects can be installed directly form compilers IDE(recommneded) or found on LibStock page or mikroE GitHub accaunt.

Other mikroE Libraries used in the example:

Additional notes and informations

Depending on the development board you are using, you may need USB UART click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all Mikroelektronika compilers, or any other terminal application of your choice, can be used to read the message.