NOTE: The GPS functionality in the SiP firmware is not currently supported. However, the user can develop their FW using Nordic's SDK, the nRF Connect SDK, and update the SiP using the SWD interface.
How does it work?
LTE IoT 4 Click is based on the nRF9160, a compact, highly-integrated System-in-Package (SiP) with integrated ARM® Cortex®-M33 processor, multimode LTE-M/ NB-IoT modem, RF front end (RFFE), GPS, and power management from Nordic Semiconductor. ARM® Cortex®-M33 processor is supported by 1MB of Flash and 256KB RAM memory with advanced security features, like Arm CryptoCell that enhances security by offering cryptographic and security resources to help to protect your IoT applications from various attack threats. It also has built-in assisted GPS suitable for tracking applications that combines location data from the Cloud with GPS satellite to allow remote monitoring of the device position. The nRF9160 is certified to operate in the most important regions, networks, and LTE bands around the world.
The nRF9160 is specifically designed to take full advantage of the energy efficiency associated with the LTE-M and NB-IoT standards. It supports both the PSM and eDRX power-saving modes, enabling the nRF9160 to sleep for a longer period. At the left side of this Click board™, there is an additional header, labeled as SWD, which offers full support of debugging and programming capabilities through the serial wire debug (SWD) interface (SWDIO, SWCLK, and SWO).
LTE IoT 4 Click communicates with MCU using the UART interface as its default communication protocol with the option for the users to use other interfaces such as SPI and I2C if they want to configure the module and write the library by themselves using these protocols. It also can be reset through the Hardware Reset pin, labeled as RST on the mikroBUS™ socket, by putting this pin in a logic low state.
The LTE modem integrates a very flexible transceiver that supports frequency range from 700 to 2200 MHz. Also, it possesses two SMA antenna connectors with an impedance of 50Ω, labeled as GPS and LTE, used for connecting the appropriate antenna that Mikroe has in its offer. Besides those SMA connectors, this Click board™ also has a nano-SIM card slot that provides multiple connections and interface options.
This Click board™ is designed to be operated only with a 3.3V logic voltage level. A proper logic voltage level conversion should be performed before the Click board™ is used with MCUs with different logic levels. However, the Click board™ comes equipped with a library that contains functions and an example code that can be used, as a reference, for further development.
Specifications
Type | GPS/GNSS,LTE IoT |
Applications | Can be used for applications such as logistics and asset tracking, predictive maintenance, industrial, smart agriculture, and many more. |
On-board modules | nRF9160 - highly-integrated System-in-Package (SiP) with integrated ARM® Cortex®-M33 processor, multimode LTE-M/ NB-IoT modem, RF front end (RFFE), GPS, and power management from Nordic Semiconductor. |
Key Features | Low power consumption, fully integrated SiP, multimode LTE-M/NB-IoT modem with integrated RFFE, assisted GPS, certified for global operation, and more. |
Interface | I2C,SPI,UART |
Compatibility | mikroBUS |
Click board size | M (42.9 x 25.4 mm) |
Input Voltage | 3.3V |
Pinout diagram
This table shows how the pinout on LTE IoT 4 Click corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).
Onboard settings and indicators
Label | Name | Default | Description |
---|---|---|---|
LD1 | PWR | - | Power LED Indicator |
J1 | SWD | Unpopulated | Serial Wire Debug (SWD) Interface |
LTE IoT 4 Click electrical specifications
Description | Min | Typ | Max | Unit |
---|---|---|---|---|
Supply Voltage | - | 3.3 | - | V |
Operating Frequency Range | 700 | - | 2200 | MHz |
Operating Temperature Range | -40 | +25 | +85 | °C |
Software Support
We provide a library for the LTE IoT 4 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 LTE IoT 4 Click driver.
Key functions:
void lteiot4_cfg_setup ( lteiot4_cfg_t *cfg );
- Config Object Initialization function.LTEIOT4_RETVAL lteiot4_init ( lteiot4_t *ctx, lteiot4_cfg_t *cfg );
- Initialization function.void lteiot4_default_cfg ( lteiot4_t *ctx );
- Click Default Configuration function.
Examples description
This example reads and processes data from LTE IoT 4 Click boards™.
The demo application is composed of two sections :
void application_task ( void ){ if ( app_connection_status == WAIT_FOR_CONNECTION ) { //CEREG log_info( &logger, " Check connection " ); lteiot4_send_cmd( <eiot4, LTEIOT4_CMD_CHECK_CONNECTION ); app_error_flag = lteiot4_rsp_check(); lteiot4_error_check( app_error_flag ); Delay_ms( 500 ); //CEREG log_info( &logger, " Check network status " ); lteiot4_send_cmd( <eiot4, LTEIOT4_CMD_CHECK_REGISTARTION ); app_error_flag = lteiot4_rsp_check(); lteiot4_error_check( app_error_flag ); Delay_ms( 500 ); //CEREG log_info( &logger, " Check signal quality " ); lteiot4_send_cmd( <eiot4, LTEIOT4_CMD_SIGNAL_QUALITY ); app_error_flag = lteiot4_rsp_check(); lteiot4_error_check( app_error_flag ); log_printf( &logger, "-------------------------------rn" ); Delay_ms( 5000 ); } else { log_info( &logger, "CONNECTED TO NETWORKrn" ); log_printf( &logger, "-------------------------------rn" ); //CCLK log_info( &logger, " Set Time " ); lteiot4_send_cmd( <eiot4, LTEIOT4_CMD_SET_DUMMY_CLOCK ); app_error_flag = lteiot4_rsp_check(); lteiot4_error_check( app_error_flag ); log_printf( &logger, "-------------------------------rn" ); Delay_ms( 3000 ); for(;;) { //XTEMP log_info( &logger, " Check Temperature " ); lteiot4_send_cmd( <eiot4, LTEIOT4_CMD_CHECK_TEMPERATURE ); app_error_flag = lteiot4_rsp_check(); lteiot4_error_check( app_error_flag ); Delay_ms( 500 ); //CCLK log_info( &logger, " Check Time " ); lteiot4_send_cmd( <eiot4, LTEIOT4_CMD_CHECK_CLOCK ); app_error_flag = lteiot4_rsp_check(); lteiot4_error_check( app_error_flag ); log_printf( &logger, "-------------------------------rn" ); Delay_ms( 5000 ); } }}
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.LTEIoT4
Additional notes and information
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.
mikroSDK
This Click board™ is supported with mikroSDK - MikroElektronika Software Development Kit. To ensure proper operation of mikroSDK compliant Click board™ demo applications, mikroSDK should be downloaded from the LibStock and installed for the compiler you are using.
For more information about mikroSDK, visit the official page.
Shipping rates Australia wide and New Zealand
FAQ:
- How do I estimate shipping for my order?
- Add products in the shopping cart and head to the checkout page to estimate the shipping.
Dispatch time
Unless expressly agreed otherwise with you, we will not commence delivery of an order until we have received cleared payment of the purchase price in full.
All orders placed before 11 am AEST (Monday to Friday) will ordinarily be processed on the same day.
We will endeavour to ship the Products by the applicable time indicated on the website, but all times are indicative only. All shipping times are dispatch times only, and actual delivery dates will depend on the shipping method chosen, delivery address and delivery service provider.
Note- Please make a note during purchase if you require any item urgently. However we cannot guarantee that we will be able to comply with any request.
*Go to Australia post delivery time calculation to get various Australia post service in your area please use our shipping postcode Thomastown, 3074 as the "from" address - https://auspost.com.au/parcels-mail/delivery-times.html?ilink=tools-open-deliv-times.
We ship all products throughout mainland Australia, Tasmania and New Zealand - Including Darwin, Melbourne, Sydney, Tasmania, Adelaide, Brisbane, Perth, all metro and regional areas but do not deliver to areas in Australia where the Australia Post delivery network is not available.
Check Express shipping delivery coverage area at - http://auspost.com.au/parcels-mail/delivery-areas.html
Receipt of deliveries
Deliveries to post office boxes are not permitted where delivery is by courier. If delivery is by courier and nobody is available at the delivery address to accept delivery when delivery is attempted then the courier may either:
- leave the relevant parcel at the unattended address (the courier will do so if specified in your delivery requirements); or
- re-attempt delivery at a later time or date, in which case we may charge you an additional re-delivery fee.
Note that if a delivery is left unattended at the shipping address and is subsequently stolen then the theft is your responsibility, not ours.
Payment & Security
Your payment information is processed securely. We do not store credit card details nor have access to your credit card information.