#include "stm32f4xx.h"
#include "jdq.h"
void relay_init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB,ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
}
void relay_on(void)
{
GPIO_SetBits(GPIOB,GPIO_Pin_7);
}
void relay_off(void)
{
GPIO_ResetBits(GPIOB,GPIO_Pin_7);
}
#include "stm32f4xx.h"
#include "usart.h"
#include "delay.h"
#include "jdq.h"
int main()
{
int i = 0;
relay_init();
if(i == 1)
relay_off();
else
relay_on();
}
代码下载:
继电器.7z
(294.96 KB, 下载次数: 18)
|