I have interfaced nRF52 with ESP8266. I am sending data from ESP8266 to nRF52 .I want to read the UART data and store it in a variable.
I have interfaced nRF52 with ESP8266. I am sending data from ESP8266 to nRF52 .I want to read the UART data and store it in a variable.
Hi
I see that you've started with the UART peripheral, which is a good starting point. What exactly do you need help with? You'll have to configure the UART RX pin(s) to the pins that are connected to the ESP8266 so the nRF is able to receive the data. Where do you want to store the received UART data?
Best regards,
Simon
Hi
I see that you've started with the UART peripheral, which is a good starting point. What exactly do you need help with? You'll have to configure the UART RX pin(s) to the pins that are connected to the ESP8266 so the nRF is able to receive the data. Where do you want to store the received UART data?
Best regards,
Simon
I want to store it in a variable and glow light
Like
if( uartData == "123" )
{
nrf_gpio_pin_write(16,1);
}