LTE IoT 6 click
LTE IoT 6 Click is a compact add-on board that contains an IoT module with worldwide coverage. This board features the SARA-R412M, a cellular module that offers multi-band data transmissions for Low Power Wide Area solutions in a compact form factor from u-Blox.
click Product page
Click library
- Author : Luka Filipovic
- Date : Nov 2020.
- Type : UART GPS/GNSS type
Software Support
We provide a library for the lteiot6 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 lteiot6 Click driver.
Standard key functions :
lteiot6_cfg_setup
Config Object Initialization function.
void lteiot6_cfg_setup(lteiot6_cfg_t *cfg)
LTE IoT 6 configuration object setup function.
LTE IoT 6 Click configuration object.
Definition lteiot6.h:171
lteiot6_init
Initialization function.
err_t lteiot6_init(lteiot6_t *ctx, lteiot6_cfg_t *cfg)
LTE IoT 6 initialization function.
LTE IoT 6 Click context object.
Definition lteiot6.h:146
lteiot6_default_cfg
Click Default Configuration function.
Example key functions :
lteiot6_send_cmd
Send command function.
void lteiot6_send_cmd(lteiot6_t *ctx, char *cmd)
Send command function.
lteiot6_set_sim_apn
Set SIM APN.
void lteiot6_set_sim_apn(lteiot6_t *ctx, char *sim_apn)
Set sim card APN.
lteiot6_send_sms_pdu
Send SMS message to number in pdu mode.
err_t lteiot6_send_sms_pdu(lteiot6_t *ctx, char *service_center_number, char *phone_number, char *sms_text)
Send SMS message to number in pdu mode.
Examples Description
Application example shows device capability to connect
network and send SMS messages using standard "AT" commands.
The demo application is composed of two sections :
Application Init
Initializes driver and wake-up module and test communication.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
Delay_ms ( 1000 );
log_info( &logger, " Application Init " );
Delay_ms ( 1000 );
if ( init_flag == UART_ERROR )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
lteiot6_process();
lteiot6_clear_app_buf();
app_buf_len = 0;
app_buf_cnt = 0;
error_flag = lteiot6_rsp_check();
lteiot6_error_check( error_flag );
error_flag = lteiot6_rsp_check();
lteiot6_error_check( error_flag );
log_info( &logger, " Application Task " );
}
#define LTEIOT6_CMD_ATI
Definition lteiot6.h:71
#define LTEIOT6_CMD_AT
LTE IoT 6 description commands.
Definition lteiot6.h:70
#define LTEIOT6_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition lteiot6.h:129
void lteiot6_reset(lteiot6_t *ctx)
LTE IoT 6 power on.
void lteiot6_power_on(lteiot6_t *ctx)
LTE IoT 6 power on.
void application_init(void)
Definition main.c:179
@ LTEIOT6_CONFIGURE_FOR_CONNECTION
Definition main.c:82
Application Task
Application taks is split in few stages:
- LTEIOT6_CONFIGURE_FOR_CONNECTION:
>Sets configuration to device to be able to connect to newtork.
- LTEIOT6_WAIT_FOR_CONNECTION: >Checks device response untill device sends information that it is connected to network.
- LTEIOT6_CHECK_CONNECTION: >Checks device connection status parameters.
- LTEIOT6_CONFIGURE_FOR_MESSAGES: >Sets configuration to device to send SMS messages.
- LTEIOT6_MESSAGES: >Sends message in selected mode (PDU/TXT).
{
switch ( example_state )
{
{
if (
LTEIOT6_OK == lteiot6_configure_for_connection( ) )
{
}
break;
}
{
{
}
break;
}
{
Delay_ms ( 1000 );
if (
LTEIOT6_OK == lteiot6_check_connection_parameters( ) )
{
}
Delay_ms ( 1000 );
break;
}
{
if (
LTEIOT6_OK == lteiot6_configure_for_meesages( ) )
{
}
Delay_ms ( 1000 );
break;
}
{
lteiot6_send_meesage();
Delay_ms ( 1000 );
break;
}
default:
{
log_error( &logger, " Example state." );
break;
}
}
}
@ LTEIOT6_OK
Definition lteiot6.h:198
void application_task(void)
Definition main.c:232
@ LTEIOT6_CHECK_CONNECTION
Definition main.c:84
@ LTEIOT6_WAIT_FOR_CONNECTION
Definition main.c:83
@ LTEIOT6_MESSAGES
Definition main.c:86
@ LTEIOT6_CONFIGURE_FOR_MESSAGES
Definition main.c:85
Note
In order for the example to work, user needs to set the phone number to which he wants
to send an SMS, and also will need to set an APN and SMSC of entered SIM card. Enter valid data for the following macros: SIM_APN, SIM_SMSC and PHONE_NUMBER_TO_MESSAGE.
>E.g.
SIM_APN "vip.iot", SMSC_ADDRESS_CSCA "\"+381999999\",145", SMSC_ADDRESS_PDU "+381999999\" ,
PHONE_NUMBER_TO_MESSAGE "+381659999999",
PHONE_NUMBER_TO_MESSAGE "999999999"
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.
<strong>Other mikroE Libraries used in the example:</strong>
- MikroSDK.Board
- MikroSDK.Log
- Click.LTEIoT6
<strong>Additional notes and informations</strong>
Depending on the development board you are using, you may need
<a href="https://shop.mikroe.com/usb-uart-click" >USB UART click</a>,
<a href="https://shop.mikroe.com/usb-uart-2-click" >USB UART 2 Click</a> or
<a href="https://shop.mikroe.com/rs232-click" >RS232 Click</a> to connect to your PC, for
development systems with no UART to USB interface available on the board. The
terminal available in all Mikroelektronika
<a href="https://shop.mikroe.com/compilers" >compilers, or any other terminal application of your choice, can be used to read the message.