当前位置:   article > 正文

蓝桥杯物联网竞赛_STM32L071KBU6_手动配置代码分析

蓝桥杯物联网竞赛_STM32L071KBU6_手动配置代码分析

大概还有八天国赛,好久没练了,手动配置的代码又有些生疏了,再来回顾回顾

void OLED_Write(unsigned char type, unsigned char data){  // 主要是给显示屏写指令 
	unsigned char WriteData[2];
	WriteData[0] = type;
	WriteData[1] = data;
	HAL_I2C_Master_Transmit(&hi2c3, 0x78, WriteData, 2, 0xff);  // 函数是主机发送给显示屏用的i2c3线 
}

void Function_OledInit(unsigned char ms){
	HAL_GPIO_WritePin(OLED_Power_GPIO_Port, OLED_Power_Pin, GPIO_PIN_RESET);
	HAL_Delay(ms);  // 这里延时一下是等主机通上电再调用初始化函数写指令 
	OLED_Init();  // 写指令 
}


/*
   初始化指令不用返还数据
   取数据指令会返还数据
   用的spi1线 
*/ 
unsigned char SPI_WriteRead(unsigned char address, unsigned char data){
	unsigned char TxData[2], RxData[2];
	TxData[0] = address;
	TxData[1] = data;
	HAL_GPIO_WritePin(SPI1_NSS_GPIO_Port, SPI1_NSS_Pin, GPIO_PIN_RESET);  // 片选 
	HAL_SPI_TransmitReceive(&hspi1, TxData, RxData, sizeof(TxData), 0xff);
	HAL_GPIO_WritePin(SPI1_NSS_GPIO_Port, SPI1_NSS_Pin, GPIO_PIN_SET);
	return RxData[1]; 
}

float* Function_AdcGet(unsigned char ms){
	uint16_t AdcData[2];
	static float AdcValue[3];
	for(unsigned char i = 0; i < 2; i ++){
		HAL_ADC_Start(&hadc); 
		HAL_ADC_PollForConversion(&hadc, 0xff);  // 等待轮转 
		AdcData[i] = HAL_ADC_GetValue(&hadc);
		AdcValue[i] = AdcData[i] * 3.30f / 4095;
		HAL_Delay(ms); 
	}
	HAL_ADC_Stop(&hadc);
	AdcValue[2] = AdcValue[0];
	AdcValue[0] = AdcValue[1];
	AdcValue[1] = AdcValue[2];
	return AdcValue;
}



void Function_SendMsg(const char* data, uint16_t len){
	HAL_UART_Transmit(&huart2, data, len, 0xff);
}

void Function_ReceiveMsg(char* data, uint16_t len){
	HAL_UART_Receive(&huart2, data, len, 0xff); 
}

// << 8 等效 * 2 ^ 8 
float Function_GetTemp(){
	unsigned char Data[2];
	Data[0] = 0x24;
	Data[1] = 0x0b;
	HAL_I2C_Master_Transmit(&hi2c1, 0x94, Data, 2, 0xff);  // 向外设发送获取温度指令 
	HAL_I2C_Master_Receive(&hi2c1, 0x95, Data, 2, 0xff);  // 接收获取的温度数据 
	return (float) (Data[0] << 8 | Data[1]) * 175.0 / 65535 - 45;  // 转换返还 
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66

再次分析一下在于OLED用的是i2c3,温度用的是i2c1,LORA用的是spi1,串口用的uart2,剩下就是一个adc了
配置对应引脚也是相应的配就可以了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/638301
推荐阅读
相关标签
  

闽ICP备14008679号