Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
robotaleh committed Feb 18, 2018
2 parents 1b67be1 + b6cc9a9 commit e31557c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
# PIDfromBTlib
# PIDfromBTlib

Librería para simplificar y mejorar la gestión de las constantes de un PID para Arduino desde una APP Android, especialmente pensada para robots siguelíneas o similares.

Con esta librería, combinada con una APP disponible proximamente en https://github.com/robotaleh/PIDfromBT, se puede calibrar rapidamente un sistema PID e incluso establecer el punto de consigna deseado sin tener que cargar una y otra vez un nuevo programa, usando comunicación Bluetooth entre tu Smartphone y el Arduino, o incluso cualquier placa de desarrollo similar.

## Funcionamiento
Actualmente existen tres formas diferentes de usar la librería, en función de las variables que se deseen modificar:

#### PIDV; Proporcional, Integral, Derivada, Velocidad
```php
PIDfromBT pid_calibrate(&kp, &kd, &ki, &vel, DEBUG);
```

#### PIDVI; Proporcional, Integral, Derivada, Velocidad, Ideal
```php
PIDfromBT pid_calibrate(&kp, &kd, &ki, &vel, &ideal, DEBUG);
```

#### PIDVIS; Proporcional, Integral, Derivada, Velocidad, Ideal, Succión
```php
PIDfromBT pid_calibrate(&kp, &kd, &ki, &vel, &ideal, &suc, DEBUG);
```
2 changes: 1 addition & 1 deletion examples/PIDfromBT01/PIDfromBT01.ino
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ int vel = 0;
int suc = 0;

// Creación del Objeto PIDfromBT
PIDfromBT pid_calibrate(&kp, &kd, &ki, &vel, &ideal, &suc, DEBUG);
PIDfromBT pid_calibrate(&kp, &ki, &kd, &vel, &ideal, &suc, DEBUG);

void setup() {
// Inicia el Serial
Expand Down

0 comments on commit e31557c

Please sign in to comment.