Projeto_Mecatronico_Team / Mbed 2 deprecated Projeto_Mecatronico

Dependencies:   mbed filesystem TextLCD

Fork of Projeto_Mecatronico by Fernando Sakabe

posicionamento.h

Committer:
ricardoparanhos
Date:
2022-05-17
Revision:
24:098413c4c0bb
Parent:
22:7c38592facf5
Child:
36:6e46a3e4df6c

File content as of revision 24:098413c4c0bb:


#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 DigitalIn arrow_left_button;
extern DigitalIn arrow_up_button;
extern DigitalIn arrow_down_button;
extern int posicoes[12][4];


void posicionamento (int ordem, int ordem_anterior);

#endif