Introduction - If you have any usage issues, please Google them yourself
		 
void I2C_Int(void)
{
 GPIO_InitTypeDef GPIO_InitStructure //éùÃ ÷ò» ¸ ö GPIO_InitStructure½ á11ìå 
	 
	 GPIO_InitStructure.GPIO_Pin I2C_SCL|I2C_SDA //Ñ ¡ Ô ñ òy½ Å 
	 GPIO_InitStructure.GPIO_Speed GPIO_Speed_50MHz //Ñ ¡ Ô ñ 1ü½ Å Ë ù¶ è
	 GPIO_InitStructure.GPIO_Mode GPIO_Mode_Out_PP //Ñ ¡ Ô ñ 1ü½ Å 1¤×÷Ä £ê½ ,íÆ íìêä 3ö 
	 GPIO_Init(GPIOB,&GPIO_InitStructure) //3õ ê¼ » ˉGPIOB¶ Ë ¿ ú
 
	 I2C_SCL_H //¶ Ë ¿ ú3õ ê¼ » ˉíê±Ï oóòa°Ñ á½ ¸ ö ¶ Ë ¿ úéèÖ Ã Î a¸ ß μç Æ ½ 
	 I2C_SDA_H 
	
}