#define LED_START 17
#define LED_0 17
#define LED_1 18
#define LED_2 19
#define LED_3 20
#define LED_STOP 20
设置位输出模式: nrf_gpio_cfg_output(LED_0);
输出高电平:nrf_gpio_pin_set(LED_0);
输出低电平: nrf_gpio_pin_clear(LED_0);
电平反转: nrf_gpio_pin_toggle(LED_0);
#define KEY_1 13
#define KEY_2 14
#define KEY_3 15
#define KEY_4 16
设置上啦输入: nrf_gpio_cfg_input(13,NRF_GPIO_PIN_PULLUP);
读取: if( nrf_gpio_pin_read(KEY_1)== 0 )