Hi!
i have a FBL2360 brushless controller for my graduation's final project, to control two brushless motors , i try to send commande via arduino to my controller but nothing change, this is the code that i used in arduino
void setup() {
// put your setup code here, to run once:
Serial.begin(115200); //set serial baud to 115200 bps
Serial.println("^rwd 1 0"); //disable motor controller watchdog
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); //hold 5 sec
Serial.println("!G 1 500"); //forward
Serial.println("!G 2 500");
}