refactor(server): ♻️ reduce code complexity
This commit is contained in:
parent
c1cdd646e2
commit
bf3ea49e13
|
@ -54,10 +54,21 @@ void setup()
|
||||||
// Code exécuté en boucle jusqu'à l'extinction du robot
|
// Code exécuté en boucle jusqu'à l'extinction du robot
|
||||||
void loop()
|
void loop()
|
||||||
{
|
{
|
||||||
if (commandRunning)
|
// Ne rien faire si aucune commande en cours
|
||||||
{
|
if (!commandRunning)
|
||||||
if (!stopCommand)
|
return;
|
||||||
|
|
||||||
|
// Arrêter le robot si une commande est interrompue
|
||||||
|
if (stopCommand)
|
||||||
{
|
{
|
||||||
|
Serial.println("stop");
|
||||||
|
commandRunning = false;
|
||||||
|
stopCommand = false;
|
||||||
|
stopMotors();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sinon executer la commande en cours
|
||||||
chooseCommand(); // Appeler la fonction "chooseCommand()"
|
chooseCommand(); // Appeler la fonction "chooseCommand()"
|
||||||
if (globalValue > 0)
|
if (globalValue > 0)
|
||||||
{ // S'il reste des pas à effectuer alors on l'affiche et on enlève un pas
|
{ // S'il reste des pas à effectuer alors on l'affiche et on enlève un pas
|
||||||
|
@ -74,15 +85,6 @@ void loop()
|
||||||
stopMotors();
|
stopMotors();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
Serial.println("stop");
|
|
||||||
commandRunning = false;
|
|
||||||
stopCommand = false;
|
|
||||||
stopMotors();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Configuration du serveur asynchrone
|
// Configuration du serveur asynchrone
|
||||||
void serverConfig()
|
void serverConfig()
|
||||||
|
|
Loading…
Reference in a new issue