저번 포스팅에서는 Pre-configured Example 을 가져오는 방법을 알아보았다. 이번에는 이것을 변형하는 과정을 보도록 한다. 우선, 보드 뒤쪽에 보면 I/O Pin 번호가 적혀있는데 13 - 16은 보드 내부에 위치한 버튼, 17- 20은 LED임을 알 수 있다. 0. Internal LED 사용 GPIO를 Output으로 쓸 때의 Header / Function #include "nrf_gpio.h" GPIO 헤더 추가 nrf_ nrf_gpio_cfg_output(uint32_t pin_number); 핀을 output 으로 설정 nrf_gpio_range_cfg_output (uint32_t start_pin_number,uint32_t end_pin_number); 여러 핀을 같은 co..