Difference between revisions of "STM32StepByStep:Step4 Sensors usage"

[quality revision] [quality revision]
m
m

Sensors usage with B-L475E-IOT01AClock.png60min

Target description
The purpose of this tutorial is to explain how to perform measurements with sensors available in the STM32L4 Discovery kit. Configuration of the temperature sensor is described step by step.
After this tutorial, you will be able to collect values using the sensors available on B-L475E-IOT01A board.
The appendix of this tutorial provides guidelines on how to port an AC6 example to STM32CubeIDE.

Prerequisites
You have gone through:

Hardware

  • STM32L4 Discovery kit IoT node[1] (B-L475E-IOT01A )
  • USB cable Type-A to Micro-B

Literature


1 Sensors usage with B-L475E-IOT01A[edit]

1.1 Hardware description[edit]

The main sensors available in the STM32L4 Discovery kit IoT node (B-L475E-IOT01A) are:

  • Capacitive digital sensor for relative humidity and temperature (HTS221)
  • 260-1260 hPa absolute digital output barometer (LPS22HB)
  • 3D accelerometer and 3D gyroscope (LSM6DSL)
  • High-performance 3-axis magnetometer (LIS3MDL).

IoTNode Board Sensor.png

1.2 Example: Get temperature values using the HTS221 sensor and display them on a terminal[edit]

The purpose of this section is to explain step by step how to interface with the HTS221 sensor to get temperature values and display them on a terminal.

1.2.1 Create a working project with STM32CubeMX[edit]

The starting point is the project generated with STM32CubeMX described in the Step3 tutorial titled Introduction to the UART I/F on B-L475E-IOT01A.
Follow the steps described there and call the generated project L4_IOT_Sensors.

1.2.2 Copy BSP drivers to your project[edit]

The BSP (board support package) drivers are available in the STM32CubeL4 package. This provides APIs corresponding to the hardware components of a board. The last version of the STM32CubeL4 package is downloaded by default in the STM32CubeMX repository (C:\Users\user_name\STM32Cube\Repository\STM32Cube_FW_L4_Vx.xx.x).
BSP location and content in the tree:
Folder tree.png

Info white.png Information
STM32CubeL4 used version is 1.11.0, but it can increase over time.

Here are the steps to follow in order to copy the BSP drivers into your project:

  • Copy the STM32CubeL4/Drivers/BSP/B-L475E-IOT01 folder
  • In the generated project, create a folder L4_IOT_Sensors/Drivers/BSP. Paste the copied folder there.
  • Copy the STM32CubeL4/Drivers/BSP/Components folder. Paste it under L4_IOT_Sensors/Drivers/BSP/Components.
  • Optional cleanup of working directory: as only the HTS221 temperature sensor is used, some other files and folders already copied to the working directory may be removed
    • Under L4_IOT_Sensors\Drivers\BSP\B-L475E-IOT01, keep only the following files:
      Folder tree 2.png
    • Under L4_IOT_Sensors\Drivers\BSP\Components, keep only the following folders:
      Folder tree 3.png

1.2.3 Support BSP in STM32CubeIDE workspace[edit]

After being copied, the added folders appear automatically in the STM32CubeIDE workspace:
Folder tree 4.png

1.2.4 Update include paths[edit]

Update the paths to support new header files:

  • Select the relevant project from the Project Explorer perspective:

Project select.png

  • From Project menu or File menu, go to Properties > C/C++ Build > Settings > Tool Settings > MCU GCC Compiler > Include paths
  • Click on Add icon.png to include the new paths
  • Add ../Drivers/BSP/B-L475E-IOT01 and ../Drivers/BSP/Components/hts221 paths

The following screenshot summarizes the steps to follow:
Project setting.png

1.2.5 Update source files[edit]

The only file to modify is main.c, as follows:

  • Include the header files: stm32l475e_iot01.h, stm32l475e_iot01_tsensor.h and math.h
/* USER CODE BEGIN Includes */<br>
#include "stm32l475e_iot01.h"
#include "stm32l475e_iot01_tsensor.h"
#include <math.h>
/* USER CODE END Includes */

  • Add private values to use for temperature values and displayed messages on the terminal:
/* USER CODE BEGIN PV */
/* Private variables -------------------------------------------------------*/
float temp_value = 0;  // Measured temperature value
char str_tmp[100] = ""; // Formatted message to display the temperature value
uint8_t msg1[] = "****** Temperature values measurement ******\n\n\r";
uint8_t msg2[] = "=====> Initialize Temperature sensor HTS221 \r\n";
uint8_t msg3[] = "=====> Temperature sensor HTS221 initialized \r\n ";
/* USER CODE END PV */

  • Display messages on the terminal and initialize the HTS221 temperature sensor:
/* USER CODE BEGIN 2 */
HAL_UART_Transmit(&huart1,msg1,sizeof(msg1),1000);
HAL_UART_Transmit(&huart1,msg2,sizeof(msg2),1000);
BSP_TSENSOR_Init();
HAL_UART_Transmit(&huart1,msg3,sizeof(msg3),1000);
/* USER CODE END 2 *//

  • In the while (1) loop, read the temperature value, format it, and then display the message with the measured value on the terminal:
/* USER CODE BEGIN 3 */
temp_value = BSP_TSENSOR_ReadTemp();
int tmpInt1 = temp_value;
float tmpFrac = temp_value - tmpInt1;
int tmpInt2 = trunc(tmpFrac * 100);
snprintf(str_tmp,100," TEMPERATURE = %d.%02d\n\r", tmpInt1, tmpInt2);
HAL_UART_Transmit(&huart1,( uint8_t * )str_tmp,sizeof(str_tmp),1000);
HAL_Delay(1000);
/* USER CODE END 3 */

Info white.png Information
Pay attention to make updates in the correct USER CODE section in order to avoid over-writing them with a new STM32CubeMX code generation.

1.2.6 Compile and run the example[edit]

  • Click on Build button Built Button.png to compile the project
  • Click on Debug button Debug Button.png to run the software
  • Open a console emulator such as TeraTerm [2]. To configure the console baud rate, select data bits: 8 and click OK. Port name may differ on your PC
  • STM32CubeIDE opens the Debug perspective. Click on the Resume button Resume Button.png to execute the code
  • TeraTerm [2] displays the initialization message preceding the measured temperature values:

TeraTerm Temp.png
Now you are able to:

  • Build your own project to measure temperature values with the sensor embedded on the B-L475E-IOT01A
  • Add BSP components to an STM32CubeMx generated project
  • Extend the use of the board to sensors other than HTS221, to make environmental measurements.

2 Appendix: Porting an AC6 example to STM32CubeIDE[edit]

The example to be used in this appendix is DataLogTerminal located under: STM32CubeExpansion_MEMS1_V7.1.0\Projects\STM32L476RG-Nucleo\Examples\IKS01A2\DataLogTerminal

Info white.png Information
STM32CubeExpansion_MEMS1_V7.1.0 is the extract of X-CUBE-MEMS. More recent versions of this package may be available over time from the same link.
Warning white.png Warning
It is recommended to put the package under C: in order to avoid compilation errors later (because of long paths)

2.1 Hardware description[edit]

The X-NUCLEO-IKS01A2[3] is a motion MEMS and environmental sensor expansion board for the STM32 64-pin Nucleo. It interfaces with NUCLEO-L476RG via I²C-bus pins.
IKS Sensor Board.png

2.2 Example: Get temperature values using the HTS221 sensor and display them on terminal (Porting from AC6 to STM32CubeIDE)[edit]

The purpose of this section is to explain step by step how to interface the X-NUCLEO IKS01A2 HTS221 sensor and NUCLEO-L476RG to get temperature values and display them on a terminal.

2.2.1 Hardware setup[edit]

  • Extend your Nucleo board with the X-NUCLEO-IKS01A2 shield using the Arduino connectors
  • Connect the board with its shield to your PC.

2.2.2 Example details[edit]

A description of the DataLogTerminal example is available under STM32CubeExpansion_MEMS1_ V7.1.0\Projects\STM32L476RG-Nucleo\Examples\IKS01A2\DataLogTerminal in the readme.txt file:

@par Example Description
Main function is to show how to use sensor expansion board to send sensor data from a Nucleo board using UART to a connected PC or desktop, and display it on generic applications like TeraTerm.
After connection has been established:
- The user can view the data from various on-board environment sensors such as temperature, humidity, and pressure
- The user can also view data from various on-board MEMS sensors such as accelerometer, gyroscope, and magnetometer.

2.2.3 Porting the example to STM32CubeIDE[edit]

Import the DataLogTerminal example based on SW4STM32 and dedicated to the NUCLEO-L476RG into STM32CubeIDE: STM32CubeExpansion_MEMS1_V7.1.0\Projects\STM32L476RG-Nucleo\Examples\IKS01A2\DataLogTerminal.
The project must be converted and the following message is displayed:
Project Converter 2.png

  • When clicking on OK, the following message pops up:

Project Converter OK.png

  • Click OK
  • Select the relevant project from the Project Explorer perspective:

Project Explorer.png

2.2.4 Compiling and running the example[edit]

  • Click on the Build button Built Button.png to compile the project.
  • Click on the Debug button arrow Debug Arrow Button.png and select Debug Configurations...
  • In the Debug Configuration window that pops up, make sure that the selected Debug probe is ST-LINK:

Debug Panel.png

  • From the same window, click on Debug, or click on the Debug button Debug Button.png to run the software.
  • Open a console emulator such as TeraTerm [2]. Configure the Console baud rate, select Data bits: 8 and click OK. The port name may differ on your PC.
  • Click on the Resume button Resume Button.png to execute the code. TeraTerm [2] displays the measured values using the sensors available in the shield X-NUCLEO-IKS01A2.
  • The values measured by the X-NUCLEO-IKS01A2 sensors are displayed in the TeraTerm window as follows:

TeraTerm AllSensor.png

3 References[edit]



Previous step Arrow left.png Arrow right.png Next step



<big><big><big>'''Sensors usage with B-L475E-IOT01A'''</big></big></big>[[File:Clock.png|40px|middle]]60min<br><br>
<big><big>'''Target description'''</big></big><br>

The purpose of this tutorial is to explain how to perform measurements with sensors available in the STM32L4 Discovery kit. Configuration of the temperature sensor is described step by step. <br>

After this tutorial, you will be able to collect values using the sensors available on B-L475E-IOT01A board.<br>

The appendix of this tutorial provides guidelines on how to port an AC6 example to STM32CubeIDE.<br>

<big><big>'''Prerequisites'''</big></big><br>

You have gone through:<br>

* [[STM32StepByStep:Step1 Tools installation | Step1: Tools installation and first test]]<br> 

* [[STM32StepByStep:Step3 Introduction to the UART | Step3:  UART and new board introduction]]<br>

<big><big>'''Hardware'''</big></big><br>


* STM32L4 Discovery kit IoT node<ref>[https://www.st.com/en/evaluation-tools/b-l475e-iot01a.html  STM32L4 Discovery kit IoT node]</ref> (B-L475E-IOT01A )<br>

* USB cable Type-A to Micro-B
<big><big>'''Literature'''</big></big><br>

* [https://www.st.com/resource/en/user_manual/dm00347848.pdf UM2153]  Discovery kit for IoT node, multi-channel communication with STM32L4<br>

* [http://www.st.com/content/ccc/resource/technical/document/user_manual/63/a8/8f/e3/ca/a1/4c/84/DM00173145.pdf/files/DM00173145.pdf/jcr:content/translations/en.DM00173145.pdf UM1884]  Description of STM32L4/L4+ HAL and low-layer drivers<br>

* [https://www.st.com/resource/en/user_manual/dm00157069.pdf UM1859] Getting started with the X-CUBE-MEMS1 motion MEMS and environmental sensor software expansion for STM32Cube<br>

* [https://www.st.com/resource/en/user_manual/dm00613836-migration-guide-from-system-workbench-to-stm32cubeide-stmicroelectronics.pdf UM2579] Migration guide from System Workbench to STM32CubeIDE<br>

* [[File:pc_videol.png|middle|20px|link=https://www.youtube.com/watch?v=6eUqxjBL_wI]] [https://www.youtube.com/watch?v=6eUqxjBL_wI Getting starting with STM32L4 Discovery kit IoT node]<br>
<br>

==Sensors usage with B-L475E-IOT01A==
===Hardware description===
The main sensors available in the STM32L4 Discovery kit IoT node (B-L475E-IOT01A) are:<br>

* Capacitive digital sensor for relative humidity and temperature (HTS221)<br>

* 260-1260 hPa absolute digital output barometer (LPS22HB)<br>

* 3D accelerometer and 3D gyroscope (LSM6DSL)<br>

* High-performance 3-axis magnetometer (LIS3MDL).<br>

[[File:IoTNode_Board_Sensor.png|middle|400px]]<br>
<br>


===Example: Get temperature values using the HTS221 sensor and display them on a terminal===
{{Highlight|The purpose of this section is to explain step by step how to interface with the HTS221 sensor to get temperature values and display them on a terminal.}}<br>

====Create a working project with STM32CubeMX====
The starting point is the project generated with STM32CubeMX described in the Step3 tutorial titled [[STM32StepByStep:Step3 Introduction to the UART#Introduction to the UART I/F on B-L475E-IOT01A (IoT Node)| Introduction to the UART I/F on B-L475E-IOT01A]].<br>

Follow the steps described there and call the generated project L4_IOT_Sensors.<br>


====Copy BSP drivers to your project====
The '''''BSP''''' (board support package) drivers are available in the '''''STM32CubeL4 package'''''. This provides APIs corresponding to the hardware components of a board. The last version of the STM32CubeL4 package is downloaded by default in the STM32CubeMX repository (''C:\Users\user_name\STM32Cube\Repository\STM32Cube_FW_L4_Vx.xx.x'').<br>

'''''BSP''''' location and content in the tree:<br>

[[File:Folder_tree.png|middle|150px]]<br>

{{info|STM32CubeL4 used version is 1.11.0, but it can increase over time.}}

Here are the steps to follow in order to copy the BSP drivers into your project:<br>

* Copy the '''''STM32CubeL4/Drivers/BSP/B-L475E-IOT01''''' folder<br>

* In the generated project, create a folder '''''L4_IOT_Sensors/Drivers/BSP'''''. Paste the copied folder there.<br>

* Copy the '''''STM32CubeL4/Drivers/BSP/Components''''' folder. Paste it under '''''L4_IOT_Sensors/Drivers/BSP/Components'''''.<br>

* Optional cleanup of working directory: as only the HTS221 temperature sensor is used, some other files and folders already copied to the working directory may be removed<br>

** Under  '''''L4_IOT_Sensors\Drivers\BSP\B-L475E-IOT01''''', keep only the following files:<br>[[File:Folder_tree_2.png|middle|150px]]
** Under '''''L4_IOT_Sensors\Drivers\BSP\Components''''', keep only the following folders:<br>[[File:Folder_tree_3.png|middle|100px]]<br>


====Support BSP in STM32CubeIDE workspace====
After being copied, the added folders appear automatically in the STM32CubeIDE workspace:<br>

[[File:Folder_tree_4.png|middle|150px]]<br>
<br>

====Update include paths====
Update the paths to support new header files:<br>

* Select the relevant project from the '''''Project Explorer''''' perspective: 
[[File:Project_select.png|middle|300px]]<br>

* From '''''Project menu''''' or '''''File menu''''', go to '''''Properties > C/C++ Build > Settings > Tool Settings > MCU GCC Compiler > Include paths'''''<br>

* Click on [[File:Add_icon.png|middle|30px]] to include the new paths <br>

* Add '''''../Drivers/BSP/B-L475E-IOT01''''' and '''''../Drivers/BSP/Components/hts221''''' paths<br>

The following screenshot summarizes the steps to follow:<br>

[[File:Project_setting.png|middle|450px]]<br>

====Update source files====
The only file to modify is '''''main.c''''', as follows:<br>

* Include the header files: '''''stm32l475e_iot01.h''''', '''''stm32l475e_iot01_tsensor.h''''' and '''''math.h'''''<syntaxhighlight lang="c">/* USER CODE BEGIN Includes */<br>

#include "stm32l475e_iot01.h"
#include "stm32l475e_iot01_tsensor.h"
#include <math.h>

/* USER CODE END Includes */</syntaxhighlight>

* Add private values to use for temperature values and displayed messages on the terminal:<syntaxhighlight lang="c">/* USER CODE BEGIN PV */
/* Private variables -------------------------------------------------------*/
float temp_value = 0;  // Measured temperature value
char str_tmp[100] = ""; // Formatted message to display the temperature value
uint8_t msg1[] = "****** Temperature values measurement ******\n\n\r";
uint8_t msg2[] = "=====> Initialize Temperature sensor HTS221 \r\n";
uint8_t msg3[] = "=====> Temperature sensor HTS221 initialized \r\n ";
/* USER CODE END PV */</syntaxhighlight>

* Display messages on the terminal and initialize the HTS221 temperature sensor:<syntaxhighlight lang="c">/* USER CODE BEGIN 2 */
HAL_UART_Transmit(&huart1,msg1,sizeof(msg1),1000);
HAL_UART_Transmit(&huart1,msg2,sizeof(msg2),1000);
BSP_TSENSOR_Init();
HAL_UART_Transmit(&huart1,msg3,sizeof(msg3),1000);
/* USER CODE END 2 *//</syntaxhighlight>

* In the '''''while (1)''''' loop, read the  temperature value, format it, and then display the message with the measured value on the terminal:<syntaxhighlight lang="c">/* USER CODE BEGIN 3 */
temp_value = BSP_TSENSOR_ReadTemp();
int tmpInt1 = temp_value;
float tmpFrac = temp_value - tmpInt1;
int tmpInt2 = trunc(tmpFrac * 100);
snprintf(str_tmp,100," TEMPERATURE = %d.%02d\n\r", tmpInt1, tmpInt2);
HAL_UART_Transmit(&huart1,( uint8_t * )str_tmp,sizeof(str_tmp),1000);
HAL_Delay(1000);
/* USER CODE END 3 */</syntaxhighlight>

{{info|Pay attention to make updates in the correct '''''USER CODE''''' section in order to avoid over-writing them with a new STM32CubeMX code generation.}}

====Compile and run the example====
* Click on '''''Build''''' button [[File:Built_Button.png|20px|middle]] to compile the project<br>

* Click on '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software<br>

* Open a console emulator such as TeraTerm <ref name="TeraTerm" >[https://ttssh2.osdn.jp/index.html.en TeraTerm]</ref>. To configure the console baud rate, select data bits: 8 and click OK. Port name may differ on your PC<br>

* STM32CubeIDE opens the '''''Debug perspective'''''. Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code<br>

* [https://ttssh2.osdn.jp/index.html.en TeraTerm]  TeraTerm <ref name="TeraTerm" /> displays the initialization message preceding the measured temperature values:<br>

[[File:TeraTerm_Temp.png|middle|300px]]<br>

{{Highlight|Now you are able to}}:
* Build your own project to measure temperature values with the sensor embedded on the B-L475E-IOT01A<br>

* Add BSP components to an STM32CubeMx generated project<br>

* Extend the use of the board to sensors other than HTS221, to make environmental measurements.

==Appendix: Porting an AC6 example to STM32CubeIDE==
The example to be used in this appendix is '''''DataLogTerminal''''' located under: '''''STM32CubeExpansion_MEMS1_V7.1.0\Projects\STM32L476RG-Nucleo\Examples\IKS01A2\DataLogTerminal'''''<br>

{{info|STM32CubeExpansion_MEMS1_V7.1.0 is the extract of [http://www.st.com/en/embedded-software/x-cube-mems1.html X-CUBE-MEMS]. More recent versions of this package may be available over time from the same link.}}
{{Warning | It is recommended to put the package under C: in order to avoid compilation errors later (because of long paths)}}
===Hardware description===

The X-NUCLEO-IKS01A2<ref>[https://www.st.com/content/st_com/en/products/ecosystems/stm32-open-development-environment/stm32-nucleo-expansion-boards/stm32-ode-sense-hw/x-nucleo-iks01a2.html X-NUCLEO-IKS01A2]</ref> is a motion MEMS and  environmental sensor expansion board for the STM32 64-pin Nucleo. It interfaces with  [https://www.st.com/en/evaluation-tools/nucleo-l476rg.html NUCLEO-L476RG] via I²C-bus pins.<br>

[[File:IKS_Sensor_Board.png|middle|450px]]<br>

===Example: Get temperature values using the HTS221 sensor and display them on terminal (Porting from AC6 to STM32CubeIDE)===
The purpose of this section is to explain step by step how to interface the X-NUCLEO IKS01A2 '''''HTS221''''' sensor and NUCLEO-L476RG to get temperature values and display them on a terminal.<br>

====Hardware setup====
* Extend your Nucleo board with the X-NUCLEO-IKS01A2 shield using the Arduino connectors<br>

* Connect the board with its shield to your PC.<br>

====Example details====
A description of the '''''DataLogTerminal''''' example is available under '''''STM32CubeExpansion_MEMS1_ V7.1.0\Projects\STM32L476RG-Nucleo\Examples\IKS01A2\DataLogTerminal''''' in the '''''readme.txt''''' file:<syntaxhighlight lang="c">

@par Example Description
Main function is to show how to use sensor expansion board to send sensor data from a Nucleo board using UART to a connected PC or desktop, and display it on generic applications like TeraTerm.
After connection has been established:
- The user can view the data from various on-board environment sensors such as temperature, humidity, and pressure
- The user can also view data from various on-board MEMS sensors such as accelerometer, gyroscope, and magnetometer.</syntaxhighlight>


====Porting the example to STM32CubeIDE====
Import the '''''DataLogTerminal''''' example based on '''''SW4STM32''''' and dedicated to the '''''NUCLEO-L476RG''''' into STM32CubeIDE: '''''STM32CubeExpansion_MEMS1_V7.1.0\Projects\STM32L476RG-Nucleo\Examples\IKS01A2\DataLogTerminal'''''.<br>

The project must be converted and the following message is displayed:<br>

[[File:Project_Converter_2.png|middle|300px]]<br>

* When clicking on '''''OK''''', the following message pops up:
[[File:Project_Converter_OK.png|middle|300px]]<br>

* Click '''''OK'''''
* Select the relevant project from the '''''Project Explorer''''' perspective:
[[File:Project_Explorer.png|middle|300px]]<br>

====Compiling and running the example====
* Click on the '''''Build''''' button [[File:Built_Button.png|20px|middle]] to compile the project.<br>

* Click on the '''''Debug''''' button '''''arrow''''' [[File:Debug_Arrow_Button.png|40px|middle]] and select '''''Debug Configurations...'''''<br>

* In the Debug Configuration window that pops up, make sure that the selected Debug probe is '''''ST-LINK''''':
[[File:Debug_Panel.png|middle|450px]]<br>

* From the same window, click on '''''Debug''''', or click on the '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software.<br> 

* Open a console emulator such as  [https://ttssh2.osdn.jp/index.html.en TeraTerm]. TeraTerm <ref name="TeraTerm" />. Configure the Console baud rate, select Data bits: 8 and click '''''OK'''''. The port name may differ on your PC.<br>

* Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code. [https://ttssh2.osdn.jp/index.html.en TeraTerm]  TeraTerm <ref name="TeraTerm" /> displays the measured values using the sensors available in the shield X-NUCLEO-IKS01A2.<br>

* The values measured by the X-NUCLEO-IKS01A2 sensors  are displayed in the TeraTerm window as follows:
[[File:TeraTerm_AllSensor.png|middle|350px]]<br>


==References==<references />
<br><br>

{|class="st-table" style="margin: auto; text-align:center"
|style="border-style: hidden; background-color: white;width:200px; text-align:right"|'''[[STM32StepByStep:Step3 Introduction to the UART | Previous step]]'''
|style="border-style: hidden; background-color: white;width:100px; text-align:left"|[[File:Arrow left.png|20px|link=STM32StepByStep:Step3 Introduction to the UART]]

|style="border-style: hidden; background-color: white;width:100px; text-align:right"|[[File:Arrow right.png|20px|link=STM32StepByStep:Step5 Build an IOT system]]''
|style="border-style: hidden; background-color: white;width:200px; text-align:left"|'''[[STM32StepByStep:Step5 Build an IOT system | Next step]]'''
|}

{{PublicationRequestId | 16010| 2020-05-05 | Philip SAGE}}
{{ArticleBasedOnModel | Example STM32 Step by step article}}
<noinclude>

[[Category:STM32 step by step]]</noinclude>
Line 12: Line 12:
 
<big><big>'''Hardware'''</big></big><br>
 
<big><big>'''Hardware'''</big></big><br>
   
* [https://www.st.com/en/evaluation-tools/b-l475e-iot01a.html  STM32L4 Discovery kit IoT node] (B-L475E-IOT01A )<br>
+
* STM32L4 Discovery kit IoT node<ref>[https://www.st.com/en/evaluation-tools/b-l475e-iot01a.html  STM32L4 Discovery kit IoT node]</ref> (B-L475E-IOT01A )<br>
 
* USB cable Type-A to Micro-B
 
* USB cable Type-A to Micro-B
   
Line 104: Line 104:
 
* Click on '''''Build''''' button [[File:Built_Button.png|20px|middle]] to compile the project<br>
 
* Click on '''''Build''''' button [[File:Built_Button.png|20px|middle]] to compile the project<br>
 
* Click on '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software<br>
 
* Click on '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software<br>
* Open a console emulator such as [https://ttssh2.osdn.jp/index.html.en TeraTerm]. To configure the console baud rate, select data bits: 8 and click OK. Port name may differ on your PC<br>
+
* Open a console emulator such as TeraTerm <ref name="TeraTerm" >[https://ttssh2.osdn.jp/index.html.en TeraTerm]</ref>. To configure the console baud rate, select data bits: 8 and click OK. Port name may differ on your PC<br>
 
* STM32CubeIDE opens the '''''Debug perspective'''''. Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code<br>
 
* STM32CubeIDE opens the '''''Debug perspective'''''. Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code<br>
* [https://ttssh2.osdn.jp/index.html.en TeraTerm] displays the initialization message preceding the measured temperature values:<br>
+
* TeraTerm <ref name="TeraTerm" /> displays the initialization message preceding the measured temperature values:<br>
 
[[File:TeraTerm_Temp.png|middle|300px]]<br>
 
[[File:TeraTerm_Temp.png|middle|300px]]<br>
 
{{Highlight|Now you are able to}}:
 
{{Highlight|Now you are able to}}:
Line 119: Line 119:
 
===Hardware description===
 
===Hardware description===
   
The [https://www.st.com/content/st_com/en/products/ecosystems/stm32-open-development-environment/stm32-nucleo-expansion-boards/stm32-ode-sense-hw/x-nucleo-iks01a2.html X-NUCLEO-IKS01A2] is a motion MEMS and  environmental sensor expansion board for the STM32 64-pin Nucleo. It interfaces with  [https://www.st.com/en/evaluation-tools/nucleo-l476rg.html NUCLEO-L476RG] via I²C-bus pins.<br>
+
The X-NUCLEO-IKS01A2<ref>[https://www.st.com/content/st_com/en/products/ecosystems/stm32-open-development-environment/stm32-nucleo-expansion-boards/stm32-ode-sense-hw/x-nucleo-iks01a2.html X-NUCLEO-IKS01A2]</ref> is a motion MEMS and  environmental sensor expansion board for the STM32 64-pin Nucleo. It interfaces with  [https://www.st.com/en/evaluation-tools/nucleo-l476rg.html NUCLEO-L476RG] via I²C-bus pins.<br>
 
[[File:IKS_Sensor_Board.png|middle|450px]]<br>
 
[[File:IKS_Sensor_Board.png|middle|450px]]<br>
 
===Example: Get temperature values using the HTS221 sensor and display them on terminal (Porting from AC6 to STM32CubeIDE)===
 
===Example: Get temperature values using the HTS221 sensor and display them on terminal (Porting from AC6 to STM32CubeIDE)===
Line 151: Line 151:
 
[[File:Debug_Panel.png|middle|450px]]<br>
 
[[File:Debug_Panel.png|middle|450px]]<br>
 
* From the same window, click on '''''Debug''''', or click on the '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software.<br>  
 
* From the same window, click on '''''Debug''''', or click on the '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software.<br>  
* Open a console emulator such as [https://ttssh2.osdn.jp/index.html.en TeraTerm]. Configure the Console baud rate, select Data bits: 8 and click '''''OK'''''. The port name may differ on your PC.<br>
+
* Open a console emulator such as TeraTerm <ref name="TeraTerm" />. Configure the Console baud rate, select Data bits: 8 and click '''''OK'''''. The port name may differ on your PC.<br>
* Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code. [https://ttssh2.osdn.jp/index.html.en TeraTerm] displays the measured values using the sensors available in the shield X-NUCLEO-IKS01A2.<br>
+
* Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code. TeraTerm <ref name="TeraTerm" /> displays the measured values using the sensors available in the shield X-NUCLEO-IKS01A2.<br>
 
* The values measured by the X-NUCLEO-IKS01A2 sensors  are displayed in the TeraTerm window as follows:
 
* The values measured by the X-NUCLEO-IKS01A2 sensors  are displayed in the TeraTerm window as follows:
 
[[File:TeraTerm_AllSensor.png|middle|350px]]<br>
 
[[File:TeraTerm_AllSensor.png|middle|350px]]<br>
  +
  +
==References==
  +
<references />
 
<br><br>
 
<br><br>
 
{|class="st-table" style="margin: auto; text-align:center"
 
{|class="st-table" style="margin: auto; text-align:center"