thunder  2.0.0.0
Main Page

Thunder click

Thunder click features AS3935 lightning sensor as well as MA5532 coil antenna. It detects the presence and proximity of potentially hazardous lightning activity in the vicinity and provides estimated distance to the center of the storm. It can also provide information on the noise level. Thunder click communicates with the target board microcontroller via SPI and INT lines. The board is designed to use 3.3V or 5V power supply. LED diode (GREEN) indicates the presence of power supply.

click Product page


Click library

  • Author : MikroE Team
  • Date : Jan 2020.
  • Type : SPI type

Software Support

We provide a library for the Thunder 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 Thunder Click driver.

Standard key functions :

Example key functions :

  • thunder_check_int Function checks and returns the interrupt value.
    uint8_t thunder_check_int ( thunder_t *ctx );
  • thunder_get_storm_info Function gets energy of the single lightning and distance estimation for the head of the storm.
    void thunder_get_storm_info ( thunder_t *ctx, uint32_t *energy_out, uint8_t *distance_out );
  • thunder_read_reg Function reads a data byte from the registers.
    err_t thunder_read_reg ( thunder_t *ctx, uint8_t reg, uint8_t *data_out );

Examples Description

This application detects the presence and proximity of potentially

lightning activity and provides estimated distance to the center of the storm. It can also provide information on the noise level.

The demo application is composed of two sections :

Application Init

Initializes SPI driver and performs the reset command and RCO calibrate command. Also configures the device for working properly.

void application_init ( void )
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
THUNDER_MAP_MIKROBUS( cfg, MIKROBUS_1 );
thunder_init( &thunder, &cfg );
thunder_default_cfg( &thunder );
log_info( &logger, " Application Task " );
}

Application Task

Checks if the interrupt event has occured (Listening mode) and after that reads the storm information and logs the results on the USB UART.

void application_task ( void )
{
storm_mode = thunder_check_int ( &thunder );
{
log_printf( &logger, "Noise level too high\r\n\n" );
}
{
log_printf( &logger, "Disturber detected\r\n\n" );
}
{
log_printf( &logger, "Energy of the single lightning : %lu\r\n", storm_energy );
log_printf( &logger, "Distance estimation : %u km\r\n\n", ( uint16_t ) storm_distance );
// Reset configuration to prepare for the next measurement
thunder_default_cfg( &thunder );
}
}

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:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.Thunder

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.


THUNDER_NOISE_LEVEL_INTERR
#define THUNDER_NOISE_LEVEL_INTERR
Definition: thunder.h:205
storm_distance
uint8_t storm_distance
Definition: main.c:33
thunder_read_reg
err_t thunder_read_reg(thunder_t *ctx, uint8_t reg, uint8_t *data_out)
Read reg function.
application_task
void application_task(void)
Definition: main.c:62
thunder_get_storm_info
void thunder_get_storm_info(thunder_t *ctx, uint32_t *energy_out, uint8_t *distance_out)
Storm Information Get function.
thunder_cfg_setup
void thunder_cfg_setup(thunder_cfg_t *cfg)
Config Object Initialization function.
thunder_cfg_t
Click configuration structure definition.
Definition: thunder.h:254
storm_mode
uint8_t storm_mode
Definition: main.c:31
thunder_default_cfg
void thunder_default_cfg(thunder_t *ctx)
Click Default Configuration function.
THUNDER_DISTURBER_INTERR
#define THUNDER_DISTURBER_INTERR
Definition: thunder.h:206
thunder_check_int
uint8_t thunder_check_int(thunder_t *ctx)
Interrupt Check function.
thunder_init
err_t thunder_init(thunder_t *ctx, thunder_cfg_t *cfg)
Initialization function.
application_init
void application_init(void)
Definition: main.c:35
THUNDER_LIGHTNING_INTERR
#define THUNDER_LIGHTNING_INTERR
Definition: thunder.h:207
storm_energy
uint32_t storm_energy
Definition: main.c:32
THUNDER_MAP_MIKROBUS
#define THUNDER_MAP_MIKROBUS(cfg, mikrobus)
Definition: thunder.h:68
thunder_t
Click ctx object definition.
Definition: thunder.h:240