stm32f103c8t6使用nrf24l01控制led的开关代码
时间: 2023-02-11 15:12:37 浏览: 267
NRF24L01_STM32F103C8T6_RX_TX.zip_NRF24L01_STM32F103C8T6程序_seriou
5星 · 资源好评率100%
STM32F103C8T6使用NRF24L01控制LED的代码如下:
```
#include "stm32f10x.h"
#include "nrf24l01.h"
#include "led.h"
int main(void)
{
NRF_Init();
LED_Init();
while(1)
{
if(NRF_Read_IRQ())
{
if(NRF_RX_DR())
{
if(NRF_Read_Buf(NRF_Read_Payload()) == 0x01)
{
LED_On();
}
else
{
LED_Off();
}
}
}
}
}
```
请注意,在这里假设你已经有nrf24l01和led驱动程序的代码。
需要根据你自己的实际情况来调整驱动程序。
阅读全文