Arduino + LCD + nRF24L01

Hello.

I am having trouble sending the distance data from my TF-Mini to another arduino using nRF24L01.

Below is the Transmitter Code:

#include <SoftwareSerial.h>  //header file of software serial port
#include <Servo.h>
#include <NewPing.h>
#include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>
#define TRIGGER_PIN A1
#define ECHO_PIN A0
#define MAX_DISTANCE 200
Servo servo;
SoftwareSerial Serial1(8,9); //define software serial port name as Serial1 and define pin8 as RX and pin9 as TX
RF24 radio(11, 12); // CE, CSN
const byte address[1] = "00001";
//Ultrasonic Variables
NewPing sonar(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE);
boolean object;
float time = 0;
long duration, cm;
int distance = 0; //set distance value to 0 
int pos = 0;
// Motor A connections
int enA = 7;
int in1 = 5;
int in2 = 6;
// Motor B connections
int enB = 2;
int in3 = 3;
int in4 = 4;
// Lidar Variables
int dist;	//actual distance measurements of LiDAR
int strength;	//signal strength of LiDAR
int check;	//save check value
int i;
int uart[11];	//save data measured by LiDAR
const int HEADER=0x59;	//frame header of data package


void setup() 
{
  //
  radio.begin();
  radio.openWritingPipe(address);
  radio.setPALevel(RF24_PA_MAX);
  radio.stopListening();
  //
  Serial.begin(9600);
  Serial1.begin(115200);	//set bit rate of serial port connecting LiDAR with Arduino
  servo.attach(10);
	pinMode(in1, OUTPUT);
	pinMode(in2, OUTPUT);
	pinMode(in3, OUTPUT);
	pinMode(in4, OUTPUT);
  pinMode(enA, OUTPUT);
  pinMode(enB, OUTPUT);
  pinMode(TRIGGER_PIN,OUTPUT); //sets TRIGGER_PIN to OUTPUT
  pinMode(ECHO_PIN,INPUT); //sets ECHO_PIN to INPUT

  digitalWrite(in1, LOW);
	digitalWrite(in2, LOW);
	digitalWrite(in3, LOW);
	digitalWrite(in4, LOW);

}

void loop() 
//Lidar Code - TF-Mini
{
    if (Serial1.available())                //check if serial port has data input
  {
    if (Serial1.read() == HEADER)        //assess data package frame header 0x59
    {
      uart[0] = HEADER;
      if (Serial1.read() == HEADER)      //assess data package frame header 0x59
      {
        uart[1] = HEADER;
        for (i = 2; i < 9; i++)         //save data in array
        {
          uart[i] = Serial1.read();
        }
        check = uart[0] + uart[1] + uart[2] + uart[3] + uart[4] + uart[5] + uart[6] + uart[7];
        if (uart[8] == (check & 0xff))        //verify the received data as per protocol
        {
          dist = uart[2] + uart[3] * 256;     //calculate distance value
          strength = uart[4] + uart[5] * 256; //calculate signal strength value
          Serial.print("distance = ");
          Serial.print(dist);                 //output measure distance value of LiDAR
          Serial.print('\t');
          Serial.print("strength = ");
          Serial.print(strength);             //output signal strength value
          Serial.print('\n');
          radio.write(&dist, sizeof(dist));
        }
      }
    }
  }

//Get Ultrasonic Distance
float duration, distance;
digitalWrite(TRIGGER_PIN, LOW);
delayMicroseconds(2);
digitalWrite(TRIGGER_PIN, HIGH);
delayMicroseconds(10);
digitalWrite(TRIGGER_PIN, LOW);
duration = pulseIn(ECHO_PIN, HIGH);
distance = (duration / 2) / 29.1 ; // calculate distance in CM

   if(distance >= 30) //Move Forward 
  {
	digitalWrite(in1, LOW);
	digitalWrite(in2, HIGH);
	digitalWrite(in3, LOW); 
	digitalWrite(in4, HIGH);
  analogWrite(enA, 130); //enA speed variable - Right Wheel
	analogWrite(enB, 130); //enB speed variable - Left Wheel
  delay(200);
  }
  if(distance <= 25) //Move Right
  {
  digitalWrite(in1, HIGH);
	digitalWrite(in2, LOW);
	digitalWrite(in3, LOW);
	digitalWrite(in4, HIGH); 
  analogWrite(enA, 170); //enA speed variable - Right Wheel
	analogWrite(enB, 130); //enB speed variable - Left Wheel
  delay(200);
  }
  if(distance < 20) //Move Backward
  {
	digitalWrite(in1, HIGH); 
	digitalWrite(in2, LOW); 
	digitalWrite(in3, HIGH); 
	digitalWrite(in4, LOW); 
  analogWrite(enA, 130); //enA speed variable - Right Wheel
	analogWrite(enB, 130); //enB speed variable - Left Wheel
  delay(200);
  }
}

Reciever Code:

#include <SPI.h>
#include <RF24.h>
#include <nRF24L01.h>
#include <LiquidCrystal.h>

RF24 radio(8, 9); // CE, CSN
const byte address[1] = "00001";
const int rs = 7, en = 6, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);

void setup() 
{
  lcd.begin(16, 2);
  Serial.begin(9600);
  radio.begin();
  radio.openReadingPipe(0, address);
  radio.setPALevel(RF24_PA_MIN);
  radio.startListening();
}

void loop()
{
  lcd.setCursor(0, 0);
  if (radio.available()) {
    char text[32] = {0};
    int dist;
    radio.read(&dist, sizeof(dist));
      lcd.print("Distance= ");
      lcd.print(dist);
      delay(500);
}
}

The LCD is working as it prints the "Distance =" but the value shown is 0?

Any help is appreciated.

Kind Regards

What do you see when you print the distance at the transmitter end ?

in the serial monitor it shows both the distance and strength accurately on the transmitter side.

The SCK and MISO pins are in analog on transmitter side would this affect it?

At some point you may have to strip the code down to the absolute minimum necessary to send an int from one Arduino's NRF24L01 device to the other's to check that there is a basic radio connectivity.

This does look odd when compared with a standard example:

say from Simple nRF24L01+ 2.4GHz transceiver demo

Hello I have currently changed the code so that both use the digital pin 12 as the address.

And changed the pins from 11,12 on the transmiiter to 11,10 CE / CSN

So far the only difference is that the reciever displays Distance = 0

Any help is appreciated

Have you tried the examples in Simple nRF24L01+ 2.4GHz transceiver demo

Hello I have tried the examples and they worked previously. I used that tutorial to code some of the transmitter and recevier e.g. changed the CSN pin to digital pin 10.

So now currently a value is sent which is 0. But the serial monitor shows on the transmitter that the distance and strength are being calculated and shown correctly.

Could it be the arduino pins i have used or the serial address?

I can send the pins i have used for each port on the nRF24L01 if that is helpful.

Any help is appreciated

A schematic of both ends of the link may be helpful but if the examples from the link work OK then there is probably nothing wrong

Could be to do with the code i have added all i have said is to transmit the distance data.

The reciever then picks up the distance data and prints onto LCD.

should i define the dist data as an integer?

Any help is appreciated.

Which Arduino boards are you using at each end of the radio link ?

TF-Mini is on the transmitter side.

Both are Arduino Uno.

The LCD is on the reciever side.

I have used the Simple nRF24L01+ 2.4GHz transceiver demo to tinker with my current code

Transmitter

#include <SoftwareSerial.h>  //header file of software serial port
#include <Servo.h>
#include <NewPing.h>
#include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>
#define TRIGGER_PIN A1
#define ECHO_PIN A0
#define MAX_DISTANCE 200
Servo servo;
SoftwareSerial Serial1(8,9); //define software serial port name as Serial1 and define pin8 as RX and pin9 as TX
RF24 radio(11, 10); // CE, CSN
const byte address[12] = "00001";
//Ultrasonic Variables
NewPing sonar(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE);
boolean object;
float time = 0;
long duration, cm;
int distance = 0; //set distance value to 0 
int pos = 0;
// Motor A connections
int enA = 7;
int in1 = 5;
int in2 = 6;
// Motor B connections
int enB = 2;
int in3 = 3;
int in4 = 4;
// Lidar Variables
int dist;	//actual distance measurements of LiDAR
int strength;	//signal strength of LiDAR
int check;	//save check value
int i;
int uart[11];	//save data measured by LiDAR
const int HEADER=0x59;	//frame header of data package


void setup() 
{
  //
  radio.begin();
  radio.setDataRate( RF24_250KBPS );
  radio.setRetries(3,5); // delay, count
  radio.openWritingPipe(address);
  radio.stopListening();
  //
  Serial.begin(9600);
  Serial1.begin(115200);	//set bit rate of serial port connecting LiDAR with Arduino
	pinMode(in1, OUTPUT);
	pinMode(in2, OUTPUT);
	pinMode(in3, OUTPUT);
	pinMode(in4, OUTPUT);
  pinMode(enA, OUTPUT);
  pinMode(enB, OUTPUT);
  pinMode(TRIGGER_PIN,OUTPUT); //sets TRIGGER_PIN to OUTPUT
  pinMode(ECHO_PIN,INPUT); //sets ECHO_PIN to INPUT

  digitalWrite(in1, LOW);
	digitalWrite(in2, LOW);
	digitalWrite(in3, LOW);
	digitalWrite(in4, LOW);

}

void loop() 
//Lidar Code - TF-Mini
{
    if (Serial1.available())                //check if serial port has data input
  {
    if (Serial1.read() == HEADER)        //assess data package frame header 0x59
    {
      uart[0] = HEADER;
      if (Serial1.read() == HEADER)      //assess data package frame header 0x59
      {
        uart[1] = HEADER;
        for (i = 2; i < 9; i++)         //save data in array
        {
          uart[i] = Serial1.read();
        }
        check = uart[0] + uart[1] + uart[2] + uart[3] + uart[4] + uart[5] + uart[6] + uart[7];
        if (uart[8] == (check & 0xff))        //verify the received data as per protocol
        {
          dist = uart[2] + uart[3] * 256;     //calculate distance value
          strength = uart[4] + uart[5] * 256; //calculate signal strength value
          Serial.print("distance = ");
          Serial.print(dist);                 //output measure distance value of LiDAR
          Serial.print('\t');
          Serial.print("strength = ");
          Serial.print(strength);             //output signal strength value
          Serial.print('\n');
          bool rslt;
          rslt = radio.write(&dist, sizeof(dist));
        }
      }
    }
  }

//Get Ultrasonic Distance
float duration, distance;
digitalWrite(TRIGGER_PIN, LOW);
delayMicroseconds(2);
digitalWrite(TRIGGER_PIN, HIGH);
delayMicroseconds(10);
digitalWrite(TRIGGER_PIN, LOW);
duration = pulseIn(ECHO_PIN, HIGH);
distance = (duration / 2) / 29.1 ; // calculate distance in CM

   if(distance >= 30) //Move Forward 
  {
	digitalWrite(in1, LOW);
	digitalWrite(in2, HIGH);
	digitalWrite(in3, LOW); 
	digitalWrite(in4, HIGH);
  analogWrite(enA, 130); //enA speed variable - Right Wheel
	analogWrite(enB, 130); //enB speed variable - Left Wheel
  delay(200);
  }
  if(distance <= 25) //Move Right
  {
  digitalWrite(in1, HIGH);
	digitalWrite(in2, LOW);
	digitalWrite(in3, LOW);
	digitalWrite(in4, HIGH); 
  analogWrite(enA, 170); //enA speed variable - Right Wheel
	analogWrite(enB, 130); //enB speed variable - Left Wheel
  delay(200);
  }
  if(distance < 20) //Move Backward
  {
	digitalWrite(in1, HIGH); 
	digitalWrite(in2, LOW); 
	digitalWrite(in3, HIGH); 
	digitalWrite(in4, LOW); 
  analogWrite(enA, 130); //enA speed variable - Right Wheel
	analogWrite(enB, 130); //enB speed variable - Left Wheel
  delay(200);
  }
}

Reciever Code:

#include <SPI.h>
#include <RF24.h>
#include <nRF24L01.h>
#include <LiquidCrystal.h>

RF24 radio(9, 10); // CE, CSN
const byte address[12] = "00001";
const int rs = 7, en = 6, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);

void setup() 
{
  lcd.begin(16, 2);
  Serial.begin(9600);
  radio.begin();
   radio.setDataRate( RF24_250KBPS );
  radio.openReadingPipe(0, address);
  radio.startListening();
}

void loop()
{
  int dist;
  lcd.setCursor(0, 0);
  if (radio.available()) {
    radio.read(&dist, sizeof(dist));
      lcd.print("Distance= ");
      lcd.print(dist);
      delay(500);
}
}

You can't use pin 11 for CE because this pin is the SPI pin MOSI which also is connected to the NRF24L01.

Hello.

Thank you for your response. Apologies about the late response i have been in work.

I change the digital pin on the transmitter.

Thank you for the reply.

Kind Regards

Hello I have changed the code.

So far there is no difference still returns 0.

Transmitter:

#include <SoftwareSerial.h>  //header file of software serial port
#include <Servo.h>
#include <NewPing.h>
#include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>
#define TRIGGER_PIN A1
#define ECHO_PIN A0
#define MAX_DISTANCE 200
Servo servo;
SoftwareSerial Serial1(8,11); //define software serial port name as Serial1 and define pin8 as RX and pin9 as TX
RF24 radio(9, 10); // CE, CSN
const byte address[12] = "00001";
//Ultrasonic Variables
NewPing sonar(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE);
boolean object;
float time = 0;
long duration, cm;
int distance = 0; //set distance value to 0 
int pos = 0;
// Motor A connections
int enA = 7;
int in1 = 5;
int in2 = 6;
// Motor B connections
int enB = 2;
int in3 = 3;
int in4 = 4;
// Lidar Variables
int dist;	//actual distance measurements of LiDAR
int strength;	//signal strength of LiDAR
int check;	//save check value
int i;
int uart[11];	//save data measured by LiDAR
const int HEADER=0x59;	//frame header of data package


void setup() 
{
  //
  radio.begin();
  radio.setDataRate( RF24_250KBPS );
  radio.setRetries(3,5); // delay, count
  radio.openWritingPipe(address);
  radio.stopListening();
  //
  Serial.begin(9600);
  Serial1.begin(115200);	//set bit rate of serial port connecting LiDAR with Arduino
	pinMode(in1, OUTPUT);
	pinMode(in2, OUTPUT);
	pinMode(in3, OUTPUT);
	pinMode(in4, OUTPUT);
  pinMode(enA, OUTPUT);
  pinMode(enB, OUTPUT);
  pinMode(TRIGGER_PIN,OUTPUT); //sets TRIGGER_PIN to OUTPUT
  pinMode(ECHO_PIN,INPUT); //sets ECHO_PIN to INPUT

  digitalWrite(in1, LOW);
	digitalWrite(in2, LOW);
	digitalWrite(in3, LOW);
	digitalWrite(in4, LOW);

}

void loop() 
//Lidar Code - TF-Mini
{
    if (Serial1.available())                //check if serial port has data input
  {
    if (Serial1.read() == HEADER)        //assess data package frame header 0x59
    {
      uart[0] = HEADER;
      if (Serial1.read() == HEADER)      //assess data package frame header 0x59
      {
        uart[1] = HEADER;
        for (i = 2; i < 9; i++)         //save data in array
        {
          uart[i] = Serial1.read();
        }
        check = uart[0] + uart[1] + uart[2] + uart[3] + uart[4] + uart[5] + uart[6] + uart[7];
        if (uart[8] == (check & 0xff))        //verify the received data as per protocol
        {
          dist = uart[2] + uart[3] * 256;     //calculate distance value
          strength = uart[4] + uart[5] * 256; //calculate signal strength value
          Serial.print("distance = ");
          Serial.print(dist);                 //output measure distance value of LiDAR
          Serial.print('\t');
          Serial.print("strength = ");
          Serial.print(strength);             //output signal strength value
          Serial.print('\n');
          bool rslt;
          rslt = radio.write(&dist, sizeof(dist));
        }
      }
    }
  }

//Get Ultrasonic Distance
float duration, distance;
digitalWrite(TRIGGER_PIN, LOW);
delayMicroseconds(2);
digitalWrite(TRIGGER_PIN, HIGH);
delayMicroseconds(10);
digitalWrite(TRIGGER_PIN, LOW);
duration = pulseIn(ECHO_PIN, HIGH);
distance = (duration / 2) / 29.1 ; // calculate distance in CM

   if(distance >= 30) //Move Forward 
  {
	digitalWrite(in1, LOW);
	digitalWrite(in2, HIGH);
	digitalWrite(in3, LOW); 
	digitalWrite(in4, HIGH);
  analogWrite(enA, 130); //enA speed variable - Right Wheel
	analogWrite(enB, 130); //enB speed variable - Left Wheel
  delay(200);
  }
  if(distance <= 25) //Move Right
  {
  digitalWrite(in1, HIGH);
	digitalWrite(in2, LOW);
	digitalWrite(in3, LOW);
	digitalWrite(in4, HIGH); 
  analogWrite(enA, 170); //enA speed variable - Right Wheel
	analogWrite(enB, 130); //enB speed variable - Left Wheel
  delay(200);
  }
  if(distance < 20) //Move Backward
  {
	digitalWrite(in1, HIGH); 
	digitalWrite(in2, LOW); 
	digitalWrite(in3, HIGH); 
	digitalWrite(in4, LOW); 
  analogWrite(enA, 130); //enA speed variable - Right Wheel
	analogWrite(enB, 130); //enB speed variable - Left Wheel
  delay(200);
  }
}

Reciever:

#include <SPI.h>
#include <RF24.h>
#include <nRF24L01.h>
#include <LiquidCrystal.h>

RF24 radio(9, 10); // CE, CSN
const byte address[12] = "00001";
const int rs = 7, en = 6, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);

void setup() 
{
  lcd.begin(16, 2);
  Serial.begin(9600);
  radio.begin();
  radio.setDataRate( RF24_250KBPS );
  radio.openReadingPipe(1, address);
  radio.startListening();
}

void loop()
{
  int dist;
  lcd.setCursor(0, 0);
  if (radio.available()) {
    radio.read(&dist, sizeof(dist));
      lcd.print("Distance= ");
      lcd.print(dist);
      delay(500);
}
}

Any help is appreciated

Hello I am having trouble with my code:

The reciever is returning Distance = 0

No value is getting transmitted even though the serial monitor shows on the transmitter that distance and strength are being calculated.

Transmitter:

#include <SoftwareSerial.h>  //header file of software serial port
#include <Servo.h>
#include <NewPing.h>
#include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>
#define TRIGGER_PIN A1
#define ECHO_PIN A0
#define MAX_DISTANCE 200
Servo servo;
SoftwareSerial Serial1(8,11); //define software serial port name as Serial1 and define pin8 as RX and pin9 as TX
RF24 radio(9, 10); // CE, CSN
const byte address[12] = "00001";
//Ultrasonic Variables
NewPing sonar(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE);
boolean object;
float time = 0;
long duration, cm;
int distance = 0; //set distance value to 0 
int pos = 0;
// Motor A connections
int enA = 7;
int in1 = 5;
int in2 = 6;
// Motor B connections
int enB = 2;
int in3 = 3;
int in4 = 4;
// Lidar Variables
int dist;	//actual distance measurements of LiDAR
int strength;	//signal strength of LiDAR
int check;	//save check value
int i;
int uart[11];	//save data measured by LiDAR
const int HEADER=0x59;	//frame header of data package


void setup() 
{
  //
  radio.begin();
  radio.setDataRate( RF24_250KBPS );
  radio.setRetries(3,5); // delay, count
  radio.openWritingPipe(address);
  radio.stopListening();
  //
  Serial.begin(9600);
  Serial1.begin(115200);	//set bit rate of serial port connecting LiDAR with Arduino
	pinMode(in1, OUTPUT);
	pinMode(in2, OUTPUT);
	pinMode(in3, OUTPUT);
	pinMode(in4, OUTPUT);
  pinMode(enA, OUTPUT);
  pinMode(enB, OUTPUT);
  pinMode(TRIGGER_PIN,OUTPUT); //sets TRIGGER_PIN to OUTPUT
  pinMode(ECHO_PIN,INPUT); //sets ECHO_PIN to INPUT

  digitalWrite(in1, LOW);
	digitalWrite(in2, LOW);
	digitalWrite(in3, LOW);
	digitalWrite(in4, LOW);

}

void loop() 
//Lidar Code - TF-Mini
{
    if (Serial1.available())                //check if serial port has data input
  {
    if (Serial1.read() == HEADER)        //assess data package frame header 0x59
    {
      uart[0] = HEADER;
      if (Serial1.read() == HEADER)      //assess data package frame header 0x59
      {
        uart[1] = HEADER;
        for (i = 2; i < 9; i++)         //save data in array
        {
          uart[i] = Serial1.read();
        }
        check = uart[0] + uart[1] + uart[2] + uart[3] + uart[4] + uart[5] + uart[6] + uart[7];
        if (uart[8] == (check & 0xff))        //verify the received data as per protocol
        {
          dist = uart[2] + uart[3] * 256;     //calculate distance value
          strength = uart[4] + uart[5] * 256; //calculate signal strength value
          Serial.print("distance = ");
          Serial.print(dist);                 //output measure distance value of LiDAR
          Serial.print('\t');
          Serial.print("strength = ");
          Serial.print(strength);             //output signal strength value
          Serial.print('\n');
          bool rslt;
          rslt = radio.write(&dist, sizeof(dist));
        }
      }
    }
  }

//Get Ultrasonic Distance
float duration, distance;
digitalWrite(TRIGGER_PIN, LOW);
delayMicroseconds(2);
digitalWrite(TRIGGER_PIN, HIGH);
delayMicroseconds(10);
digitalWrite(TRIGGER_PIN, LOW);
duration = pulseIn(ECHO_PIN, HIGH);
distance = (duration / 2) / 29.1 ; // calculate distance in CM

   if(distance >= 30) //Move Forward 
  {
	digitalWrite(in1, LOW);
	digitalWrite(in2, HIGH);
	digitalWrite(in3, LOW); 
	digitalWrite(in4, HIGH);
  analogWrite(enA, 130); //enA speed variable - Right Wheel
	analogWrite(enB, 130); //enB speed variable - Left Wheel
  delay(200);
  }
  if(distance <= 25) //Move Right
  {
  digitalWrite(in1, HIGH);
	digitalWrite(in2, LOW);
	digitalWrite(in3, LOW);
	digitalWrite(in4, HIGH); 
  analogWrite(enA, 170); //enA speed variable - Right Wheel
	analogWrite(enB, 130); //enB speed variable - Left Wheel
  delay(200);
  }
  if(distance < 20) //Move Backward
  {
	digitalWrite(in1, HIGH); 
	digitalWrite(in2, LOW); 
	digitalWrite(in3, HIGH); 
	digitalWrite(in4, LOW); 
  analogWrite(enA, 130); //enA speed variable - Right Wheel
	analogWrite(enB, 130); //enB speed variable - Left Wheel
  delay(200);
  }
}

Reciever Code:

#include <SPI.h>
#include <RF24.h>
#include <nRF24L01.h>
#include <LiquidCrystal.h>

RF24 radio(9, 10); // CE, CSN
const byte address[12] = "00001";
const int rs = 7, en = 6, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);

void setup() 
{
  lcd.begin(16, 2);
  Serial.begin(9600);
  radio.begin();
  radio.setDataRate( RF24_250KBPS );
  radio.openReadingPipe(1, address);
  radio.startListening();
}

void loop()
{
  int dist;
  lcd.setCursor(0, 0);
  if (radio.available()) {
    radio.read(&dist, sizeof(dist));
      lcd.print("Distance= ");
      lcd.print(dist);
      delay(500);
}
}

Any help is appreciated.

Schematics for the transmitter is interesting. Transmitters use power. Easy to calculate numbers, but getting them into the air is another story.....

Receiver possible fault can be anything so schematics are again requested.

I have merged your cross-posts @enrlfrod.

Cross-posting is against the Arduino forum rules. The reason is that duplicate posts can waste the time of the people trying to help. Someone might spend a lot of time investigating and writing a detailed answer on one topic, without knowing that someone else already did the same in the other topic.

Repeated cross-posting can result in a suspension from the forum.

In the future, please only create one topic for each distinct subject matter. This is basic forum etiquette, as explained in the "How to get the best out of this forum" guide. It contains a lot of other useful information. Please read it.

Thanks in advance for your cooperation.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.