flame  2.0.0.0
Main Page

FLAME click

Flame click is a fire detection solution. It carries a PT334-6B silicon phototransistor that’s covered in black epoxy and therefore sensitive only to infrared light.

click Product page


Click library

  • Author : MikroE Team
  • Date : dec 2019.
  • Type : GPIO type

Software Support

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

Standard key functions :

  • Config Object Initialization function.

    void flame_cfg_setup ( flame_cfg_t *cfg );

  • Initialization function.

    FLAME_RETVAL flame_init ( flame_t *ctx, flame_cfg_t *cfg );

Example key functions :

  • Check the flame status function.

    uint8_t flame_check_status ( flame_t *ctx );

  • Get interrupt status.

    uint8_t flame_get_interrupt ( flame_t *ctx );

Examples Description

This application detects fire.

The demo application is composed of two sections :

Application Init

Initialization driver enable's - GPIO and start write log.

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.
flame_cfg_setup( &cfg );
FLAME_MAP_MIKROBUS( cfg, MIKROBUS_1 );
flame_init( &flame, &cfg );
}

Application Task

This is a example which demonstrates the use of Flame Click board.

void application_task ( void )
{
// Task implementation.
flame_state = flame_check_status ( &flame );
if ( ( flame_state == 1 ) && ( flame_state_old == 0) )
{
log_printf( &logger, " ~ FLAME ~ \r\n " );
flame_state_old = 1;
}
if ( ( flame_state == 0 ) && ( flame_state_old == 1 ) )
{
log_printf( &logger, " NO FLAME \r\n " );
flame_state_old = 0;
}
}

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.Flame

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.


flame_cfg_t
Click configuration structure definition.
Definition: flame.h:100
flame_check_status
uint8_t flame_check_status(flame_t *ctx)
Check the flame status function.
FLAME_MAP_MIKROBUS
#define FLAME_MAP_MIKROBUS(cfg, mikrobus)
Definition: flame.h:61
application_task
void application_task(void)
Definition: main.c:60
flame_init
FLAME_RETVAL flame_init(flame_t *ctx, flame_cfg_t *cfg)
Initialization function.
flame_cfg_setup
void flame_cfg_setup(flame_cfg_t *cfg)
Config Object Initialization function.
application_init
void application_init(void)
Definition: main.c:35