STM32 Bit-Bang I2C#include <stdio.h> #include <stdlib.h> #include "stm32l0xx_hal.h" /**I2C1 GPIO Configuration PB6 ------> I2C1_SCL PB7 ------> I2C1_SDA */ #define SCL_0 HAL_GPIO_WritePin(GPIOB, GPIO_PIN_6, GPIO_PIN_RESET) #define SCL_1 HAL_GPIO_WritePin(GPIOB, GPIO_PIN_6,