-
Hi maniacbug,
I have set the nRF24L01+ module power output using this code: radio.setPALevel(RF24_PA_HIGH);
When I then check this using radio.printDetails(); I get Power = LA_MED
Also I believ…
-
I've built a flight controller with arduino nano and nrf24l01 PA LNA module this is the code for reciever
```
#include
#include
#include
#include
int ch_1 = 0;
int ch_2 = 150;
int ch_3 =…
-
Библиотека скачана архивом с гитхаб. установка архивом из ардуино(как прописано на сайте ардуины) не прошла, ручное копирование в папку .../arduino/libraries помогло увидеть её в списке Скетч>подключи…
-
Hello everyone!
I have successfully paired the hub and the controller to the mqtt topic (I have even unpaired the controller and have it only work through the Home Assistant automation (MQTT Forwar…
-
Hi,
I've hit several compilation issues. I was able to workaround those that required removing the relative paths in "#include" statements and a casting of a "const" parameter, but I'm quite lost a…
-
As the title describes, if the Radio debug flag is not defined, the node fails linking to the gateway.
I'm using the RaspberryPi NRF gateway.
The simplest Sketch:
```Arduino
#define SKETCH_NAME …
-
Hello
So to summarize, I am attempting to make an identical keyboard to the one beautifully crafted by ProjectsWithRed, Mine however will feature only a single button and uses all the exact same co…
-
-
# include
# include
rf24 rf(8,9,100,RF24_MAX_SIZE);
void setup()
{
rf.begin();
rf.setRxAddr(1, "addr1");
rf.setTxAddr("addr2");
}
void loop()
{
char data[RF24_MAX_SIZE] = "Hello world";
…
-
First write works fine and is received at the other end. But any write after that blocks forever in an infinite loop of "RF24 HARDWARE FAIL: Radio not responding, verify pin connections, wiring, etc."…