Introduction to IoT LAB Exercises 2024 IoT LAB - Outline Today’s lab goal: ● Introduction of lab hardware ● IDE setup Hardware Overview ● Building blocks consisting of: ● Base board (green) ● Communication board (red) ● Application board (blue) ● Cryptography support (for PV285) violet ● Interconnection – cabling ● Suplemental items – uSD ● Debugging tools – logic analyzer Hardware - MCUs Hardware – Base boardsSTM32-BluePill RockPiS Hardware – Base boards More base boards in testing state – available for standalone work: ● ATmega 328 ● ESP-32 ● Raspberry Pico ● Universal board for 5V powered MCUs ● Universal board for 3V3 powered MCUs Hardware - CommunicationRS–485 CANBus Hardware - Applications Push Buttons, Switch, LEDs Temperature, Relative Humidity, Barometric Pressure LCD 2x16, Rotarry Encoder IDE ● For bare-metal programming ● Lightweight – Arduino IDE ● Heavy duty – STM Cube KYPO PC Environment setup ● Use your fi.muni account ● https://www.fi.muni.cz/tech/account.html.cs ● Data should be stored in cloud ● Today’s goal: configuration and test of the IDE ● Application: just blinking the LED Private laptops ● Download and install Arduino IDE: ● https://www.arduino.cc/en/software ● Available for Windows, Linux, and MAC ● Currently, we use release 1.8.19 ● Latest available release 2.3.3 Arduino IDE ● File → Preferences ● Additiona Boards Manager URLs: ● http://dan.drown.org/stm32duino/package_STM32duino_inde x.json ● Beare, more STM32 cores available ● Tools → Board → Boards Manager ● STM32F1xx/GD32F1xx ● Tools → Board → STM32F1 Boards (Arduino_STM32) ● Generic STM32F103C series Basic example ● File → Examples → 0.1 Basic → Blink ● Tools → Upload Method: → STLink ● Sketch → Verify/Compile ● Sketch → Upload Basic example void loop() { digitalWrite(LED_BUILTIN, HIGH); // turn the LED on delay(1000); // wait for 1000 ms digitalWrite(LED_BUILTIN, LOW); // turn the LED off delay(1000); // wait for 1000 ms } Basic example ● Task: change the delay time in assymetric way, e.g., 2000 ms HIGH state, 100 ms LOW state ● Observe the result ● Explanation? Basic example STM CUBE IDE ● Offered by STMicroelectronic ● Covers all STM32 MCUs ● C / C++ ● Based on Eclipse → similarity with Simplicity Studio, MCUxresso, Code Composer Studio, ... ● Used also for ST-Link SW upgrade ● Can help to install ST-Link drivers ● MCU specific libraries downloaded on per project basis STM Cube on KYPO PCs ● H:\_profile\Documents\stm ● STM CUBE IDE installation ● Download from STMicroelectronic: ● https://www.st.com/en/development-tools/stm32cubeide.ht ml ● Current release: 1.16.1 ● Older release installed on KYPO PCs ● Registration needed (and recomended) STM Cube – getting started STM Cube – getting started STM32F103C8T6 STM Cube – getting started STM Cube – getting started STM Cube – getting started STM Cube – C programming ● Main.c while (1) { // LED OFF HAL_GPIO_WritePin(GPIOC, GPIO_PIN_13, GPIO_PIN_SET); HAL_Delay(100); // Dealy in ms // LED ON HAL_GPIO_WritePin(GPIOC, GPIO_PIN_13, GPIO_PIN_RESET); HAL_Delay(100); // Dealy in ms } Please consider both Arduino IDE and STM Cube