今日头条
基于STM32室内空气净化监测系统设计方案,实物制作电路方案。
如原理图所示:包含了液晶模块,温湿度模块,flash,蜂鸣器,蓝牙模块电路等。
设计的原理图、PCB、程序、演示视频等,可以进行参考以下:
#include "stm32f10x.h"
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
...
可以自己按照这个思路进行自行设计,也可以通过百度网盘列表下载已经做好的 https://www.aiesst.cn/share.html
审核编辑:汤梓红
全部0条评论
快来发表一下你的评论吧 !