下你所需,载你所想!
汇集开发技术源码资料

KEIL无源蜂鸣器,音乐

:4.231MB :1 :2022-10-12 17:06:18

部分简介

KEIL无源蜂鸣器,音乐如果开发者对于本文件有需要的可以参考。
KEIL无源蜂鸣器,音乐
按键无源蜂鸣器播放歌曲
#include "led.h"
void LED_Init(void){ //LED灯的接口初始化
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = IO_LED1OUT | IO_LED2OUT; //选择端口号(0~15或all)
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //选择IO接口工作方式
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //设置IO接口速度(2/10/50MHz)
GPIO_Init(IO_LEDPORT, &GPIO_InitStructure);
GPIO_ResetBits(IO_LEDPORT,IO_LED1OUT|IO_LED2OUT); //LED灯都为低电平(0) 初始为关灯
}
void LED1(u8 a){ //LED灯控制 参数为0灯灭
if(a)GPIO_SetBits(IO_LEDPORT,IO_LED1OUT);
else GPIO_ResetBits(IO_LEDPORT,IO_LED1OUT);
}
├── sys.o
├── system_stm32f10x.crf
├── system_stm32f10x.d
├── system_stm32f10x.o
├── usart.__i
├── usart.crf
├── usart.d
└── usart.o
32 directories, 206 files

KEIL无源蜂鸣器,音乐

热门推荐

相关文章