Help with a full code Any Generous programmer?

help help help i need to modify this code for to motors ! can somebody help me !it is work for me but only for one side of the tank !!! i want use 2 joystick. is it possible >?

/*

Example code to control a DC motor forward and reverse with variable speed
using a L298N driver board, an Arduino, and a typical RC Controller

driver board: $7
https://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=L298N

flysky rc controller transmitter and receiver: $50
https://www.amazon.com/s/ref=nb_sb_noss_2?url=search-alias%3Daps&field-keywords=fs-t6&rh=i%3Aaps%2Ck%3Afs-t6

video overview:

*/

int in1 = 12;
int in2 = 13;

//the following are all ~PWM capable ports
int enable1 = 11;
int rc_channel4 = 3;
int switchD = 5;

void setup() {
pinMode(rc_channel4, INPUT);
pinMode(switchD, INPUT);
pinMode(in1, OUTPUT);
pinMode(in2, OUTPUT);
pinMode(enable1, OUTPUT);
Serial.begin(9600);
}

void loop() {

int pwm = 0;
int swd = pulseIn(switchD, HIGH, 25000);
int rc4 = pulseIn(rc_channel4, HIGH, 25000);

Serial.print("switch: ");
Serial.print(swd);
Serial.print(" raw channel4: ");
Serial.print(rc4);

if(rc4==0){
Serial.println(" no signal");
digitalWrite(in1, LOW);
digitalWrite(in2, LOW);
analogWrite(enable1, 0);
}
else if(rc4 > 1530){ //right stick
pwm = map(rc4, 1530, 2000, 0, 255); //map our speed to 0-255 range
digitalWrite(in1, LOW);
digitalWrite(in2, HIGH);
analogWrite(enable1, pwm);
Serial.print(" right stick speed: ");
Serial.println(pwm);
}
else if(rc4 < 1460){
pwm = map(rc4, 1460, 1000, 0, 255); //map our speed to 0-255 range
digitalWrite(in1, HIGH);
digitalWrite(in2, LOW);
analogWrite(enable1, pwm);
Serial.print(" left stick speed: ");
Serial.println(pwm);
}else{
Serial.println(" stick centered");
digitalWrite(in1, LOW);
digitalWrite(in2, LOW);
analogWrite(enable1, 0);
}

delay(10);
}

Motors?
Tank? What's stored in it? Why does a tank have motors? Or different kind of tank than I'm thinking of maybe.
One side - what other side?
Joysticks?

Too many unknowns to even start looking at the code.

wvmarle:
Too many unknowns to even start looking at the code.

Guess you're not generous enough :wink: