STM32F103C8Tx – Controlling 7 Segment Displays


How to Control 7 Segment Displays.




Materials List


Anatomy of a 7 Segment Display


Schematic to Control 7 Segment Displays


STM32F103C8Tx Pin Diagram

Header 1 Pins

In the diagram above, Header #1 pins are on the right starting from the bottom working upwards. The pin numbers DO NOT match the color coded pin assignment diagram, so count the pins in the below chart upwards from the bottom right side.

Header 2 Pins

In the diagram above, Header #2 pins start at the bottom left and working upwards. The pin numbers DO NOT match the color coded pin assignment diagram above, so count the pins in the below chart upwards from the bottom left side.


Pinouts & Configurations




Code Listings – Controlling 7 Segment Displays

main.c

C
/* Private user code ---------------------------------------------------------*/
/* USER CODE BEGIN 0 */

void delay(uint16_t delay) {
	HAL_Delay(delay);
}

void displayEachSeg() {
		      //      gfedcba
	GPIOA->ODR = 0b00000000;                              //Write to port-A
	delay(1000);
	GPIOA->ODR = 0b00000001;                              //Write to port-A-seg-a
	delay(1000);
	GPIOA->ODR = 0b00000010;                              //Write to port-A-seg-b
	delay(1000);
	GPIOA->ODR = 0b00000100;                              //Write to port-A-seg-c
	delay(1000);
	GPIOA->ODR = 0b00001000;                              //Write to port-A-seg-d
	delay(1000);
	GPIOA->ODR = 0b00010000;                              //Write to port-A-seg-e
	delay(1000);
	GPIOA->ODR = 0b00100000;                              //Write to port-A-seg-f
	delay(1000);
	GPIOA->ODR = 0b01000000;                              //Write to port-A-seg-g
	delay(1000);
	GPIOA->ODR = 0b00000000;                              //Write to port-A-seg-none
	delay(1000);
}

void displayAllSeg() {
		      //      gfedcba
	GPIOA->ODR = 0b00000001;                              //Write to port-A
	delay(1000);
	GPIOA->ODR = 0b00000011;                              //Write to port-A
	delay(1000);
	GPIOA->ODR = 0b00000111;                              //Write to port-A
	delay(1000);
	GPIOA->ODR = 0b00001111;                              //Write to port-A
	delay(1000);
	GPIOA->ODR = 0b00011111;                              //Write to port-A
	delay(1000);
	GPIOA->ODR = 0b00111111;                              //Write to port-A
	delay(1000);
	GPIOA->ODR = 0b01111111;                              //Write to port-A
	delay(1000);
	GPIOA->ODR = 0b00000000;                              //Write to port-A
	delay(1000);
}

void displayZero() {
		      //      gfedcba
	GPIOA->ODR = 0b00111111;                              //Write to port-A
	delay(1000);
}
void displayOne() {
		      //      gfedcba
	GPIOA->ODR = 0b00000110;                              //Write to port-A
	delay(1000);
}

void displayTwo() {
		      //      gfedcba
	GPIOA->ODR = 0b01011011;                              //Write to port-A
	delay(1000);
}

void displayThree() {
		      //      gfedcba
	GPIOA->ODR = 0b01001111;                              //Write to port-A
	delay(1000);
}

void displayFour() {
		      //      gfedcba
	GPIOA->ODR = 0b01100110;                              //Write to port-A
	delay(1000);
}

void displayFive() {
		      //      gfedcba
	GPIOA->ODR = 0b01101101;                              //Write to port-A
	delay(1000);
}

void displaySix() {
		      //      gfedcba
	GPIOA->ODR = 0b01111101;                              //Write to port-A
	delay(1000);
}

void displaySeven() {
		      //      gfedcba
	GPIOA->ODR = 0b00000111;                              //Write to port-A
	delay(1000);
}

void displayEight() {
		      //      gfedcba
	GPIOA->ODR = 0b01111111;                              //Write to port-A
	delay(1000);
}

void displayNine() {
		      //      gfedcba
	GPIOA->ODR = 0b01101111;                              //Write to port-A
	delay(1000);
}

void displayA() {
		      //      gfedcba
	GPIOA->ODR = 0b01110111;                              //Write to port-A
	delay(1000);
}

void displayB() {
		      //      gfedcba
	GPIOA->ODR = 0b01111100;                              //Write to port-A
	delay(1000);
}

void displayC() {
		      //      gfedcba
	GPIOA->ODR = 0b00111001;                              //Write to port-A
	delay(1000);
}

void displayD() {
		      //      gfedcba
	GPIOA->ODR = 0b01011110;                              //Write to port-A
	delay(1000);
}

void displayE() {
		      //      gfedcba
	GPIOA->ODR = 0b01111001;                              //Write to port-A
	delay(1000);
}

void displayF() {
		      //      gfedcba
	GPIOA->ODR = 0b01110001;                              //Write to port-A
	delay(1000);
}

/* USER CODE END 0 */

/**
  * @brief  The application entry point.
  * @retval int
  */
int main(void)
{

  /* USER CODE BEGIN 1 */

  /* USER CODE END 1 */

  /* MCU Configuration--------------------------------------------------------*/

  /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  HAL_Init();

  /* USER CODE BEGIN Init */

  /* USER CODE END Init */

  /* Configure the system clock */
  SystemClock_Config();

  /* USER CODE BEGIN SysInit */

  /* USER CODE END SysInit */

  /* Initialize all configured peripherals */
  MX_GPIO_Init();
  /* USER CODE BEGIN 2 */

  /* USER CODE END 2 */

  /* Infinite loop */
  /* USER CODE BEGIN WHILE */
  while (1)
  {
    /* USER CODE END WHILE */
    /* USER CODE BEGIN 3 */
	  displayEachSeg();
	  displayAllSeg();
    displayZero();
	  displayOne();
	  displayTwo();
	  displayThree();
	  displayFour();
	  displayFive();
	  displaySix();
	  displaySeven();
	  displayEight();
	  displayNine();
	  displayA();
	  displayB();
	  displayC();
	  displayD();
	  displayE();
	  displayF();
  }
  /* USER CODE END 3 */
}

/**
  * @brief GPIO Initialization Function
  * @param None
  * @retval None
  */
static void MX_GPIO_Init(void)
{
  GPIO_InitTypeDef GPIO_InitStruct = {0};
/* USER CODE BEGIN MX_GPIO_Init_1 */
/* USER CODE END MX_GPIO_Init_1 */

  /* GPIO Ports Clock Enable */
  __HAL_RCC_GPIOA_CLK_ENABLE();

  /*Configure GPIO pin Output Level */
  HAL_GPIO_WritePin(GPIOA, GPIO_PIN_0|GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_3
                          |GPIO_PIN_4|GPIO_PIN_5|GPIO_PIN_6|GPIO_PIN_7, GPIO_PIN_RESET);

  /*Configure GPIO pins : PA0 PA1 PA2 PA3
                           PA4 PA5 PA6 PA7 */
  GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_3
                          |GPIO_PIN_4|GPIO_PIN_5|GPIO_PIN_6|GPIO_PIN_7;
  GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  GPIO_InitStruct.Pull = GPIO_NOPULL;
  GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);

/* USER CODE BEGIN MX_GPIO_Init_2 */
/* USER CODE END MX_GPIO_Init_2 */
}

Leave A Comment Here…