05 - 用库函数完成4个LED指示灯的流水灯

程序结构

  • STC官方提供的库函数文件放在Source组和文件夹中。
  • 引用的目录选中source文件夹。

代码

  • STC官方的库文件代码不列出。
  • main.c
#define _MAIN_C
#include "config.h"
#include "STC8G_H_Delay.h"
#include "STC8G_H_GPIO.h"
#include "main.h"

#define D1 P03
#define D2 P02
#define D3 P01
#define D4 P00

/**
 * GPIO口初始化
 */
void GPIO_config(void)
{
	GPIO_InitTypeDef GPIO_InitStructure;
	GPIO_InitStructure.Mode = GPIO_PullUp;
	GPIO_InitStructure.Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3;
	GPIO_Inilize(GPIO_P0, &GPIO_InitStructure);
}

void main()
{
	GPIO_config();

	P0 = P0 | 0x0F; // 四个LED灯都不亮

	while (1)
	{
		D4 = 1;

		D1 = 0;
		delay_ms(200);

		D1 = 1;
		D2 = 0;
		delay_ms(200);

		D2 = 1;
		D3 = 0;
		delay_ms(200);

		D3 = 1;
		D4 = 0;
		delay_ms(200);
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值