If statement is giving a wrong signal values in arduino due

57 Views Asked by At

I am trying to transmit signal to servo from transmitter through Arduino DUE and wrote code like this:

#include<Servo.h>

Servo servo1;

int ch1;


void setup() {
  // put your setup code here, to run once:

  pinMode(40,INPUT);
  pinMode(31,OUTPUT);
  servo1.attach(31);
  Serial.begin(9600);
  ch1 = 2000;
}

void loop() {
  // put your main code here, to run repeatedly:
ch1 = pulseIn(40,HIGH,25000);
 if (ch1 <= 2800 && ch1>= 1600)
 {

  Serial.print("Aileron:");
  Serial.println(ch1);

 }
   delay(100);
   }

Without if statement I get values of on average 2200, if I insert if statement values drop to 1800. I don't get why?

0

There are 0 best solutions below