首页 > 其他 > 详细

【nRF51822蓝牙开发笔记】点亮LED灯

时间:2014-10-27 01:43:17      阅读:442      评论:0      收藏:0      [点我收藏+]
/******************** (C) COPYRIGHT 2014 ???? ********************
 * ÎļþÃû  :main
 * ÃèÊö    :
 * ÊÔÑéƽ̨:  nRF51822À¶ÑÀ¿ª·¢°å  
 * ÃèÊö    : 
 * ×÷Õß    :Ð¥·ç
 * ²©¿Í    :
**********************************************************************/



#include <stdbool.h>
#include <stdint.h>
#include "nrf_delay.h"
#include "nrf_gpio.h"
#include "led.h"

int main(void)
{
  // Configure LED-pins as outputs
  LED_Init();
  
  // LED 0 and LED 1 blink alternately.
  while(true)
  {
    LED1_Open();
    LED2_Close();
    
    nrf_delay_ms(500);
    
    LED2_Open();
    LED1_Close();
    
    nrf_delay_ms(500);
  }
}

 

/**************************End of XF-Studio*******************************/

  

【nRF51822蓝牙开发笔记】点亮LED灯

原文:http://www.cnblogs.com/xiaofeng6636/p/4053296.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!