我正在为模块使用nrf24l01p库。 当我发送两个数组(24 + 24字节)时,在接收器上我看不到它们彼此混在一起的情况。延迟功能还是其他问题?
发射器:
#include <SPI.h>
#include "nRF24L01.h"
#include "RF24.h"
void setup()
{
verici.begin();
verici.openWritingPipe(kanal);
verici.setPayloadSize(24);
}
void loop()
{
mesaj[0] = anglex;
mesaj[1] = angley;
mesaj[2] = temp;
mesaj[3] = abspressure;
mesaj[4] = p0;
mesaj[5] = yerdenyukseklik;
verici.write(mesaj, 24);
mesaj[0] = 300.0;
mesaj[1] = latitude;
mesaj[2] = lngt;
mesaj[3] = mesaj[9];
mesaj[4] = mesaj[10];
mesaj[5] = mesaj[11];
delay(600);
verici.write(mesaj, 24);
delay(500);
}