Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed filesystem TextLCD
Fork of Projeto_Mecatronico by
Diff: posicionamento.h
- Revision:
- 22:7c38592facf5
- Parent:
- 21:16619d0c69ad
- Child:
- 24:098413c4c0bb
--- a/posicionamento.h Wed May 11 11:20:10 2022 +0000 +++ b/posicionamento.h Mon May 16 13:24:37 2022 +0000 @@ -1,7 +1,19 @@ + +#ifndef POSICIONAMENTO_H +#define POSICIONAMENTO_H + #include "mbed.h" #include "JOG.h" #include "analog.h" +#include "posicao.h" +#include "home.h" +#include "LCD.h" extern DigitalIn arrow_right_button; -extern int arrow_up_button; +extern DigitalIn arrow_left_button; +extern DigitalIn arrow_up_button; +extern DigitalIn arrow_down_button; +extern int posicoes[10][4]; -void posicionamento (int* x_ptr, int* z_ptr, int* y_ptr, int x_passos, int y_passos, int z_passos); \ No newline at end of file +void posicionamento (int ordem); + +#endif \ No newline at end of file
