We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]
Rating:
Author: MIKROE
Last Updated: 2024-10-31
Package Version: 2.1.0.3
mikroSDK Library: 2.0.0.0
Category: ZigBee
Downloaded: 29 times
Not followed.
License: MIT license
XBee Click is a compact add-on board providing wireless connectivity to end-point devices in ZigBee mesh networks. This board features the XB24CZ7PIS-004, a low-power Digi XBee® RF module delivering superior performance and interference immunity from Digi International. With its ultra-sensitive receiver, the XB24CZ7PIS-004 operates in the 2.4GHz ISM band (indoor/urban range of 60m and outdoor of 1200m), allowing the formation of robust mesh network optimized for use in the US, Canada, Europe, Australia, and Japan (worldwide acceptance). Alongside firmware updates, it supports commissioning and LED behaviors to aid device deployment and commissioning.
Do you want to subscribe in order to receive notifications regarding "XBEE Click" changes.
Do you want to unsubscribe in order to stop receiving notifications regarding "XBEE Click" changes.
Do you want to report abuse regarding "XBEE Click".
DOWNLOAD LINK | RELATED COMPILER | CONTAINS |
---|---|---|
5656_xbee_click.zip [682.03KB] | mikroC AI for ARM GCC for ARM Clang for ARM mikroC AI for PIC mikroC AI for PIC32 XC32 GCC for RISC-V Clang for RISC-V mikroC AI for dsPIC XC16 |
|
XBee Click is a compact add-on board providing wireless connectivity to end-point devices in ZigBee mesh networks. This board features the XB24CZ7PIS-004, a low-power Digi XBee® RF module delivering superior performance and interference immunity from Digi International. With its ultra-sensitive receiver, the XB24CZ7PIS-004 operates in the 2.4GHz ISM band (indoor/urban range of 60m and outdoor of 1200m), allowing the formation of robust mesh network optimized for use in the US, Canada, Europe, Australia, and Japan (worldwide acceptance). Alongside firmware updates, it supports commissioning and LED behaviors to aid device deployment and commissioning.
We provide a library for the XBEE 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.
This library contains API for XBEE Click driver.
xbee_cfg_setup
Config Object Initialization function.
void xbee_cfg_setup ( xbee_cfg_t *cfg );
xbee_init
Initialization function.
err_t xbee_init ( xbee_t *ctx, xbee_cfg_t *cfg );
xbee_get_serial_number
This function sends a get serial number command.
err_t xbee_get_serial_number ( xbee_t *ctx );
xbee_set_device_name
This function sets the device name (node identifier).
err_t xbee_set_device_name ( xbee_t *ctx, char *dev_name );
xbee_set_destination_address
This function sets the destination address high and low bytes.
err_t xbee_set_destination_address ( xbee_t *ctx, char *dest_addr_high, char *dest_addr_low );
This example demonstrates the use of an XBEE Click board by showing the communication between the two Click boards configured in transparent mode.
The demo application is composed of two sections :
Initializes the driver and configures the Click board by performing a factory reset, and setting the device name, destination address, and api mode to transparent.
void application_init ( void )
{
log_cfg_t log_cfg; /**< Logger config object. */
xbee_cfg_t xbee_cfg; /**< Click config object. */
/**
* Logger initialization.
* Default baud rate: 115200
* Default log level: LOG_LEVEL_DEBUG
* @note If USB_UART_RX and USB_UART_TX
* are defined as HAL_PIN_NC, you will
* need to define them manually for log to work.
* See @b LOG_MAP_USB_UART macro definition for detailed explanation.
*/
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
xbee_cfg_setup( &xbee_cfg );
XBEE_MAP_MIKROBUS( xbee_cfg, MIKROBUS_1 );
if ( UART_ERROR == xbee_init( &xbee, &xbee_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
xbee_hw_reset ( &xbee );
xbee_process( );
xbee_clear_app_buf( );
log_printf( &logger, " - Enter command mode -\r\n" );
xbee_enter_command_mode ( &xbee );
Delay_ms ( 100 );
xbee_display_rsp ( 1000 );
log_printf( &logger, " - Factory Reset -\r\n" );
xbee_factory_reset ( &xbee );
Delay_ms ( 100 );
xbee_display_rsp ( 1000 );
log_printf( &logger, " - Get serial number -\r\n" );
xbee_get_serial_number ( &xbee );
Delay_ms ( 100 );
xbee_display_rsp ( 1000 );
log_printf( &logger, " - Set Device Name -\r\n" );
xbee_set_device_name ( &xbee, DEVICE_NAME );
Delay_ms ( 100 );
xbee_display_rsp ( 1000 );
log_printf( &logger, " - Set Destination Address -\r\n" );
xbee_set_destination_address ( &xbee, DESTINATION_ADDRESS_HIGH, DESTINATION_ADDRESS_LOW );
Delay_ms ( 100 );
xbee_display_rsp ( 1000 );
log_printf( &logger, " - Set API mode -\r\n" );
xbee_set_api_mode ( &xbee, XBEE_MODE_TRANSPARENT );
Delay_ms ( 100 );
xbee_display_rsp ( 1000 );
log_printf( &logger, " - Apply changes -\r\n" );
xbee_apply_changes ( &xbee );
Delay_ms ( 100 );
xbee_display_rsp ( 1000 );
log_printf( &logger, " - Save changes -\r\n" );
xbee_save_changes ( &xbee );
Delay_ms ( 100 );
xbee_display_rsp ( 1000 );
log_printf( &logger, " - Exit command mode -\r\n" );
xbee_exit_command_mode ( &xbee );
Delay_ms ( 100 );
xbee_display_rsp ( 1000 );
app_buf_len = 0;
#ifdef DEMO_APP_TRANSMITTER
log_printf( &logger, " Application Mode: Transmitter\r\n" );
#else
log_printf( &logger, " Application Mode: Receiver\r\n" );
#endif
log_info( &logger, " Application Task " );
}
Depending on the selected application mode, it reads all the received data or sends the desired message every 3 seconds.
void application_task ( void )
{
#ifdef DEMO_APP_TRANSMITTER
xbee_generic_write( &xbee, DEMO_TEXT_MESSAGE, strlen( DEMO_TEXT_MESSAGE ) );
log_printf( &logger, "%s", ( char * ) DEMO_TEXT_MESSAGE );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
#else
xbee_process( );
if ( app_buf_len > 0 )
{
log_printf( &logger, "%s", app_buf );
xbee_clear_app_buf( );
}
#endif
}
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:
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.