Vedika
Published © GPL3+

LED blinking with STM32 Black Pill and STM Cube IDE

Empower your STM32 development journey with our comprehensive tutorial on getting started with the STM32 Black Pill and STM Cube IDE.

BeginnerProtip1 hour31
LED blinking with STM32 Black Pill and STM Cube IDE

Things used in this project

Hardware components

Solderless Breadboard Full Size
Solderless Breadboard Full Size
×1
Jumper wires (generic)
Jumper wires (generic)
×1

Software apps and online services

STM32CUBEPROG
STMicroelectronics STM32CUBEPROG

Story

Read more

Schematics

led blinking

Code

code:

C/C++
 {
   HAL_GPIO_WritePin(GPIOC,GPIO_PIN_13,0);
      	  HAL_Delay(1000);
      	HAL_GPIO_WritePin(GPIOC,GPIO_PIN_13,1);
      	HAL_Delay(500);
}

Credits

Vedika

Vedika

2 projects • 3 followers

Comments