stm32F103C8T6光敏电阻adc采集控制led亮灭
时间: 2023-06-13 16:07:29 浏览: 368
物联网项目实战开发之STM32F103C8T6+光敏电阻测试代码程序
5星 · 资源好评率100%
首先,你需要将光敏电阻连接到STM32F103C8T6的ADC输入引脚。然后,你需要编写一个ADC采集程序,将光敏电阻的模拟信号转换为数字信号。接着,你需要编写一个控制LED亮灭的程序,通过判断采集到的光敏电阻的值来控制LED的亮灭。
以下是一个简单的示例程序:
```c
#include "stm32f10x.h"
#define LED_PIN GPIO_Pin_13
#define LED_PORT GPIOC
void ADC_Configuration(void);
void LED_Configuration(void);
void delay(uint32_t time);
int main(void)
{
uint16_t adc_value;
ADC_Configuration();
LED_Configuration();
while(1)
{
ADC_SoftwareStartConvCmd(ADC1, ENABLE);
while(ADC_GetFlagStatus(ADC1, ADC_FLAG_EOC) == RESET);
adc_value = ADC_GetConversionValue(ADC1);
if(adc_value > 1000)
{
GPIO_SetBits(LED_PORT, LED_PIN);
}
else
{
GPIO_ResetBits(LED_PORT, LED_PIN);
}
delay(100);
}
}
void ADC_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
ADC_InitTypeDef ADC_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;
GPIO_Init(GPIOA, &GPIO_InitStructure);
ADC_DeInit(ADC1);
ADC_InitStructure.ADC_Mode = ADC_Mode_Independent;
ADC_InitStructure.ADC_ScanConvMode = DISABLE;
ADC_InitStructure.ADC_ContinuousConvMode = DISABLE;
ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None;
ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;
ADC_InitStructure.ADC_NbrOfChannel = 1;
ADC_Init(ADC1, &ADC_InitStructure);
ADC_Cmd(ADC1, ENABLE);
ADC_ResetCalibration(ADC1);
while(ADC_GetResetCalibrationStatus(ADC1));
ADC_StartCalibration(ADC1);
while(ADC_GetCalibrationStatus(ADC1));
}
void LED_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
GPIO_InitStructure.GPIO_Pin = LED_PIN;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(LED_PORT, &GPIO_InitStructure);
}
void delay(uint32_t time)
{
for(uint32_t i = 0; i < time; i++);
}
```
该程序使用PA0引脚接收光敏电阻的模拟信号,使用ADC1模块进行转换。如果采集到的值大于1000,则LED亮,否则LED灭。程序中使用了一个简单的延时函数,可以根据需要进行修改。
阅读全文