1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #include <stdbool.h> #include <stdint.h> #include "nrf_delay.h" #include "nrf_gpio.h" #include "boards.h" int main(void) { // Configure LED-pins as outputs. nrf_gpio_cfg_output(LED_1); // Toggle LEDs. while (true) { nrf_gpio_pin_set(LED_1); nrf_delay_ms(500); nrf_gpio_pin_clear(LED_1); nrf_delay_ms(500); } } | cs |
'Programing > Nordic(BLE)' 카테고리의 다른 글
시중에 판매중인 모듈 사용하기 (0) | 2015.09.23 |
---|---|
외부 인터럽트 & 타이머 인터럽트를 이용한 롱버튼 구현 (1) | 2015.05.25 |
pin change interrupt (0) | 2015.05.25 |
타이머 인터럽트 (0) | 2015.05.10 |
Nordic에서 나온 nRF51422 & nRF51822 (0) | 2015.05.10 |