rotaryw2 2.1.0.0
Main Page

Rotary W 2 click

‍Rotary W 2 Click is a compact add-on board that allows you to add a precision input knob to your design. This board features the TLC5925, a low-power 16-channel constant-current LED sink driver from Texas Instruments that, combined with a high-quality rotary encoder from ALPS, the EC12D1564402, allows you to add a precision input knob to your design. It also features an LED ring composed of 16 individual white LEDs that can be used to represent the encoder position more visually.

click Product page


Click library

  • Author : Nenad Filipovic
  • Date : Sep 2023.
  • Type : SPI type

Software Support

We provide a library for the Rotary W 2 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 from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Library Description

‍This library contains API for Rotary W 2 Click driver.

Standard key functions :

Example key functions :

Example Description

‍This library contains the API for the Rotary W 2 Click driver to control LEDs states and a rotary encoder position readings.

The demo application is composed of two sections :

Application Init

‍Initialization of SPI module and log UART. After the driver init, the app executes a default configuration and turn off all LEDs.

void application_init ( void )
{
log_cfg_t log_cfg;
rotaryw2_cfg_t rotaryw2_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
rotaryw2_cfg_setup( &rotaryw2_cfg );
ROTARYW2_MAP_MIKROBUS( rotaryw2_cfg, MIKROBUS_1 );
if ( SPI_MASTER_ERROR == rotaryw2_init( &rotaryw2, &rotaryw2_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
if ( ROTARYW2_ERROR == rotaryw2_default_cfg ( &rotaryw2 ) )
{
log_error( &logger, " Default configuration." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}
#define ROTARYW2_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition rotaryw2.h:140
void application_init(void)
Definition main.c:78
@ ROTARYW2_ERROR
Definition rotaryw2.h:201

Application Task

‍This example demonstrates the use of the Rotary W 2 Click boardâ„¢. The demo example shows the functionality of a rotary encoder used to control LEDs.

void application_task ( void )
{
if ( ROTARYW2_OK == rotaryw2_set_led_data( &rotaryw2, led_data ) )
{
rotaryw2_switch_detection( );
rotaryw2_encoder_mechanism( );
}
}
void application_task(void)
Definition main.c:114
@ ROTARYW2_OK
Definition rotaryw2.h:200

The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Other Mikroe Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.RotaryW2

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. UART terminal is available in all MikroElektronika compilers.